diff --git a/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift b/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift index d2c5dbba1417..9aafe4b93643 100644 --- a/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift +++ b/apps/shared/OpenClawKit/Sources/OpenClawProtocol/GatewayModels.swift @@ -8343,6 +8343,116 @@ public struct PluginApprovalResolveParams: Codable, Sendable { } } +public struct PluginCatalogClawHubInstall: Codable, Sendable { + public let source: String + public let packagename: String + + public init( + source: String, + packagename: String) + { + self.source = source + self.packagename = packagename + } + + private enum CodingKeys: String, CodingKey { + case source + case packagename = "packageName" + } +} + +public struct PluginCatalogEntry: Codable, Sendable { + public let id: String + public let name: String + public let packagename: String? + public let description: String? + public let version: String? + public let kind: [String]? + public let origin: String? + public let installed: Bool + public let enabled: Bool + public let state: AnyCodable + public let featured: Bool? + public let order: Double? + public let install: PluginCatalogInstallAction? + public let error: String? + public let category: String? + public let removable: Bool? + + public init( + id: String, + name: String, + packagename: String? = nil, + description: String? = nil, + version: String? = nil, + kind: [String]? = nil, + origin: String? = nil, + installed: Bool, + enabled: Bool, + state: AnyCodable, + featured: Bool? = nil, + order: Double? = nil, + install: PluginCatalogInstallAction? = nil, + error: String? = nil, + category: String? = nil, + removable: Bool? = nil) + { + self.id = id + self.name = name + self.packagename = packagename + self.description = description + self.version = version + self.kind = kind + self.origin = origin + self.installed = installed + self.enabled = enabled + self.state = state + self.featured = featured + self.order = order + self.install = install + self.error = error + self.category = category + self.removable = removable + } + + private enum CodingKeys: String, CodingKey { + case id + case name + case packagename = "packageName" + case description + case version + case kind + case origin + case installed + case enabled + case state + case featured + case order + case install + case error + case category + case removable + } +} + +public struct PluginCatalogOfficialInstall: Codable, Sendable { + public let source: String + public let pluginid: String + + public init( + source: String, + pluginid: String) + { + self.source = source + self.pluginid = pluginid + } + + private enum CodingKeys: String, CodingKey { + case source + case pluginid = "pluginId" + } +} + public struct PluginControlUiDescriptor: Codable, Sendable { public let id: String public let pluginid: String @@ -8389,6 +8499,156 @@ public struct PluginControlUiDescriptor: Codable, Sendable { } } +public struct PluginSearchPackage: Codable, Sendable { + public let name: String + public let displayname: String + public let family: AnyCodable + public let channel: AnyCodable + public let isofficial: Bool + public let summary: String? + public let latestversion: String? + public let runtimeid: String? + public let downloads: Double? + public let verificationtier: String? + + public init( + name: String, + displayname: String, + family: AnyCodable, + channel: AnyCodable, + isofficial: Bool, + summary: String? = nil, + latestversion: String? = nil, + runtimeid: String? = nil, + downloads: Double? = nil, + verificationtier: String? = nil) + { + self.name = name + self.displayname = displayname + self.family = family + self.channel = channel + self.isofficial = isofficial + self.summary = summary + self.latestversion = latestversion + self.runtimeid = runtimeid + self.downloads = downloads + self.verificationtier = verificationtier + } + + private enum CodingKeys: String, CodingKey { + case name + case displayname = "displayName" + case family + case channel + case isofficial = "isOfficial" + case summary + case latestversion = "latestVersion" + case runtimeid = "runtimeId" + case downloads + case verificationtier = "verificationTier" + } +} + +public struct PluginSearchResultEntry: Codable, Sendable { + public let score: Double + public let package: PluginSearchPackage + + public init( + score: Double, + package: PluginSearchPackage) + { + self.score = score + self.package = package + } + + private enum CodingKeys: String, CodingKey { + case score + case package + } +} + +public struct PluginsInstallResult: Codable, Sendable { + public let ok: Bool + public let plugin: PluginCatalogEntry + public let restartrequired: Bool + public let warnings: [String]? + + public init( + ok: Bool, + plugin: PluginCatalogEntry, + restartrequired: Bool, + warnings: [String]? = nil) + { + self.ok = ok + self.plugin = plugin + self.restartrequired = restartrequired + self.warnings = warnings + } + + private enum CodingKeys: String, CodingKey { + case ok + case plugin + case restartrequired = "restartRequired" + case warnings + } +} + +public struct PluginsListParams: Codable, Sendable {} + +public struct PluginsListResult: Codable, Sendable { + public let plugins: [PluginCatalogEntry] + public let diagnostics: [AnyCodable] + public let mutationallowed: Bool + + public init( + plugins: [PluginCatalogEntry], + diagnostics: [AnyCodable], + mutationallowed: Bool) + { + self.plugins = plugins + self.diagnostics = diagnostics + self.mutationallowed = mutationallowed + } + + private enum CodingKeys: String, CodingKey { + case plugins + case diagnostics + case mutationallowed = "mutationAllowed" + } +} + +public struct PluginsSearchParams: Codable, Sendable { + public let query: String + public let limit: Int? + + public init( + query: String, + limit: Int? = nil) + { + self.query = query + self.limit = limit + } + + private enum CodingKeys: String, CodingKey { + case query + case limit + } +} + +public struct PluginsSearchResult: Codable, Sendable { + public let results: [PluginSearchResultEntry] + + public init( + results: [PluginSearchResultEntry]) + { + self.results = results + } + + private enum CodingKeys: String, CodingKey { + case results + } +} + public struct PluginsSessionActionFailureResult: Codable, Sendable { public let ok: Bool public let error: String @@ -8539,6 +8799,50 @@ public struct PluginsSessionActionSuccessResult: Codable, Sendable { } } +public struct PluginsSetEnabledParams: Codable, Sendable { + public let pluginid: String + public let enabled: Bool + + public init( + pluginid: String, + enabled: Bool) + { + self.pluginid = pluginid + self.enabled = enabled + } + + private enum CodingKeys: String, CodingKey { + case pluginid = "pluginId" + case enabled + } +} + +public struct PluginsSetEnabledResult: Codable, Sendable { + public let ok: Bool + public let plugin: PluginCatalogEntry + public let restartrequired: Bool + public let warnings: [String]? + + public init( + ok: Bool, + plugin: PluginCatalogEntry, + restartrequired: Bool, + warnings: [String]? = nil) + { + self.ok = ok + self.plugin = plugin + self.restartrequired = restartrequired + self.warnings = warnings + } + + private enum CodingKeys: String, CodingKey { + case ok + case plugin + case restartrequired = "restartRequired" + case warnings + } +} + public struct PluginsUiDescriptorsParams: Codable, Sendable {} public struct PluginsUiDescriptorsResult: Codable, Sendable { @@ -8559,6 +8863,50 @@ public struct PluginsUiDescriptorsResult: Codable, Sendable { } } +public struct PluginsUninstallParams: Codable, Sendable { + public let pluginid: String + + public init( + pluginid: String) + { + self.pluginid = pluginid + } + + private enum CodingKeys: String, CodingKey { + case pluginid = "pluginId" + } +} + +public struct PluginsUninstallResult: Codable, Sendable { + public let ok: Bool + public let pluginid: String + public let restartrequired: Bool + public let removed: [String] + public let warnings: [String]? + + public init( + ok: Bool, + pluginid: String, + restartrequired: Bool, + removed: [String], + warnings: [String]? = nil) + { + self.ok = ok + self.pluginid = pluginid + self.restartrequired = restartrequired + self.removed = removed + self.warnings = warnings + } + + private enum CodingKeys: String, CodingKey { + case ok + case pluginid = "pluginId" + case restartrequired = "restartRequired" + case removed + case warnings + } +} + public struct DevicePairListParams: Codable, Sendable {} public struct DevicePairApproveParams: Codable, Sendable { @@ -9354,6 +9702,37 @@ public struct ShutdownEvent: Codable, Sendable { } } +public enum PluginCatalogInstallAction: Codable, Sendable { + case clawhub(PluginCatalogClawHubInstall) + case official(PluginCatalogOfficialInstall) + + private enum CodingKeys: String, CodingKey { + case discriminator = "source" + } + + public init(from decoder: Decoder) throws { + let container = try decoder.container(keyedBy: CodingKeys.self) + let discriminator = try container.decode(String.self, forKey: .discriminator) + switch discriminator { + case "clawhub": self = try .clawhub(PluginCatalogClawHubInstall(from: decoder)) + case "official": self = try .official(PluginCatalogOfficialInstall(from: decoder)) + default: + throw DecodingError.dataCorruptedError( + forKey: .discriminator, + in: container, + debugDescription: "Unknown PluginCatalogInstallAction discriminator value" + ) + } + } + + public func encode(to encoder: Encoder) throws { + switch self { + case .clawhub(let value): try value.encode(to: encoder) + case .official(let value): try value.encode(to: encoder) + } + } +} + public enum PluginsSessionActionResult: Codable, Sendable { case success(PluginsSessionActionSuccessResult) case failure(PluginsSessionActionFailureResult) diff --git a/docs/docs_map.md b/docs/docs_map.md index 48a25b2fd852..7963491bab52 100644 --- a/docs/docs_map.md +++ b/docs/docs_map.md @@ -5585,6 +5585,7 @@ Do not edit it by hand; run `pnpm docs:map:gen`. - Route: /plugins/manage-plugins - Headings: + - H2: Use the Control UI - H2: List and search plugins - H2: Enable and disable plugins - H2: Install plugins @@ -5603,6 +5604,7 @@ Do not edit it by hand; run `pnpm docs:map:gen`. - H2: Minimal example - H2: Rich example - H2: Top-level field reference + - H2: catalog reference - H2: Generation provider metadata reference - H2: Tool metadata reference - H2: providerAuthChoices reference @@ -9924,6 +9926,7 @@ Do not edit it by hand; run `pnpm docs:map:gen`. - H2: Gateway host status - H2: Language support - H2: Appearance themes + - H2: Manage plugins - H2: Sidebar navigation - H2: What it can do (today) - H2: MCP page diff --git a/docs/gateway/protocol.md b/docs/gateway/protocol.md index e8a793f7b185..3fd0477419a3 100644 --- a/docs/gateway/protocol.md +++ b/docs/gateway/protocol.md @@ -376,6 +376,15 @@ methods. Treat this as feature discovery, not a full enumeration of + + - `plugins.list` (`operator.read`) returns the installed plugin inventory plus locally curated official picks, diagnostics, and whether the current install mode allows mutations. + - `plugins.search` (`operator.read`) searches installable ClawHub code-plugin and bundle-plugin families. Pass non-empty `query` and optional `limit` from 1 to 100. + - `plugins.install` (`operator.admin`) installs either an official catalog entry with `{ source: "official", pluginId }` or a ClawHub package with `{ source: "clawhub", packageName, version?, acknowledgeClawHubRisk? }`. ClawHub installs preserve Gateway trust, integrity, and install-policy checks. Successful installs require a Gateway restart. + - `plugins.setEnabled` (`operator.admin`) changes one installed plugin's enabled policy with `{ pluginId, enabled }`. The response includes the updated catalog entry, restart metadata, and any slot-selection warnings. + - `plugins.uninstall` (`operator.admin`) removes one externally installed plugin with `{ pluginId }`: config references, the install record, and managed files. Bundled plugins cannot be uninstalled, only disabled. The response lists the removal actions and always requires a Gateway restart. + + + - `send` is the direct outbound-delivery RPC for channel/account/thread-targeted sends outside the chat runner. - `logs.tail` returns the configured gateway file-log tail with cursor/limit and max-byte controls. diff --git a/docs/plugins/manage-plugins.md b/docs/plugins/manage-plugins.md index 96b582ccffc9..095129d0abf2 100644 --- a/docs/plugins/manage-plugins.md +++ b/docs/plugins/manage-plugins.md @@ -1,6 +1,7 @@ --- -summary: "Quick examples for listing, installing, updating, inspecting, and uninstalling OpenClaw plugins" +summary: "Manage OpenClaw plugins from the Control UI or CLI" read_when: + - You want to browse, install, enable, or disable plugins in the Control UI - You want quick plugin list, install, update, inspect, or uninstall examples - You want to choose a plugin install source - You want the right reference for publishing plugin packages @@ -9,12 +10,53 @@ sidebarTitle: "Manage plugins" doc-schema-version: 1 --- -Common plugin management commands. For the full command contract, flags, -source-selection rules, and edge cases, see [`openclaw plugins`](/cli/plugins). +The Control UI covers the common discovery, install, enable, and disable +workflow. The CLI adds update, uninstall, advanced configuration, and explicit +install-source controls. For its full command contract, flags, source-selection +rules, and edge cases, see [`openclaw plugins`](/cli/plugins). -Typical workflow: find a package, install it from ClawHub, npm, git, or a -local path, let the managed Gateway auto-restart (or restart it manually), -then verify the plugin's runtime registrations. +Typical CLI workflow: find a package, install it from ClawHub, npm, git, or a +local path, let the managed Gateway auto-restart (or restart it manually), then +verify the plugin's runtime registrations. + +## Use the Control UI + +Open **Plugins** in the Control UI, or use `/settings/plugins` relative to the +configured Control UI base path. For example, a base path of `/openclaw` uses +`/openclaw/settings/plugins`. The page has two tabs: + +- **Installed** shows the full local inventory grouped by category (channels, + model providers, memory, tools). Each row opens a detail view; its overflow + (`…`) menu enables or disables the plugin and, for externally installed + plugins, offers **Remove**. The tab also lists the configured + [MCP servers](/cli/mcp) with the same menu-driven enable, disable, and remove + actions, editing `mcp.servers` in the Gateway configuration. +- **Discover** is the store: featured plugins included with OpenClaw, official + external plugins, and a curated connector shelf. Connector cards either add a + hosted MCP server in one click (GitHub, Notion, Linear, Sentry, + Home Assistant) or jump into a prefilled ClawHub search. Typing in the search + box queries [ClawHub](https://clawhub.ai/plugins) inline and appends a **From + ClawHub** section with download counts and source-verification badges. + +Included plugins do not need a package install. Their menu action is **Enable** +or **Disable**. Workboard, for example, is included with OpenClaw and disabled +by default, so choose **Enable** to turn it on. Bundled plugins cannot be +removed, only disabled. + +Catalog and search access require `operator.read`. Install, enable, disable, +remove, and MCP server changes require `operator.admin`. A ClawHub install is +performed by the Gateway and preserves its trust, integrity, and plugin-install +policy checks. + +Installing or removing plugin code requires a Gateway restart. Enablement +changes can be applied without a restart when the installed plugin and current +Gateway runtime support it; otherwise the UI tells you a restart is required. +OAuth-backed MCP connectors still need a one-time `openclaw mcp login ` +from the CLI after they are added. + +The Control UI does not install from arbitrary npm, git, or local-path sources, +update plugins, or expose rich plugin configuration. Use the CLI workflows +below for those operations. ## List and search plugins diff --git a/docs/plugins/manifest.md b/docs/plugins/manifest.md index eec98f9134cc..8e3d3216ff4e 100644 --- a/docs/plugins/manifest.md +++ b/docs/plugins/manifest.md @@ -176,10 +176,29 @@ See [Plugins](/tools/plugin) for the full plugin system guide, and [Capability m | `skills` | No | `string[]` | Skill directories to load, relative to the plugin root. | | `name` | No | `string` | Human-readable plugin name. | | `description` | No | `string` | Short summary shown in plugin surfaces. | +| `catalog` | No | `object` | Optional presentation hints for plugin catalog surfaces. This metadata does not install, enable, or grant trust to a plugin. | | `icon` | No | `string` | HTTPS image URL for marketplace/catalog cards. ClawHub accepts any valid `https://` URL and falls back to the default plugin icon when this is omitted or invalid. | | `version` | No | `string` | Informational plugin version. | | `uiHints` | No | `Record` | UI labels, placeholders, and sensitivity hints for config fields. | +## catalog reference + +`catalog` provides optional display hints to plugin browsers. Hosts may ignore these hints. They never install or enable the plugin, and they do not change its runtime behavior or trust level. + +```json +{ + "catalog": { + "featured": true, + "order": 10 + } +} +``` + +| Field | Type | What it means | +| ---------- | --------- | -------------------------------------------------------------------------- | +| `featured` | `boolean` | Whether catalog surfaces should feature this plugin. | +| `order` | `number` | Ascending display hint among curated plugins; lower values appear earlier. | + ## Generation provider metadata reference The generation provider metadata fields describe static auth signals for providers declared in the matching `contracts.*GenerationProviders` list. OpenClaw reads these fields before provider runtime loads so core tools can decide whether a generation provider is available without importing every provider plugin. diff --git a/docs/plugins/workboard.md b/docs/plugins/workboard.md index 25f13eca5d8f..2f02b3f10221 100644 --- a/docs/plugins/workboard.md +++ b/docs/plugins/workboard.md @@ -19,18 +19,27 @@ other team project management systems. Workboard is bundled but disabled by default: +1. Open **Plugins** in the Control UI, or use `/settings/plugins` relative to + the configured Control UI base path. For example, a base path of `/openclaw` + uses `/openclaw/settings/plugins`. +2. Find **Workboard** and choose **Enable**. Because Workboard is included with + OpenClaw, it does not need an **Install** action. +3. If the UI reports that a restart is required, restart the Gateway. + +The Workboard tab appears in the dashboard nav after the plugin runtime loads. +While it is disabled, the tab stays hidden from navigation. Opening the +`/workboard` route directly while the plugin is disabled or blocked by +`plugins.allow`/`plugins.deny` shows a plugin-unavailable state instead of card +data. + +The equivalent CLI workflow is: + ```bash openclaw plugins enable workboard openclaw gateway restart openclaw dashboard ``` -The Workboard tab appears in the dashboard nav once the plugin is enabled; -while it is disabled the tab stays hidden from navigation. Opening the -`/workboard` route directly while the plugin is disabled or blocked by -`plugins.allow`/`plugins.deny` shows a plugin-unavailable state instead of -card data. - ## Configuration Workboard has no plugin-specific config. Enable/disable it with the standard diff --git a/docs/web/control-ui.md b/docs/web/control-ui.md index b3696a5fef37..140d71c8ad32 100644 --- a/docs/web/control-ui.md +++ b/docs/web/control-ui.md @@ -115,6 +115,45 @@ Imported themes are stored only in the current browser profile; they are not wri Appearance also has a browser-local Text size setting, stored with the rest of Control UI preferences. It applies to chat text, composer text, tool cards, and chat sidebars, and keeps text inputs at least 16px so mobile Safari does not auto-zoom on focus. +## Manage plugins + +Open **Plugins** in the sidebar, or use `/settings/plugins` relative to the +configured Control UI base path, to browse and manage plugins without leaving +the Control UI. For example, a base path of `/openclaw` uses +`/openclaw/settings/plugins`. The page is always available, even when every +optional plugin is disabled. + +The **Installed** tab shows the full local inventory grouped by category, with +overview counts. Each row opens a detail view; its overflow (`…`) menu enables +or disables the plugin and offers **Remove** for externally installed plugins. +It also lists configured [MCP servers](/cli/mcp) and supports adding, disabling, +and removing them inline. The **Discover** tab is the store: featured plugins +included with OpenClaw, official external plugins, and one-click MCP connectors +for popular services. Typing in the search box queries +[ClawHub](https://clawhub.ai/plugins) inline and appends a **From ClawHub** +section with download counts and source-verification badges. + +Included plugins are already present on the Gateway and show **Enable** or +**Disable** instead of **Install**. For example, Workboard is included with +OpenClaw but disabled by default, so its action is **Enable**. Bundled plugins +cannot be removed, only disabled. + +Reading the catalog and searching ClawHub require `operator.read`. Installing, +enabling, disabling, or removing a plugin and changing MCP servers require +`operator.admin`; those actions stay disabled for read-only operators. + +ClawHub installs run through the Gateway and keep the same trust, integrity, +and plugin-install policy checks as other Gateway-mediated installs. Installing +or removing plugin code requires a Gateway restart. Enabling or disabling an +installed plugin can apply without a restart when the plugin and current +Gateway runtime support it; otherwise the UI reports that a restart is +required. OAuth-backed MCP connectors need a one-time +`openclaw mcp login ` from the CLI after they are added. + +The page intentionally focuses on inventory, discovery, install, enablement, +and removal. Use [`openclaw plugins`](/cli/plugins) for arbitrary npm, git, or +local-path sources, updates, and advanced plugin configuration. + ## Sidebar navigation The sidebar pins navigation above a scrollable session list split into **Pinned**, one section per custom group (the session `category`), and **Ungrouped** for the rest. Every active session loaded for the selected agent stays visible inline; opening a session moves the selection highlight without reordering the rows. Sessions with new activity since they were last read show an unread dot, and opening one marks it read. Each session row has a context menu (kebab button or right-click) with Pin/Unpin, Mark as unread/read, Rename, Fork, Move to group (including New group and Remove from group), Archive, and Delete; touch layouts keep the direct pin and menu controls visible. Drag a session onto a custom group or **Ungrouped** to move it. Group headers can be collapsed, expanded, or dragged to reorder them; the collapsed state and custom order are stored in the current browser profile. Group headers also have a menu (kebab button or right-click) with Rename group, New group, and Delete group; renaming or deleting a group updates every member session, including archived ones, and deleting a group keeps its sessions and moves them back to Ungrouped. Groups created from the header start empty and stay visible as move targets. The sort control in the session list header also has a Group by toggle: Custom groups (default) or None for one flat list (Pinned stays separate); the choice is stored in the current browser profile. Multi-agent setups show a compact scope control in the session-list header. **Overview** is the only destination pinned by default; expand **More** to reach every other destination. Select **Edit pinned items** under More, or right-click the navigation area, to pin or unpin destinations and restore the defaults. The pinned set and More expansion state are stored in the current browser profile and survive reloads. @@ -145,9 +184,10 @@ A **Search** field at the top of the sidebar opens the command palette (⌘K). T - Dreams: dreaming status, enable/disable toggle, and Dream Diary reader (`doctor.memory.status`, `doctor.memory.dreamDiary`, `config.patch`). - + - Cron jobs: list/add/edit/run/enable/disable plus run history (`cron.*`). - Tasks: live active and recent background task ledger with linked sessions and cancellation (`tasks.*`). + - Plugins: browse the installed inventory and curated store, search ClawHub, install and remove plugin code, and enable or disable installed plugins (`plugins.*`); MCP server rows edit `mcp.servers` through the config methods. - Skills: status, enable/disable, install, API key updates (`skills.*`). - Nodes: one **Nodes & devices** inventory that joins paired device records with the node catalog (`node.list`, `device.pair.list`) — one entry per machine with roles, live link status, tokens, and capabilities. Duplicate pairings of the same client collapse into an expandable group, and **Clean up N stale** bulk-removes superseded pairings that are offline and were auto-approved (silent local or trusted-CIDR), so affected clients re-pair without user action. Entries can be removed (`node.pair.remove`, `device.pair.remove`), device pairing and node re-approvals handled inline (`device.pair.*`, `node.pair.approve`/`reject`), and mobile setup codes created from the same card. - Exec approvals: edit gateway or node allowlists and ask policy for `exec host=gateway/node` (`exec.approvals.*`). diff --git a/extensions/diffs/openclaw.plugin.json b/extensions/diffs/openclaw.plugin.json index a8b6eb4582af..2f558897b2f9 100644 --- a/extensions/diffs/openclaw.plugin.json +++ b/extensions/diffs/openclaw.plugin.json @@ -5,6 +5,7 @@ }, "name": "Diffs", "description": "OpenClaw read-only diff viewer plugin and file renderer for agents.", + "catalog": { "featured": true, "order": 40 }, "contracts": { "tools": ["diffs"] }, diff --git a/extensions/lobster/openclaw.plugin.json b/extensions/lobster/openclaw.plugin.json index 1fc3ae39ecac..da0759ad6f5e 100644 --- a/extensions/lobster/openclaw.plugin.json +++ b/extensions/lobster/openclaw.plugin.json @@ -5,6 +5,7 @@ }, "name": "Lobster", "description": "Lobster workflow tool plugin for typed pipelines and resumable approvals.", + "catalog": { "featured": true, "order": 50 }, "contracts": { "tools": ["lobster"] }, diff --git a/extensions/memory-lancedb/openclaw.plugin.json b/extensions/memory-lancedb/openclaw.plugin.json index 1c491fa0b6b9..8b26906bed04 100644 --- a/extensions/memory-lancedb/openclaw.plugin.json +++ b/extensions/memory-lancedb/openclaw.plugin.json @@ -2,6 +2,7 @@ "id": "memory-lancedb", "name": "Memory LanceDB", "description": "OpenClaw LanceDB-backed long-term memory plugin with auto-recall, auto-capture, and vector search.", + "catalog": { "featured": true, "order": 70 }, "commandAliases": [{ "name": "ltm" }], "activation": { "onStartup": false, diff --git a/extensions/memory-wiki/openclaw.plugin.json b/extensions/memory-wiki/openclaw.plugin.json index ac2a678a4aa2..51988c61987d 100644 --- a/extensions/memory-wiki/openclaw.plugin.json +++ b/extensions/memory-wiki/openclaw.plugin.json @@ -5,6 +5,7 @@ }, "name": "Memory Wiki", "description": "Persistent wiki compiler and Obsidian-friendly knowledge vault for OpenClaw.", + "catalog": { "featured": true, "order": 30 }, "contracts": { "tools": ["wiki_apply", "wiki_get", "wiki_lint", "wiki_search", "wiki_status"] }, diff --git a/extensions/open-prose/openclaw.plugin.json b/extensions/open-prose/openclaw.plugin.json index 4693a0721a83..0f0990c4ce37 100644 --- a/extensions/open-prose/openclaw.plugin.json +++ b/extensions/open-prose/openclaw.plugin.json @@ -5,6 +5,7 @@ }, "name": "OpenProse", "description": "OpenProse VM skill pack with a /prose slash command.", + "catalog": { "featured": true, "order": 20 }, "skills": ["./skills"], "configSchema": { "type": "object", diff --git a/extensions/tokenjuice/openclaw.plugin.json b/extensions/tokenjuice/openclaw.plugin.json index 99c0f26b8aac..d2062f5c9225 100644 --- a/extensions/tokenjuice/openclaw.plugin.json +++ b/extensions/tokenjuice/openclaw.plugin.json @@ -5,6 +5,7 @@ }, "name": "tokenjuice", "description": "Compacts exec and bash tool results with tokenjuice reducers.", + "catalog": { "featured": true, "order": 60 }, "contracts": { "agentToolResultMiddleware": ["openclaw", "codex"] }, diff --git a/extensions/workboard/openclaw.plugin.json b/extensions/workboard/openclaw.plugin.json index 53a40e4f2599..5ecde7e6ed8b 100644 --- a/extensions/workboard/openclaw.plugin.json +++ b/extensions/workboard/openclaw.plugin.json @@ -7,6 +7,7 @@ }, "name": "Workboard", "description": "Dashboard workboard for agent-owned issues and sessions.", + "catalog": { "featured": true, "order": 10 }, "contracts": { "tools": [ "workboard_list", diff --git a/packages/gateway-protocol/src/index.ts b/packages/gateway-protocol/src/index.ts index 37032db3f925..2f8f6ef52957 100644 --- a/packages/gateway-protocol/src/index.ts +++ b/packages/gateway-protocol/src/index.ts @@ -246,14 +246,39 @@ import { PluginApprovalRequestParamsSchema, type PluginApprovalResolveParams, PluginApprovalResolveParamsSchema, + type PluginCatalogEntry, + PluginCatalogEntrySchema, + PluginCatalogInstallActionSchema, + PluginSearchPackageSchema, + PluginSearchResultEntrySchema, + type PluginsInstallParams, + type PluginsInstallResult, + PluginsInstallParamsSchema, + PluginsInstallResultSchema, + type PluginsListParams, + type PluginsListResult, + PluginsListParamsSchema, + PluginsListResultSchema, + type PluginsSearchParams, + type PluginsSearchResult, + PluginsSearchParamsSchema, + PluginsSearchResultSchema, type PluginsSessionActionParams, type PluginsSessionActionResult, PluginsSessionActionParamsSchema, PluginsSessionActionResultSchema, + type PluginsSetEnabledParams, + type PluginsSetEnabledResult, + PluginsSetEnabledParamsSchema, + PluginsSetEnabledResultSchema, type PluginsUiDescriptorsParams, type PluginsUiDescriptorsResult, PluginsUiDescriptorsParamsSchema, PluginsUiDescriptorsResultSchema, + type PluginsUninstallParams, + type PluginsUninstallResult, + PluginsUninstallParamsSchema, + PluginsUninstallResultSchema, ErrorCodes, type EnvironmentSummary, EnvironmentSummarySchema, @@ -1066,6 +1091,30 @@ export const validatePluginApprovalRequestParams = lazyCompile( PluginApprovalResolveParamsSchema, ); +export const validatePluginsListParams = lazyCompile(PluginsListParamsSchema); +export const validatePluginsListResult = lazyCompile(PluginsListResultSchema); +export const validatePluginsSearchParams = + lazyCompile(PluginsSearchParamsSchema); +export const validatePluginsSearchResult = + lazyCompile(PluginsSearchResultSchema); +export const validatePluginsInstallParams = lazyCompile( + PluginsInstallParamsSchema, +); +export const validatePluginsInstallResult = lazyCompile( + PluginsInstallResultSchema, +); +export const validatePluginsSetEnabledParams = lazyCompile( + PluginsSetEnabledParamsSchema, +); +export const validatePluginsSetEnabledResult = lazyCompile( + PluginsSetEnabledResultSchema, +); +export const validatePluginsUninstallParams = lazyCompile( + PluginsUninstallParamsSchema, +); +export const validatePluginsUninstallResult = lazyCompile( + PluginsUninstallResultSchema, +); export const validatePluginsUiDescriptorsParams = lazyCompile( PluginsUiDescriptorsParamsSchema, ); @@ -1369,10 +1418,24 @@ export { AgentsListResultSchema, CommandsListParamsSchema, CommandsListResultSchema, + PluginCatalogEntrySchema, + PluginCatalogInstallActionSchema, + PluginSearchPackageSchema, + PluginSearchResultEntrySchema, + PluginsInstallParamsSchema, + PluginsInstallResultSchema, + PluginsListParamsSchema, + PluginsListResultSchema, + PluginsSearchParamsSchema, + PluginsSearchResultSchema, PluginsSessionActionParamsSchema, PluginsSessionActionResultSchema, + PluginsSetEnabledParamsSchema, + PluginsSetEnabledResultSchema, PluginsUiDescriptorsParamsSchema, PluginsUiDescriptorsResultSchema, + PluginsUninstallParamsSchema, + PluginsUninstallResultSchema, ModelsListParamsSchema, SkillsStatusParamsSchema, ToolsCatalogParamsSchema, @@ -1590,8 +1653,19 @@ export type { CommandsListParams, CommandsListResult, CommandEntry, + PluginCatalogEntry, + PluginsInstallParams, + PluginsInstallResult, + PluginsListParams, + PluginsListResult, + PluginsSearchParams, + PluginsSearchResult, PluginsSessionActionParams, PluginsSessionActionResult, + PluginsSetEnabledParams, + PluginsSetEnabledResult, + PluginsUninstallParams, + PluginsUninstallResult, SkillsStatusParams, ToolsCatalogParams, ToolsCatalogResult, diff --git a/packages/gateway-protocol/src/plugins-validators.test.ts b/packages/gateway-protocol/src/plugins-validators.test.ts new file mode 100644 index 000000000000..262f9481b491 --- /dev/null +++ b/packages/gateway-protocol/src/plugins-validators.test.ts @@ -0,0 +1,141 @@ +import { describe, expect, it } from "vitest"; +import { + validatePluginsInstallParams, + validatePluginsInstallResult, + validatePluginsListParams, + validatePluginsListResult, + validatePluginsSearchParams, + validatePluginsSearchResult, + validatePluginsSetEnabledParams, + validatePluginsSetEnabledResult, + validatePluginsUninstallParams, + validatePluginsUninstallResult, +} from "./index.js"; + +const installedPlugin = { + id: "workboard", + name: "Workboard", + packageName: "@openclaw/workboard", + description: "Coordinate work across agents", + version: "1.0.0", + kind: ["tool"], + origin: "bundled", + installed: true, + enabled: false, + state: "disabled", + featured: true, + order: 10, + install: { source: "official", pluginId: "workboard" }, + category: "tool", + removable: false, +} as const; + +describe("plugin lifecycle protocol validators", () => { + it("accepts cold catalog payloads and rejects runtime-only states", () => { + expect(validatePluginsListParams({})).toBe(true); + expect(validatePluginsListParams({ unexpected: true })).toBe(false); + expect( + validatePluginsListResult({ + plugins: [installedPlugin], + diagnostics: [], + mutationAllowed: true, + }), + ).toBe(true); + expect( + validatePluginsListResult({ + plugins: [{ ...installedPlugin, state: "loaded" }], + diagnostics: [], + mutationAllowed: true, + }), + ).toBe(false); + }); + + it("validates bounded plugin search requests and projected results", () => { + expect(validatePluginsSearchParams({ query: "memory", limit: 20 })).toBe(true); + expect(validatePluginsSearchParams({ query: "memory", limit: 101 })).toBe(false); + expect( + validatePluginsSearchResult({ + results: [ + { + score: 0.95, + package: { + name: "memory-plus", + displayName: "Memory Plus", + family: "code-plugin", + channel: "community", + isOfficial: false, + summary: "Long-term memory tools", + latestVersion: "2.1.0", + runtimeId: "memory-plus", + downloads: 1420, + verificationTier: "source-linked", + }, + }, + ], + }), + ).toBe(true); + }); + + it("keeps official and ClawHub install requests distinct", () => { + expect( + validatePluginsInstallParams({ + source: "clawhub", + packageName: "memory-plus", + version: "2.1.0", + acknowledgeClawHubRisk: true, + }), + ).toBe(true); + expect(validatePluginsInstallParams({ source: "official", pluginId: "workboard" })).toBe(true); + expect( + validatePluginsInstallParams({ + source: "official", + pluginId: "workboard", + packageName: "memory-plus", + }), + ).toBe(false); + expect( + validatePluginsInstallResult({ + ok: true, + plugin: { ...installedPlugin, enabled: true, state: "enabled" }, + restartRequired: true, + warnings: ["Restart the gateway to load this plugin."], + }), + ).toBe(true); + }); + + it("validates uninstall requests and removal summaries", () => { + expect(validatePluginsUninstallParams({ pluginId: "memory-plus" })).toBe(true); + expect(validatePluginsUninstallParams({ pluginId: "" })).toBe(false); + expect(validatePluginsUninstallParams({})).toBe(false); + expect( + validatePluginsUninstallResult({ + ok: true, + pluginId: "memory-plus", + restartRequired: true, + removed: ["config entry", "install record", "directory"], + warnings: ["npm prune skipped"], + }), + ).toBe(true); + expect( + validatePluginsUninstallResult({ + ok: true, + pluginId: "memory-plus", + restartRequired: false, + removed: [], + }), + ).toBe(false); + }); + + it("validates enablement mutations and dynamic restart metadata", () => { + expect(validatePluginsSetEnabledParams({ pluginId: "workboard", enabled: true })).toBe(true); + expect(validatePluginsSetEnabledParams({ pluginId: "workboard", enabled: "yes" })).toBe(false); + expect( + validatePluginsSetEnabledResult({ + ok: true, + plugin: { ...installedPlugin, enabled: true, state: "enabled" }, + restartRequired: false, + warnings: ['Exclusive slot "memory" switched to "memory-plus".'], + }), + ).toBe(true); + }); +}); diff --git a/packages/gateway-protocol/src/schema/plugins.ts b/packages/gateway-protocol/src/schema/plugins.ts index 94c465c5ec4f..6395b3dc6f44 100644 --- a/packages/gateway-protocol/src/schema/plugins.ts +++ b/packages/gateway-protocol/src/schema/plugins.ts @@ -1,5 +1,5 @@ // Gateway Protocol schema module defines protocol validation shapes. -import { Type } from "typebox"; +import { Type, type Static } from "typebox"; import { NonEmptyString } from "./primitives.js"; /** @@ -82,3 +82,199 @@ export const PluginsSessionActionResultSchema = Type.Union([ PluginsSessionActionSuccessResultSchema, PluginsSessionActionFailureResultSchema, ]); + +/** ClawHub-backed install action for one catalog entry. */ +export const PluginCatalogClawHubInstallSchema = Type.Object( + { + source: Type.Literal("clawhub"), + packageName: NonEmptyString, + }, + { additionalProperties: false }, +); + +/** Official-catalog install action for one catalog entry. */ +export const PluginCatalogOfficialInstallSchema = Type.Object( + { + source: Type.Literal("official"), + pluginId: NonEmptyString, + }, + { additionalProperties: false }, +); + +// Branches stay named schemas: the Swift generator only emits discriminated +// unions whose branches resolve to registered types (see PluginsSessionActionResult). +export const PluginCatalogInstallActionSchema = Type.Union([ + PluginCatalogClawHubInstallSchema, + PluginCatalogOfficialInstallSchema, +]); + +/** Cold control-plane representation of an installed or available plugin. */ +export const PluginCatalogEntrySchema = Type.Object( + { + id: NonEmptyString, + name: NonEmptyString, + packageName: Type.Optional(NonEmptyString), + description: Type.Optional(Type.String()), + version: Type.Optional(NonEmptyString), + kind: Type.Optional(Type.Array(NonEmptyString)), + origin: Type.Optional(NonEmptyString), + installed: Type.Boolean(), + enabled: Type.Boolean(), + state: Type.Union([ + Type.Literal("enabled"), + Type.Literal("disabled"), + Type.Literal("not-installed"), + Type.Literal("error"), + ]), + featured: Type.Optional(Type.Boolean()), + order: Type.Optional(Type.Number()), + install: Type.Optional(PluginCatalogInstallActionSchema), + error: Type.Optional(Type.String()), + /** Coarse manifest-derived grouping (channel, provider, memory, ...) for catalog UIs. */ + category: Type.Optional(NonEmptyString), + /** True when the plugin has an install record and can be removed via plugins.uninstall. */ + removable: Type.Optional(Type.Boolean()), + }, + { additionalProperties: false }, +); + +/** Empty request payload for the cold plugin catalog. */ +export const PluginsListParamsSchema = Type.Object({}, { additionalProperties: false }); + +/** Installed and curated plugin catalog visible to the current gateway client. */ +export const PluginsListResultSchema = Type.Object( + { + plugins: Type.Array(PluginCatalogEntrySchema), + diagnostics: Type.Array(Type.Unknown()), + mutationAllowed: Type.Boolean(), + }, + { additionalProperties: false }, +); + +/** Request payload for searching installable ClawHub plugin families. */ +export const PluginsSearchParamsSchema = Type.Object( + { + query: NonEmptyString, + limit: Type.Optional(Type.Integer({ minimum: 1, maximum: 100 })), + }, + { additionalProperties: false }, +); + +/** ClawHub package fields exposed by plugin search. */ +export const PluginSearchPackageSchema = Type.Object( + { + name: NonEmptyString, + displayName: NonEmptyString, + family: Type.Union([Type.Literal("code-plugin"), Type.Literal("bundle-plugin")]), + channel: Type.Union([ + Type.Literal("official"), + Type.Literal("community"), + Type.Literal("private"), + ]), + isOfficial: Type.Boolean(), + summary: Type.Optional(Type.String()), + latestVersion: Type.Optional(NonEmptyString), + runtimeId: Type.Optional(NonEmptyString), + downloads: Type.Optional(Type.Number({ minimum: 0 })), + verificationTier: Type.Optional(NonEmptyString), + }, + { additionalProperties: false }, +); + +/** Ranked ClawHub plugin search hit. */ +export const PluginSearchResultEntrySchema = Type.Object( + { + score: Type.Number(), + package: PluginSearchPackageSchema, + }, + { additionalProperties: false }, +); + +/** Ranked installable plugin packages matching the query. */ +export const PluginsSearchResultSchema = Type.Object( + { results: Type.Array(PluginSearchResultEntrySchema) }, + { additionalProperties: false }, +); + +/** Trusted official-catalog or acknowledged ClawHub install request. */ +export const PluginsInstallParamsSchema = Type.Union([ + Type.Object( + { + source: Type.Literal("clawhub"), + packageName: NonEmptyString, + version: Type.Optional(NonEmptyString), + acknowledgeClawHubRisk: Type.Optional(Type.Boolean()), + }, + { additionalProperties: false }, + ), + Type.Object( + { + source: Type.Literal("official"), + pluginId: NonEmptyString, + }, + { additionalProperties: false }, + ), +]); + +/** Successful plugin installation result. */ +export const PluginsInstallResultSchema = Type.Object( + { + ok: Type.Literal(true), + plugin: PluginCatalogEntrySchema, + restartRequired: Type.Literal(true), + warnings: Type.Optional(Type.Array(Type.String())), + }, + { additionalProperties: false }, +); + +/** Request payload for removing one installed plugin and its managed files. */ +export const PluginsUninstallParamsSchema = Type.Object( + { + pluginId: NonEmptyString, + }, + { additionalProperties: false }, +); + +/** Successful plugin removal result listing the cleanup actions that ran. */ +export const PluginsUninstallResultSchema = Type.Object( + { + ok: Type.Literal(true), + pluginId: NonEmptyString, + restartRequired: Type.Literal(true), + removed: Type.Array(Type.String()), + warnings: Type.Optional(Type.Array(Type.String())), + }, + { additionalProperties: false }, +); + +/** Request payload for changing one installed plugin's policy state. */ +export const PluginsSetEnabledParamsSchema = Type.Object( + { + pluginId: NonEmptyString, + enabled: Type.Boolean(), + }, + { additionalProperties: false }, +); + +/** Successful plugin enablement policy update. */ +export const PluginsSetEnabledResultSchema = Type.Object( + { + ok: Type.Literal(true), + plugin: PluginCatalogEntrySchema, + restartRequired: Type.Boolean(), + warnings: Type.Optional(Type.Array(Type.String())), + }, + { additionalProperties: false }, +); + +export type PluginCatalogEntry = Static; +export type PluginsListParams = Static; +export type PluginsListResult = Static; +export type PluginsSearchParams = Static; +export type PluginsSearchResult = Static; +export type PluginsInstallParams = Static; +export type PluginsInstallResult = Static; +export type PluginsUninstallParams = Static; +export type PluginsUninstallResult = Static; +export type PluginsSetEnabledParams = Static; +export type PluginsSetEnabledResult = Static; diff --git a/packages/gateway-protocol/src/schema/protocol-schemas.ts b/packages/gateway-protocol/src/schema/protocol-schemas.ts index 8a1ab49a386d..98866dfb11de 100644 --- a/packages/gateway-protocol/src/schema/protocol-schemas.ts +++ b/packages/gateway-protocol/src/schema/protocol-schemas.ts @@ -263,13 +263,29 @@ import { PluginApprovalResolveParamsSchema, } from "./plugin-approvals.js"; import { + PluginCatalogClawHubInstallSchema, + PluginCatalogEntrySchema, + PluginCatalogInstallActionSchema, + PluginCatalogOfficialInstallSchema, PluginControlUiDescriptorSchema, + PluginSearchPackageSchema, + PluginSearchResultEntrySchema, + PluginsInstallParamsSchema, + PluginsInstallResultSchema, + PluginsListParamsSchema, + PluginsListResultSchema, + PluginsSearchParamsSchema, + PluginsSearchResultSchema, PluginsSessionActionFailureResultSchema, PluginsSessionActionParamsSchema, PluginsSessionActionResultSchema, PluginsSessionActionSuccessResultSchema, + PluginsSetEnabledParamsSchema, + PluginsSetEnabledResultSchema, PluginsUiDescriptorsParamsSchema, PluginsUiDescriptorsResultSchema, + PluginsUninstallParamsSchema, + PluginsUninstallResultSchema, } from "./plugins.js"; import { PushTestParamsSchema, PushTestResultSchema } from "./push.js"; import { @@ -698,13 +714,29 @@ export const ProtocolSchemas = { ExecApprovalResolveParams: ExecApprovalResolveParamsSchema, PluginApprovalRequestParams: PluginApprovalRequestParamsSchema, PluginApprovalResolveParams: PluginApprovalResolveParamsSchema, + PluginCatalogClawHubInstall: PluginCatalogClawHubInstallSchema, + PluginCatalogEntry: PluginCatalogEntrySchema, + PluginCatalogInstallAction: PluginCatalogInstallActionSchema, + PluginCatalogOfficialInstall: PluginCatalogOfficialInstallSchema, PluginControlUiDescriptor: PluginControlUiDescriptorSchema, + PluginSearchPackage: PluginSearchPackageSchema, + PluginSearchResultEntry: PluginSearchResultEntrySchema, + PluginsInstallParams: PluginsInstallParamsSchema, + PluginsInstallResult: PluginsInstallResultSchema, + PluginsListParams: PluginsListParamsSchema, + PluginsListResult: PluginsListResultSchema, + PluginsSearchParams: PluginsSearchParamsSchema, + PluginsSearchResult: PluginsSearchResultSchema, PluginsSessionActionFailureResult: PluginsSessionActionFailureResultSchema, PluginsSessionActionParams: PluginsSessionActionParamsSchema, PluginsSessionActionResult: PluginsSessionActionResultSchema, PluginsSessionActionSuccessResult: PluginsSessionActionSuccessResultSchema, + PluginsSetEnabledParams: PluginsSetEnabledParamsSchema, + PluginsSetEnabledResult: PluginsSetEnabledResultSchema, PluginsUiDescriptorsParams: PluginsUiDescriptorsParamsSchema, PluginsUiDescriptorsResult: PluginsUiDescriptorsResultSchema, + PluginsUninstallParams: PluginsUninstallParamsSchema, + PluginsUninstallResult: PluginsUninstallResultSchema, DevicePairListParams: DevicePairListParamsSchema, DevicePairApproveParams: DevicePairApproveParamsSchema, DevicePairRejectParams: DevicePairRejectParamsSchema, diff --git a/scripts/lib/official-external-plugin-catalog.json b/scripts/lib/official-external-plugin-catalog.json index 6eedcb9e83dc..5c2f389193e7 100644 --- a/scripts/lib/official-external-plugin-catalog.json +++ b/scripts/lib/official-external-plugin-catalog.json @@ -119,7 +119,12 @@ "id": "diffs", "label": "Diffs" }, + "catalog": { + "featured": true, + "order": 40 + }, "install": { + "clawhubSpec": "clawhub:@openclaw/diffs", "npmSpec": "@openclaw/diffs", "defaultChoice": "npm", "minHostVersion": ">=2026.4.30" @@ -308,7 +313,12 @@ "id": "lobster", "label": "Lobster" }, + "catalog": { + "featured": true, + "order": 50 + }, "install": { + "clawhubSpec": "clawhub:@openclaw/lobster", "npmSpec": "@openclaw/lobster", "defaultChoice": "npm", "minHostVersion": ">=2026.4.25" @@ -325,7 +335,12 @@ "id": "memory-lancedb", "label": "Memory LanceDB" }, + "catalog": { + "featured": true, + "order": 70 + }, "install": { + "clawhubSpec": "clawhub:@openclaw/memory-lancedb", "npmSpec": "@openclaw/memory-lancedb", "defaultChoice": "npm", "minHostVersion": ">=2026.5.31" @@ -588,6 +603,10 @@ "id": "tokenjuice", "label": "Tokenjuice" }, + "catalog": { + "featured": true, + "order": 60 + }, "install": { "clawhubSpec": "clawhub:@openclaw/tokenjuice", "npmSpec": "@openclaw/tokenjuice", diff --git a/scripts/lib/plugin-sdk-declaration-budget.mjs b/scripts/lib/plugin-sdk-declaration-budget.mjs index 682105961f39..0c1e5ff28ab7 100644 --- a/scripts/lib/plugin-sdk-declaration-budget.mjs +++ b/scripts/lib/plugin-sdk-declaration-budget.mjs @@ -1,7 +1,9 @@ -export const MAX_PUBLIC_PLUGIN_SDK_DECLARATION_BYTES = 5_000_000; +// Raised from 5_000_000 for the plugins.uninstall + catalog install-action protocol surface; +// the cap exists to force a conscious decision on published declaration growth. +export const MAX_PUBLIC_PLUGIN_SDK_DECLARATION_BYTES = 5_050_000; // Private-only entrypoints reshape chunks reachable from public roots but are never published. // Bound that topology overhead without counting local-only declarations as package surface. -export const MAX_PRIVATE_QA_PUBLIC_PLUGIN_SDK_DECLARATION_BYTES = 5_025_000; +export const MAX_PRIVATE_QA_PUBLIC_PLUGIN_SDK_DECLARATION_BYTES = 5_075_000; export function isPrivateQaPluginSdkBuild(env) { return env.OPENCLAW_BUILD_PRIVATE_QA === "1"; diff --git a/src/auto-reply/reply/commands-plugins.install.test.ts b/src/auto-reply/reply/commands-plugins.install.test.ts index f712b990c72e..666fddb9591f 100644 --- a/src/auto-reply/reply/commands-plugins.install.test.ts +++ b/src/auto-reply/reply/commands-plugins.install.test.ts @@ -54,8 +54,8 @@ vi.mock("../../plugins/git-install.js", async () => { }; }); -vi.mock("../../cli/plugins-install-persist.js", async (importOriginal) => ({ - ...(await importOriginal()), +vi.mock("../../plugins/install-persistence.js", async (importOriginal) => ({ + ...(await importOriginal()), persistPluginInstall: persistPluginInstallMock, })); diff --git a/src/auto-reply/reply/commands-plugins.test.ts b/src/auto-reply/reply/commands-plugins.test.ts index b93c20c2dac0..783252885227 100644 --- a/src/auto-reply/reply/commands-plugins.test.ts +++ b/src/auto-reply/reply/commands-plugins.test.ts @@ -23,11 +23,11 @@ vi.mock("../../cli/plugins-command-helpers.js", () => ({ resolveFileNpmSpecToLocalPath: vi.fn(() => null), })); -vi.mock("../../cli/plugins-install-persist.js", () => ({ +vi.mock("../../plugins/install-persistence.js", () => ({ persistPluginInstall: vi.fn(async () => undefined), })); -vi.mock("../../cli/plugins-registry-refresh.js", () => ({ +vi.mock("../../plugins/registry-refresh.js", () => ({ refreshPluginRegistryAfterConfigMutation: refreshPluginRegistryAfterConfigMutationMock, })); diff --git a/src/auto-reply/reply/commands-plugins.ts b/src/auto-reply/reply/commands-plugins.ts index c569d1cb6fd1..2f8748c0c834 100644 --- a/src/auto-reply/reply/commands-plugins.ts +++ b/src/auto-reply/reply/commands-plugins.ts @@ -8,13 +8,6 @@ import { createPluginInstallLogger, resolveFileNpmSpecToLocalPath, } from "../../cli/plugins-command-helpers.js"; -import { - persistPluginInstall, - resolveInstallConfigMutationPreflights, - selectInstallMutationWriteOptions, -} from "../../cli/plugins-install-persist.js"; -import type { ConfigSnapshotForInstallPersist } from "../../cli/plugins-install-persist.js"; -import { refreshPluginRegistryAfterConfigMutation } from "../../cli/plugins-registry-refresh.js"; import { readConfigFileSnapshot, readConfigFileSnapshotForWrite } from "../../config/config.js"; import { assertConfigWriteAllowedInCurrentMode } from "../../config/nix-mode-write-guard.js"; import type { OpenClawConfig } from "../../config/types.openclaw.js"; @@ -25,6 +18,12 @@ import { formatErrorMessage } from "../../infra/errors.js"; import { buildClawHubPluginInstallRecordFields } from "../../plugins/clawhub-install-records.js"; import { CLAWHUB_INSTALL_ERROR_CODE, installPluginFromClawHub } from "../../plugins/clawhub.js"; import { installPluginFromGitSpec, parseGitPluginSpec } from "../../plugins/git-install.js"; +import { + persistPluginInstall, + resolveInstallConfigMutationPreflights, + selectInstallMutationWriteOptions, + type ConfigSnapshotForInstallPersist, +} from "../../plugins/install-persistence.js"; import { installPluginFromNpmSpec, installPluginFromPath } from "../../plugins/install.js"; import { loadInstalledPluginIndexInstallRecords } from "../../plugins/installed-plugin-index-records.js"; import { @@ -32,6 +31,7 @@ import { resolveOfficialExternalPluginId, resolveOfficialExternalPluginInstall, } from "../../plugins/official-external-plugin-catalog.js"; +import { refreshPluginRegistryAfterConfigMutation } from "../../plugins/registry-refresh.js"; import type { PluginRecord } from "../../plugins/registry.js"; import { buildAllPluginInspectReports, diff --git a/src/cli/channel-auth.test.ts b/src/cli/channel-auth.test.ts index 9095d731a1c9..383a5238d919 100644 --- a/src/cli/channel-auth.test.ts +++ b/src/cli/channel-auth.test.ts @@ -66,7 +66,7 @@ vi.mock("../gateway/call.js", () => ({ callGateway: mocks.callGateway, })); -vi.mock("./plugins-install-record-commit.js", () => ({ +vi.mock("../plugins/install-record-commit.js", () => ({ commitConfigWithPendingPluginInstalls: mocks.commitConfigWithPendingPluginInstalls, })); diff --git a/src/cli/channel-auth.ts b/src/cli/channel-auth.ts index c0616b4225db..5582d06051ee 100644 --- a/src/cli/channel-auth.ts +++ b/src/cli/channel-auth.ts @@ -14,11 +14,11 @@ import { callGateway } from "../gateway/call.js"; import { setVerbose } from "../globals.js"; import { formatErrorMessage } from "../infra/errors.js"; import { isBlockedObjectKey } from "../infra/prototype-keys.js"; +import { commitConfigWithPendingPluginInstalls } from "../plugins/install-record-commit.js"; import { defaultRuntime, type RuntimeEnv } from "../runtime.js"; import { GATEWAY_CLIENT_MODES, GATEWAY_CLIENT_NAMES } from "../utils/message-channel.js"; import { formatCliCommand } from "./command-format.js"; import { formatUnsupportedChannelActionMessage } from "./error-format.js"; -import { commitConfigWithPendingPluginInstalls } from "./plugins-install-record-commit.js"; type ChannelAuthOptions = { channel?: string; diff --git a/src/cli/directory-cli.ts b/src/cli/directory-cli.ts index 28399008dceb..9b6216e0dc43 100644 --- a/src/cli/directory-cli.ts +++ b/src/cli/directory-cli.ts @@ -15,9 +15,9 @@ import { applyPluginAutoEnable } from "../config/plugin-auto-enable.js"; import { danger } from "../globals.js"; import { resolveMessageChannelSelection } from "../infra/outbound/channel-selection.js"; import { parseStrictPositiveInteger } from "../infra/parse-finite-number.js"; +import { commitConfigWithPendingPluginInstalls } from "../plugins/install-record-commit.js"; import { defaultRuntime } from "../runtime.js"; import { formatHelpExamples } from "./help-format.js"; -import { commitConfigWithPendingPluginInstalls } from "./plugins-install-record-commit.js"; function parseLimit(value: unknown): number | null { if (value === undefined || value === null || value === "") { diff --git a/src/cli/hook-install-persistence.ts b/src/cli/hook-install-persistence.ts new file mode 100644 index 000000000000..2e213ee11577 --- /dev/null +++ b/src/cli/hook-install-persistence.ts @@ -0,0 +1,32 @@ +// CLI persistence for hook-pack installs. +import { replaceConfigFile } from "../config/config.js"; +import type { OpenClawConfig } from "../config/types.openclaw.js"; +import { type HookInstallUpdate, recordHookInstall } from "../hooks/installs.js"; +import type { ConfigSnapshotForInstallPersist } from "../plugins/install-persistence.js"; +import { defaultRuntime, type RuntimeEnv } from "../runtime.js"; +import { enableInternalHookEntries, logHookPackRestartHint } from "./plugins-command-helpers.js"; + +export async function persistHookPackInstall(params: { + snapshot: ConfigSnapshotForInstallPersist; + hookPackId: string; + hooks: string[]; + install: Omit; + successMessage?: string; + runtime?: RuntimeEnv; +}): Promise { + const runtime = params.runtime ?? defaultRuntime; + let next = enableInternalHookEntries(params.snapshot.config, params.hooks); + next = recordHookInstall(next, { + hookId: params.hookPackId, + hooks: params.hooks, + ...params.install, + }); + await replaceConfigFile({ + nextConfig: next, + baseHash: params.snapshot.baseHash, + writeOptions: params.snapshot.writeOptions, + }); + runtime.log(params.successMessage ?? `Installed hook pack: ${params.hookPackId}`); + logHookPackRestartHint(runtime); + return next; +} diff --git a/src/cli/plugins-cli.runtime.ts b/src/cli/plugins-cli.runtime.ts index e40f21969f3e..729e5f8046bf 100644 --- a/src/cli/plugins-cli.runtime.ts +++ b/src/cli/plugins-cli.runtime.ts @@ -41,9 +41,10 @@ function createModuleLoader(load: () => Promise): () => Promise { const loadPluginsConfigState = createModuleLoader(() => import("../plugins/config-state.js")); const loadPluginsStatus = createModuleLoader(() => import("../plugins/status.js")); +const loadPluginSlotSelection = createModuleLoader(() => import("../plugins/slot-selection.js")); const loadPluginsCommandHelpers = createModuleLoader(() => import("./plugins-command-helpers.js")); const loadPluginsRegistryRefresh = createModuleLoader( - () => import("./plugins-registry-refresh.js"), + () => import("../plugins/registry-refresh.js"), ); function countEnabledPlugins(plugins: readonly { enabled: boolean }[]): number { @@ -193,7 +194,8 @@ export async function runPluginsEnableCommand(idInput: string): Promise { const { enableExplicitlySelectedPluginInConfig } = await import("../plugins/enable.js"); const { normalizePluginId } = await loadPluginsConfigState(); const { buildPluginRegistrySnapshotReport } = await loadPluginsStatus(); - const { applySlotSelectionForPlugin, logSlotWarnings } = await loadPluginsCommandHelpers(); + const { applySlotSelectionForPlugin } = await loadPluginSlotSelection(); + const { logSlotWarnings } = await loadPluginsCommandHelpers(); const { refreshPluginRegistryAfterConfigMutation } = await loadPluginsRegistryRefresh(); const snapshot = await readConfigFileSnapshot(); const cfg = (snapshot.sourceConfig ?? snapshot.config) as OpenClawConfig; @@ -833,6 +835,9 @@ export async function runPluginMarketplaceRefreshCommand( ...(expectedSha256 ? { expectedSha256 } : {}), requireSnapshotWrite: true, }); + const { clearManagedPluginOfficialCatalogCache } = + await import("../plugins/management-service.js"); + clearManagedPluginOfficialCatalogCache(); const payload = sanitizeMarketplaceRefreshPayload(buildMarketplaceRefreshPayload(result), { feedUrl: opts.feedUrl, }); diff --git a/src/cli/plugins-command-helpers.ts b/src/cli/plugins-command-helpers.ts index bf11aac6ec44..297ddf65435b 100644 --- a/src/cli/plugins-command-helpers.ts +++ b/src/cli/plugins-command-helpers.ts @@ -1,69 +1,13 @@ -// Shared plugin CLI helpers for install logging, file specs, hooks, and slot selection. +// Shared plugin CLI helpers for install logging, file specs, and hooks. import { normalizeLowercaseStringOrEmpty } from "@openclaw/normalization-core/string-coerce"; import { theme } from "../../packages/terminal-core/src/theme.js"; import type { OpenClawConfig } from "../config/types.openclaw.js"; import { HOOK_INSTALL_ERROR_CODE } from "../hooks/install.js"; -import type { PluginKind } from "../plugins/plugin-kind.types.js"; -import { loadPluginMetadataSnapshot } from "../plugins/plugin-metadata-snapshot.js"; -import { applyExclusiveSlotSelection } from "../plugins/slots.js"; -import { buildPluginDiagnosticsReport } from "../plugins/status.js"; import { defaultRuntime, type RuntimeEnv } from "../runtime.js"; export { quietPluginJsonLogger } from "./plugins-json-logger.js"; type HookInternalEntryLike = Record & { enabled?: boolean }; -type SlotSelectionPlugin = { - id: string; - kind?: PluginKind | PluginKind[]; -}; - -type SlotSelectionRegistry = { - plugins: SlotSelectionPlugin[]; -}; - -function mergeRuntimeKinds( - report: SlotSelectionRegistry, - runtimeReport: SlotSelectionRegistry, -): SlotSelectionRegistry { - const runtimeKinds = new Map( - runtimeReport.plugins - .filter((plugin) => plugin.kind) - .map((plugin) => [plugin.id, plugin.kind] as const), - ); - return { - plugins: report.plugins.map((plugin) => { - if (plugin.kind) { - return plugin; - } - const runtimeKind = runtimeKinds.get(plugin.id); - return runtimeKind ? { ...plugin, kind: runtimeKind } : plugin; - }), - }; -} - -function loadRuntimeKindReportForPlugins(config: OpenClawConfig, pluginIds: readonly string[]) { - return buildPluginDiagnosticsReport({ - config, - onlyPluginIds: [...pluginIds], - }); -} - -function buildSlotSelectionRegistry( - config: OpenClawConfig, - pluginId: string, -): SlotSelectionRegistry { - const plugins = loadPluginMetadataSnapshot({ - config, - env: process.env, - }).plugins.filter((plugin) => plugin.id === pluginId); - return { - plugins: plugins.map((plugin) => ({ - id: plugin.id, - kind: plugin.kind, - })), - }; -} - export function resolveFileNpmSpecToLocalPath( raw: string, ): { ok: true; path: string } | { ok: false; error: string } | null { @@ -90,38 +34,6 @@ export function resolveFileNpmSpecToLocalPath( return { ok: true, path: rest }; } -export function applySlotSelectionForPlugin( - config: OpenClawConfig, - pluginId: string, -): { config: OpenClawConfig; warnings: string[] } { - // Static metadata is preferred; runtime diagnostics fill in kind for older manifests. - const report = buildSlotSelectionRegistry(config, pluginId); - const plugin = report.plugins.find((entry) => entry.id === pluginId); - if (!plugin) { - return { config, warnings: [] }; - } - if (!plugin.kind) { - const runtimeReport = loadRuntimeKindReportForPlugins(config, [plugin.id]); - const runtimePlugin = runtimeReport.plugins.find((entry) => entry.id === plugin.id); - if (runtimePlugin?.kind) { - const result = applyExclusiveSlotSelection({ - config, - selectedId: runtimePlugin.id, - selectedKind: runtimePlugin.kind, - registry: mergeRuntimeKinds(report, runtimeReport), - }); - return { config: result.config, warnings: result.warnings }; - } - } - const result = applyExclusiveSlotSelection({ - config, - selectedId: plugin.id, - selectedKind: plugin.kind, - registry: report, - }); - return { config: result.config, warnings: result.warnings }; -} - export function createPluginInstallLogger(runtime: RuntimeEnv = defaultRuntime): { info: (msg: string) => void; warn: (msg: string) => void; diff --git a/src/cli/plugins-install-command.ts b/src/cli/plugins-install-command.ts index 4e47ac73ccc9..fa2d6eb60303 100644 --- a/src/cli/plugins-install-command.ts +++ b/src/cli/plugins-install-command.ts @@ -21,6 +21,14 @@ import { buildClawHubPluginInstallRecordFields } from "../plugins/clawhub-instal import { CLAWHUB_INSTALL_ERROR_CODE, installPluginFromClawHub } from "../plugins/clawhub.js"; import { installPluginFromGitSpec, parseGitPluginSpec } from "../plugins/git-install.js"; import { resolveDefaultPluginExtensionsDir } from "../plugins/install-paths.js"; +import { + persistPluginInstall, + resolveInstallConfigMutationPreflights, + selectInstallMutationWriteOptions, + supportsInstallConfigSingleTopLevelIncludeShape, + type ConfigMutationPreflight, + type ConfigSnapshotForInstallPersist, +} from "../plugins/install-persistence.js"; import type { InstallSafetyOverrides } from "../plugins/install-security-scan.js"; import { PLUGIN_INSTALL_ERROR_CODE, @@ -45,6 +53,7 @@ import { defaultRuntime, type RuntimeEnv } from "../runtime.js"; import { resolveUserPath, shortenHomePath } from "../utils.js"; import { resolveClawHubRiskAcknowledgementCliOptions } from "./clawhub-risk-acknowledgement.js"; import { formatCliCommand } from "./command-format.js"; +import { persistHookPackInstall } from "./hook-install-persistence.js"; import { looksLikeLocalInstallSpec } from "./install-spec.js"; import { resolvePinnedNpmInstallRecordForCli } from "./npm-resolution.js"; import { @@ -65,15 +74,6 @@ import { parseNpmPackPrefixPath, parseNpmPrefixSpec, } from "./plugins-command-helpers.js"; -import { - persistHookPackInstall, - persistPluginInstall, - resolveInstallConfigMutationPreflights, - selectInstallMutationWriteOptions, - supportsInstallConfigSingleTopLevelIncludeShape, - type ConfigMutationPreflight, - type ConfigSnapshotForInstallPersist, -} from "./plugins-install-persist.js"; import { listPersistedBundledPluginRecoveryLocations } from "./plugins-location-bridges.js"; type ConfigSnapshotForInstallExecution = ConfigSnapshotForInstallPersist & { diff --git a/src/cli/plugins-search-command.ts b/src/cli/plugins-search-command.ts index 5aaf4f9370bf..ee633ab59105 100644 --- a/src/cli/plugins-search-command.ts +++ b/src/cli/plugins-search-command.ts @@ -1,12 +1,9 @@ // ClawHub-backed plugin search command; queries installable plugin families and merges scores. import { normalizeOptionalString } from "@openclaw/normalization-core/string-coerce"; import { theme } from "../../packages/terminal-core/src/theme.js"; -import { - searchClawHubPackages, - type ClawHubPackageFamily, - type ClawHubPackageSearchResult, -} from "../infra/clawhub.js"; +import type { ClawHubPackageSearchResult } from "../infra/clawhub.js"; import { formatErrorMessage } from "../infra/errors.js"; +import { searchInstallablePluginPackages } from "../plugins/catalog-search.js"; import { defaultRuntime, writeRuntimeJson, type RuntimeEnv } from "../runtime.js"; /** Options accepted by `openclaw plugins search`. */ @@ -15,47 +12,6 @@ export type PluginsSearchOptions = { limit?: number; }; -const INSTALLABLE_PLUGIN_FAMILIES: ClawHubPackageFamily[] = ["code-plugin", "bundle-plugin"]; - -function clampSearchLimit(limit: number | undefined): number { - if (!Number.isFinite(limit) || !limit || limit <= 0) { - return 20; - } - return Math.min(Math.max(Math.trunc(limit), 1), 100); -} - -function mergePackageSearchResults( - groups: readonly ClawHubPackageSearchResult[][], - limit: number, -): ClawHubPackageSearchResult[] { - const byName = new Map(); - for (const entry of groups.flat()) { - const existing = byName.get(entry.package.name); - if (!existing || entry.score > existing.score) { - byName.set(entry.package.name, entry); - } - } - const selected: ClawHubPackageSearchResult[] = []; - for (const entry of byName.values()) { - let insertAt = selected.length; - for (let index = 0; index < selected.length; index += 1) { - if (entry.score > selected[index].score) { - insertAt = index; - break; - } - } - if (insertAt < limit) { - selected.splice(insertAt, 0, entry); - if (selected.length > limit) { - selected.pop(); - } - } else if (selected.length < limit) { - selected.push(entry); - } - } - return selected; -} - function formatPackageSearchLine(entry: ClawHubPackageSearchResult): string { const pkg = entry.package; const flags = [ @@ -82,18 +38,8 @@ export async function runPluginsSearchCommand( return runtime.exit(1); } - const limit = clampSearchLimit(opts.limit); try { - const groups = await Promise.all( - INSTALLABLE_PLUGIN_FAMILIES.map((family) => - searchClawHubPackages({ - query, - family, - limit, - }), - ), - ); - const results = mergePackageSearchResults(groups, limit); + const results = await searchInstallablePluginPackages({ query, limit: opts.limit }); if (opts.json) { writeRuntimeJson(runtime, { results }); diff --git a/src/cli/plugins-uninstall-command.ts b/src/cli/plugins-uninstall-command.ts index c35ebd4e3d77..1b0bd8f566c9 100644 --- a/src/cli/plugins-uninstall-command.ts +++ b/src/cli/plugins-uninstall-command.ts @@ -52,9 +52,9 @@ export async function runPluginUninstallCommand( UNINSTALL_ACTION_LABELS, } = await import("../plugins/uninstall.js"); const { commitPluginInstallRecordsWithConfig } = - await import("./plugins-install-record-commit.js"); + await import("../plugins/install-record-commit.js"); const { refreshPluginRegistryAfterConfigMutation } = - await import("./plugins-registry-refresh.js"); + await import("../plugins/registry-refresh.js"); const { resolvePluginUninstallId } = await import("./plugins-uninstall-selection.js"); const { PromptInputClosedError, promptYesNo } = await import("./prompt.js"); const snapshot = await tracePluginLifecyclePhaseAsync( diff --git a/src/cli/plugins-update-command.ts b/src/cli/plugins-update-command.ts index 5fe763564dab..6bccde87ad37 100644 --- a/src/cli/plugins-update-command.ts +++ b/src/cli/plugins-update-command.ts @@ -13,11 +13,19 @@ import type { OpenClawConfig } from "../config/types.openclaw.js"; import type { PluginInstallRecord } from "../config/types.plugins.js"; import { updateNpmInstalledHookPacks } from "../hooks/update.js"; import { normalizeUpdateChannel } from "../infra/update-channels.js"; +import { + containsConfigIncludeDirective, + resolveCombinedPluginAndHookConfigMutationPreflight, + resolveInstallConfigMutationPreflights, + selectInstallMutationWriteOptions, +} from "../plugins/install-persistence.js"; +import { commitPluginInstallRecordsWithConfig } from "../plugins/install-record-commit.js"; import { loadInstalledPluginIndexInstallRecords, withoutPluginInstallRecords, withPluginInstallRecords, } from "../plugins/installed-plugin-index-records.js"; +import { refreshPluginRegistryAfterConfigMutation } from "../plugins/registry-refresh.js"; import { isPluginInstallRecordUpdateSource, pluginInstallRecordMayMigrateConfigId, @@ -26,14 +34,6 @@ import { import { defaultRuntime } from "../runtime.js"; import { VERSION } from "../version.js"; import { resolveClawHubRiskAcknowledgementCliOptions } from "./clawhub-risk-acknowledgement.js"; -import { - containsConfigIncludeDirective, - resolveCombinedPluginAndHookConfigMutationPreflight, - resolveInstallConfigMutationPreflights, - selectInstallMutationWriteOptions, -} from "./plugins-install-persist.js"; -import { commitPluginInstallRecordsWithConfig } from "./plugins-install-record-commit.js"; -import { refreshPluginRegistryAfterConfigMutation } from "./plugins-registry-refresh.js"; import { logPluginUpdateOutcomes } from "./plugins-update-outcomes.js"; import { resolveHookPackUpdateSelection, diff --git a/src/cli/update-cli/update-command.ts b/src/cli/update-cli/update-command.ts index 2abd2aa288f2..3add9cef8ce2 100644 --- a/src/cli/update-cli/update-command.ts +++ b/src/cli/update-cli/update-command.ts @@ -121,6 +121,7 @@ import { } from "../../infra/update-runner.js"; import { getWindowsSystem32ExePath } from "../../infra/windows-install-roots.js"; import { normalizePluginsConfig, resolveEffectiveEnableState } from "../../plugins/config-state.js"; +import { commitPluginInstallRecordsWithConfig } from "../../plugins/install-record-commit.js"; import { loadInstalledPluginIndexInstallRecords, writePersistedInstalledPluginIndexInstallRecords, @@ -131,6 +132,7 @@ import { resolveTrustedSourceLinkedOfficialClawHubSpec, resolveTrustedSourceLinkedOfficialNpmSpec, } from "../../plugins/official-external-install-records.js"; +import { refreshPluginRegistryAfterConfigMutation } from "../../plugins/registry-refresh.js"; import { isClawHubTrustSkippedOutcome, syncPluginsForUpdateChannel, @@ -153,9 +155,7 @@ import { waitForGatewayHealthyRestart, type GatewayRestartSnapshot, } from "../daemon-cli/restart-health.js"; -import { commitPluginInstallRecordsWithConfig } from "../plugins-install-record-commit.js"; import { listPersistedBundledPluginLocationBridges } from "../plugins-location-bridges.js"; -import { refreshPluginRegistryAfterConfigMutation } from "../plugins-registry-refresh.js"; import { registerSignalExitBarrier, registerSignalExitGate, diff --git a/src/commands/agents.add.test.ts b/src/commands/agents.add.test.ts index 865c8e45f28d..1fa7e4c1bd47 100644 --- a/src/commands/agents.add.test.ts +++ b/src/commands/agents.add.test.ts @@ -86,9 +86,9 @@ vi.mock("../config/config.js", async () => ({ replaceConfigFile: replaceConfigFileMock, })); -vi.mock("../cli/plugins-install-record-commit.js", async () => ({ - ...(await vi.importActual( - "../cli/plugins-install-record-commit.js", +vi.mock("../plugins/install-record-commit.js", async () => ({ + ...(await vi.importActual( + "../plugins/install-record-commit.js", )), commitConfigWithPendingPluginInstalls: commitConfigWithPendingPluginInstallsMock, transformConfigWithPendingPluginInstalls: transformConfigWithPendingPluginInstallsMock, diff --git a/src/commands/agents.commands.add.ts b/src/commands/agents.commands.add.ts index cc212af7fb47..5955eb2a8635 100644 --- a/src/commands/agents.commands.add.ts +++ b/src/commands/agents.commands.add.ts @@ -18,11 +18,11 @@ import { resolveAuthStorePath } from "../agents/auth-profiles/paths.js"; import { loadPersistedAuthProfileStore } from "../agents/auth-profiles/persisted.js"; import { saveAuthProfileStore } from "../agents/auth-profiles/store.js"; import { formatCliCommand } from "../cli/command-format.js"; +import { logConfigUpdated } from "../config/logging.js"; import { commitConfigWithPendingPluginInstalls, transformConfigWithPendingPluginInstalls, -} from "../cli/plugins-install-record-commit.js"; -import { logConfigUpdated } from "../config/logging.js"; +} from "../plugins/install-record-commit.js"; import { DEFAULT_AGENT_ID, normalizeAgentId } from "../routing/session-key.js"; import { type RuntimeEnv, writeRuntimeJson } from "../runtime.js"; import { defaultRuntime } from "../runtime.js"; diff --git a/src/commands/channels.add.test.ts b/src/commands/channels.add.test.ts index a786658aad66..9d590fa1691d 100644 --- a/src/commands/channels.add.test.ts +++ b/src/commands/channels.add.test.ts @@ -92,9 +92,9 @@ vi.mock("../channels/plugins/bundled.js", async () => { vi.mock("./channel-setup/plugin-install.js", () => pluginInstallMocks); -vi.mock("../cli/plugins-registry-refresh.js", () => registryRefreshMocks); +vi.mock("../plugins/registry-refresh.js", () => registryRefreshMocks); -vi.mock("../cli/plugins-install-record-commit.js", () => pluginInstallRecordCommitMocks); +vi.mock("../plugins/install-record-commit.js", () => pluginInstallRecordCommitMocks); vi.mock("../wizard/clack-prompter.js", () => ({ createClackPrompter: () => channelWizardMocks.prompter, diff --git a/src/commands/channels.remove.test.ts b/src/commands/channels.remove.test.ts index 27f5100f02f2..0142722fbdb8 100644 --- a/src/commands/channels.remove.test.ts +++ b/src/commands/channels.remove.test.ts @@ -59,7 +59,7 @@ vi.mock("./channel-setup/plugin-install.js", async () => { return createMockChannelSetupPluginInstallModule(actual); }); -vi.mock("../cli/plugins-registry-refresh.js", () => registryRefreshMocks); +vi.mock("../plugins/registry-refresh.js", () => registryRefreshMocks); vi.mock("../gateway/call.js", () => ({ callGateway: gatewayMocks.callGateway, diff --git a/src/commands/channels.resolve.test.ts b/src/commands/channels.resolve.test.ts index 7ab123db60d9..5a11b32fd994 100644 --- a/src/commands/channels.resolve.test.ts +++ b/src/commands/channels.resolve.test.ts @@ -34,7 +34,7 @@ vi.mock("../config/config.js", async () => { }; }); -vi.mock("../cli/plugins-registry-refresh.js", () => ({ +vi.mock("../plugins/registry-refresh.js", () => ({ refreshPluginRegistryAfterConfigMutation: mocks.refreshPluginRegistryAfterConfigMutation, })); diff --git a/src/commands/channels/add.ts b/src/commands/channels/add.ts index ffa4e13de1db..a4d9dc73fa71 100644 --- a/src/commands/channels/add.ts +++ b/src/commands/channels/add.ts @@ -13,10 +13,10 @@ import { formatUnknownChannelMessage, formatUnsupportedChannelActionMessage, } from "../../cli/error-format.js"; -import { commitConfigWithPendingPluginInstalls } from "../../cli/plugins-install-record-commit.js"; -import { refreshPluginRegistryAfterConfigMutation } from "../../cli/plugins-registry-refresh.js"; import type { OpenClawConfig } from "../../config/config.js"; import { parseStrictNonNegativeInteger } from "../../infra/parse-finite-number.js"; +import { commitConfigWithPendingPluginInstalls } from "../../plugins/install-record-commit.js"; +import { refreshPluginRegistryAfterConfigMutation } from "../../plugins/registry-refresh.js"; import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "../../routing/session-key.js"; import { defaultRuntime, type RuntimeEnv } from "../../runtime.js"; import { createLazyImportLoader } from "../../shared/lazy-promise.js"; diff --git a/src/commands/channels/capabilities.test.ts b/src/commands/channels/capabilities.test.ts index f905c129e262..4d5f119a727d 100644 --- a/src/commands/channels/capabilities.test.ts +++ b/src/commands/channels/capabilities.test.ts @@ -48,7 +48,7 @@ vi.mock("../../config/config.js", async () => { }; }); -vi.mock("../../cli/plugins-registry-refresh.js", () => ({ +vi.mock("../../plugins/registry-refresh.js", () => ({ refreshPluginRegistryAfterConfigMutation: mocks.refreshPluginRegistryAfterConfigMutation, })); diff --git a/src/commands/channels/plugin-config-persistence.ts b/src/commands/channels/plugin-config-persistence.ts index 5713748d9d1b..59a2fe22007c 100644 --- a/src/commands/channels/plugin-config-persistence.ts +++ b/src/commands/channels/plugin-config-persistence.ts @@ -1,7 +1,7 @@ -import { commitConfigWithPendingPluginInstalls } from "../../cli/plugins-install-record-commit.js"; -import { refreshPluginRegistryAfterConfigMutation } from "../../cli/plugins-registry-refresh.js"; import { replaceConfigFile } from "../../config/config.js"; import type { OpenClawConfig } from "../../config/types.openclaw.js"; +import { commitConfigWithPendingPluginInstalls } from "../../plugins/install-record-commit.js"; +import { refreshPluginRegistryAfterConfigMutation } from "../../plugins/registry-refresh.js"; import type { RuntimeEnv } from "../../runtime.js"; export async function persistResolvedChannelPluginConfig(params: { diff --git a/src/commands/channels/remove.ts b/src/commands/channels/remove.ts index e96e48b1d1a3..170ba6a5159b 100644 --- a/src/commands/channels/remove.ts +++ b/src/commands/channels/remove.ts @@ -9,11 +9,11 @@ import { formatUnknownChannelMessage, formatUnsupportedChannelActionMessage, } from "../../cli/error-format.js"; -import { commitConfigWithPendingPluginInstalls } from "../../cli/plugins-install-record-commit.js"; -import { refreshPluginRegistryAfterConfigMutation } from "../../cli/plugins-registry-refresh.js"; import { replaceConfigFile, type OpenClawConfig } from "../../config/config.js"; import { callGateway } from "../../gateway/call.js"; import { formatErrorMessage } from "../../infra/errors.js"; +import { commitConfigWithPendingPluginInstalls } from "../../plugins/install-record-commit.js"; +import { refreshPluginRegistryAfterConfigMutation } from "../../plugins/registry-refresh.js"; import { DEFAULT_ACCOUNT_ID, normalizeAccountId } from "../../routing/session-key.js"; import { defaultRuntime, type RuntimeEnv } from "../../runtime.js"; import { GATEWAY_CLIENT_MODES, GATEWAY_CLIENT_NAMES } from "../../utils/message-channel.js"; diff --git a/src/commands/configure.wizard.ts b/src/commands/configure.wizard.ts index d11d9ce0ed1e..876c2a1d9155 100644 --- a/src/commands/configure.wizard.ts +++ b/src/commands/configure.wizard.ts @@ -6,7 +6,6 @@ import { note } from "../../packages/terminal-core/src/note.js"; import { describeCodexNativeWebSearch } from "../agents/codex-native-web-search.shared.js"; import { formatCliCommand } from "../cli/command-format.js"; import { formatPortRangeHint } from "../cli/error-format.js"; -import { commitConfigWithPendingPluginInstalls } from "../cli/plugins-install-record-commit.js"; import { parsePort } from "../cli/shared/parse-port.js"; import { createConfigIO, @@ -18,6 +17,7 @@ import { ConfigMutationConflictError } from "../config/mutate.js"; import type { OpenClawConfig } from "../config/types.openclaw.js"; import { ensureControlUiAssetsBuilt } from "../infra/control-ui-assets.js"; import { formatWindowsGatewayFirewallGuidance } from "../infra/windows-gateway-firewall-diagnostics.js"; +import { commitConfigWithPendingPluginInstalls } from "../plugins/install-record-commit.js"; import { resolvePluginContributionOwners } from "../plugins/plugin-registry.js"; import type { RuntimeEnv } from "../runtime.js"; import { defaultRuntime } from "../runtime.js"; diff --git a/src/commands/onboard-non-interactive/config-write.ts b/src/commands/onboard-non-interactive/config-write.ts index 1e79c29fbcd0..8c0cc8844588 100644 --- a/src/commands/onboard-non-interactive/config-write.ts +++ b/src/commands/onboard-non-interactive/config-write.ts @@ -1,3 +1,5 @@ +import { replaceConfigFile } from "../../config/config.js"; +import type { OpenClawConfig } from "../../config/types.openclaw.js"; /** * Config write commit helper for non-interactive onboarding. * @@ -9,9 +11,7 @@ import { hasPendingPluginInstallRecords, stripPendingPluginInstallRecords, unchangedPendingPluginInstallRecordIds, -} from "../../cli/plugins-install-record-commit.js"; -import { replaceConfigFile } from "../../config/config.js"; -import type { OpenClawConfig } from "../../config/types.openclaw.js"; +} from "../../plugins/install-record-commit.js"; /** Commits a non-interactive onboard config update with pending plugin records handled first. */ export async function commitNonInteractiveOnboardConfig(params: { diff --git a/src/commands/onboarding-plugin-install.test.ts b/src/commands/onboarding-plugin-install.test.ts index 8994ea9a09b2..001b55af3871 100644 --- a/src/commands/onboarding-plugin-install.test.ts +++ b/src/commands/onboarding-plugin-install.test.ts @@ -26,7 +26,7 @@ vi.mock("../cli/plugin-install-plan.js", () => ({ const invalidatePluginRuntimeDiscoveryAfterConfigMutation = vi.hoisted(() => vi.fn(async () => undefined), ); -vi.mock("../cli/plugins-registry-refresh.js", () => ({ +vi.mock("../plugins/registry-refresh.js", () => ({ invalidatePluginRuntimeDiscoveryAfterConfigMutation, })); diff --git a/src/commands/onboarding-plugin-install.ts b/src/commands/onboarding-plugin-install.ts index f24277ba3bba..b603b76c34e1 100644 --- a/src/commands/onboarding-plugin-install.ts +++ b/src/commands/onboarding-plugin-install.ts @@ -10,7 +10,6 @@ import { uniqueStrings } from "@openclaw/normalization-core/string-normalization import { truncateUtf16Safe } from "@openclaw/normalization-core/utf16-slice"; import { sanitizeTerminalText } from "../../packages/terminal-core/src/safe-text.js"; import { resolveBundledInstallPlanForCatalogEntry } from "../cli/plugin-install-plan.js"; -import { invalidatePluginRuntimeDiscoveryAfterConfigMutation } from "../cli/plugins-registry-refresh.js"; import { assertConfigWriteAllowedInCurrentMode } from "../config/nix-mode-write-guard.js"; import type { OpenClawConfig } from "../config/types.openclaw.js"; import { parseClawHubPluginSpec } from "../infra/clawhub-spec.js"; @@ -50,6 +49,7 @@ import { } from "../plugins/installs.js"; import type { PluginPackageInstall } from "../plugins/manifest.js"; import { clearPluginMetadataLifecycleCaches } from "../plugins/plugin-metadata-lifecycle.js"; +import { invalidatePluginRuntimeDiscoveryAfterConfigMutation } from "../plugins/registry-refresh.js"; import type { RuntimeEnv } from "../runtime.js"; import { withTimeout } from "../utils/with-timeout.js"; import { VERSION } from "../version.js"; diff --git a/src/crestodian/model-setup.test.ts b/src/crestodian/model-setup.test.ts index e71c14b383ed..0140fb6d2c1c 100644 --- a/src/crestodian/model-setup.test.ts +++ b/src/crestodian/model-setup.test.ts @@ -55,7 +55,7 @@ vi.mock("./audit.js", () => ({ appendCrestodianAuditEntry: mocks.appendAudit, })); -vi.mock("../cli/plugins-install-record-commit.js", () => ({ +vi.mock("../plugins/install-record-commit.js", () => ({ transformConfigWithPendingPluginInstalls: mocks.commitConfig, })); diff --git a/src/crestodian/model-setup.ts b/src/crestodian/model-setup.ts index c6a08b0aec61..7cd0d11a8c78 100644 --- a/src/crestodian/model-setup.ts +++ b/src/crestodian/model-setup.ts @@ -1,6 +1,6 @@ -// Crestodian model setup reuses the onboarding provider/auth step and config writer. -import { transformConfigWithPendingPluginInstalls } from "../cli/plugins-install-record-commit.js"; import { resolveAgentModelPrimaryValue } from "../config/model-input.js"; +// Crestodian model setup reuses the onboarding provider/auth step and config writer. +import { transformConfigWithPendingPluginInstalls } from "../plugins/install-record-commit.js"; import type { RuntimeEnv } from "../runtime.js"; import { resolveUserPath } from "../utils.js"; import type { WizardPrompter } from "../wizard/prompts.js"; diff --git a/src/crestodian/setup-inference.ts b/src/crestodian/setup-inference.ts index afe9daf161fa..9e03be0292f5 100644 --- a/src/crestodian/setup-inference.ts +++ b/src/crestodian/setup-inference.ts @@ -124,9 +124,9 @@ export type ActivateSetupInferenceDeps = { runCliAgent?: typeof import("../agents/cli-runner.js").runCliAgent; applySetup?: typeof applyCrestodianSetup; ensureCodexRuntimePlugin?: typeof import("../commands/codex-runtime-plugin-install.js").ensureCodexRuntimePluginForModelSelection; - transformConfigWithPendingPluginInstalls?: typeof import("../cli/plugins-install-record-commit.js").transformConfigWithPendingPluginInstalls; + transformConfigWithPendingPluginInstalls?: typeof import("../plugins/install-record-commit.js").transformConfigWithPendingPluginInstalls; updateConfig?: typeof import("../commands/models/shared.js").updateConfig; - refreshPluginRegistryAfterConfigMutation?: typeof import("../cli/plugins-registry-refresh.js").refreshPluginRegistryAfterConfigMutation; + refreshPluginRegistryAfterConfigMutation?: typeof import("../plugins/registry-refresh.js").refreshPluginRegistryAfterConfigMutation; resolvePluginProviders?: typeof resolvePluginProviders; resolveManifestProviderAuthChoice?: typeof resolveManifestProviderAuthChoice; enablePluginInConfig?: typeof enablePluginInConfig; @@ -641,7 +641,7 @@ async function activateSetupInferenceUnredacted( let codexPluginPatch: unknown; if (params.kind === "codex-cli") { const { stripPendingPluginInstallRecords } = - await import("../cli/plugins-install-record-commit.js"); + await import("../plugins/install-record-commit.js"); // This explicit Codex CLI choice owns its runtime independently of the // user's existing OpenAI provider route (which may use a custom base URL). const codexInstallBase = stripPendingPluginInstallRecords(testPlan.config); @@ -683,7 +683,7 @@ async function activateSetupInferenceUnredacted( // failed or abandoned live probe cannot leave an untracked install behind. const transformConfig = deps.transformConfigWithPendingPluginInstalls ?? - (await import("../cli/plugins-install-record-commit.js")) + (await import("../plugins/install-record-commit.js")) .transformConfigWithPendingPluginInstalls; await transformConfig({ afterWrite: { @@ -744,10 +744,10 @@ async function activateSetupInferenceUnredacted( // Persist success-gated enablement and the model-scoped runtime pin. The managed // install record was committed before the live probe. const { stripPendingPluginInstallRecords } = - await import("../cli/plugins-install-record-commit.js"); + await import("../plugins/install-record-commit.js"); const transformConfig = deps.transformConfigWithPendingPluginInstalls ?? - (await import("../cli/plugins-install-record-commit.js")) + (await import("../plugins/install-record-commit.js")) .transformConfigWithPendingPluginInstalls; const committed = await transformConfig({ // Keep the setup RPC alive until the final model/setup write completes. The explicit @@ -762,8 +762,7 @@ async function activateSetupInferenceUnredacted( }); const refreshPluginRegistry = deps.refreshPluginRegistryAfterConfigMutation ?? - (await import("../cli/plugins-registry-refresh.js")) - .refreshPluginRegistryAfterConfigMutation; + (await import("../plugins/registry-refresh.js")).refreshPluginRegistryAfterConfigMutation; await refreshPluginRegistry({ config: committed.nextConfig, reason: "source-changed", diff --git a/src/gateway/control-ui-routing.test.ts b/src/gateway/control-ui-routing.test.ts index fc309d0fa745..492b2eecad45 100644 --- a/src/gateway/control-ui-routing.test.ts +++ b/src/gateway/control-ui-routing.test.ts @@ -2,7 +2,24 @@ * Control UI gateway routing tests. */ import { describe, expect, it } from "vitest"; -import { classifyControlUiRequest } from "./control-ui-routing.js"; +import { classifyControlUiRequest, isControlUiPluginManagerRequest } from "./control-ui-routing.js"; + +describe("isControlUiPluginManagerRequest", () => { + it.each([ + { basePath: "", pathname: "/settings/plugins", method: "GET", expected: true }, + { basePath: "", pathname: "/settings/plugins/", method: "HEAD", expected: true }, + { + basePath: "/openclaw", + pathname: "/openclaw/settings/plugins", + method: "GET", + expected: true, + }, + { basePath: "", pathname: "/settings/plugins", method: "POST", expected: false }, + { basePath: "", pathname: "/plugins", method: "GET", expected: false }, + ])("classifies $method $pathname", ({ basePath, pathname, method, expected }) => { + expect(isControlUiPluginManagerRequest({ basePath, pathname, method })).toBe(expected); + }); +}); describe("classifyControlUiRequest", () => { describe("root-mounted control ui", () => { @@ -19,6 +36,12 @@ describe("classifyControlUiRequest", () => { method: "HEAD", expected: { kind: "serve" as const }, }, + { + name: "serves the plugin manager without claiming plugin HTTP routes", + pathname: "/settings/plugins", + method: "GET", + expected: { kind: "serve" as const }, + }, { name: "keeps health probes outside the SPA catch-all", pathname: "/healthz", @@ -37,6 +60,12 @@ describe("classifyControlUiRequest", () => { method: "GET", expected: { kind: "not-control-ui" as const }, }, + { + name: "keeps the plugin HTTP root outside the SPA catch-all", + pathname: "/plugins", + method: "GET", + expected: { kind: "not-control-ui" as const }, + }, { name: "keeps API routes outside the SPA catch-all", pathname: "/api/sessions", diff --git a/src/gateway/control-ui-routing.ts b/src/gateway/control-ui-routing.ts index f80eb62d79ec..e734de92e19c 100644 --- a/src/gateway/control-ui-routing.ts +++ b/src/gateway/control-ui-routing.ts @@ -8,6 +8,20 @@ type ControlUiRequestClassification = | { kind: "serve" }; const ROOT_MOUNTED_GATEWAY_PROBE_PATHS = new Set(["/health", "/healthz", "/ready", "/readyz"]); +const CONTROL_UI_PLUGIN_MANAGER_PATH = "/settings/plugins"; + +/** Keep the plugin recovery surface ahead of plugin-owned HTTP routes. */ +export function isControlUiPluginManagerRequest(params: { + basePath: string; + pathname: string; + method: string | undefined; +}): boolean { + if (!isReadHttpMethod(params.method)) { + return false; + } + const path = `${params.basePath}${CONTROL_UI_PLUGIN_MANAGER_PATH}`; + return params.pathname === path || params.pathname === `${path}/`; +} /** Classify an HTTP request as Control UI serving, redirect, 404, or non-Control-UI. */ export function classifyControlUiRequest(params: { diff --git a/src/gateway/methods/core-descriptors.ts b/src/gateway/methods/core-descriptors.ts index 2c844bd68d90..f5f07eb3b98c 100644 --- a/src/gateway/methods/core-descriptors.ts +++ b/src/gateway/methods/core-descriptors.ts @@ -273,6 +273,11 @@ export const CORE_GATEWAY_METHOD_SPECS: readonly CoreGatewayMethodSpec[] = [ { name: "agents.workspace.list", scope: "operator.read" }, { name: "agents.workspace.get", scope: "operator.read" }, { name: "tts.speak", scope: "operator.write" }, + { name: "plugins.list", scope: "operator.read" }, + { name: "plugins.search", scope: "operator.read" }, + { name: "plugins.install", scope: "operator.admin", controlPlaneWrite: true }, + { name: "plugins.setEnabled", scope: "operator.admin", controlPlaneWrite: true }, + { name: "plugins.uninstall", scope: "operator.admin", controlPlaneWrite: true }, ] as const; const CORE_GATEWAY_METHOD_SPEC_BY_NAME: ReadonlyMap = new Map( diff --git a/src/gateway/methods/plugins-descriptors.test.ts b/src/gateway/methods/plugins-descriptors.test.ts new file mode 100644 index 000000000000..a3b0e1f626be --- /dev/null +++ b/src/gateway/methods/plugins-descriptors.test.ts @@ -0,0 +1,34 @@ +// Plugin management descriptor tests keep read/admin scopes and write budgets explicit. +import { describe, expect, it } from "vitest"; +import type { GatewayRequestHandler } from "../server-methods/types.js"; +import { createCoreGatewayMethodDescriptors } from "./core-descriptors.js"; + +const handler: GatewayRequestHandler = ({ respond }) => respond(true, { ok: true }); + +describe("plugin management gateway descriptors", () => { + it("keeps catalog reads separate from control-plane mutations", () => { + const descriptors = createCoreGatewayMethodDescriptors({ + "plugins.list": handler, + "plugins.search": handler, + "plugins.install": handler, + "plugins.setEnabled": handler, + "plugins.uninstall": handler, + }); + const byName = new Map(descriptors.map((descriptor) => [descriptor.name, descriptor])); + + expect(byName.get("plugins.list")?.scope).toBe("operator.read"); + expect(byName.get("plugins.search")?.scope).toBe("operator.read"); + expect(byName.get("plugins.install")).toMatchObject({ + scope: "operator.admin", + controlPlaneWrite: true, + }); + expect(byName.get("plugins.setEnabled")).toMatchObject({ + scope: "operator.admin", + controlPlaneWrite: true, + }); + expect(byName.get("plugins.uninstall")).toMatchObject({ + scope: "operator.admin", + controlPlaneWrite: true, + }); + }); +}); diff --git a/src/gateway/server-http.ts b/src/gateway/server-http.ts index 61b4f6bfb437..40371eabebb8 100644 --- a/src/gateway/server-http.ts +++ b/src/gateway/server-http.ts @@ -25,6 +25,7 @@ import { type GatewayAuthResult, type ResolvedGatewayAuth, } from "./auth.js"; +import { isControlUiPluginManagerRequest } from "./control-ui-routing.js"; import type { ControlUiRootState } from "./control-ui.js"; import type { AuthorizedGatewayHttpRequest } from "./http-auth-utils.js"; import { sendGatewayAuthFailure, setDefaultSecurityHeaders } from "./http-common.js"; @@ -685,9 +686,36 @@ export function createGatewayHttpServer(opts: { }, }); } - // Plugin routes run before the Control UI SPA catch-all so explicitly - // registered plugin endpoints stay reachable. Core built-in gateway - // routes above still keep precedence on overlapping paths. + if ( + controlUiEnabled && + isControlUiPluginManagerRequest({ + basePath: controlUiBasePath, + pathname: scopedRequestPath, + method: req.method, + }) + ) { + // This page must remain reachable when a plugin route is broken so the + // operator can disable it. Other explicit plugin routes retain precedence. + requestStages.push({ + name: "control-ui-plugin-manager", + run: async () => + (await getControlUiModule()).handleControlUiHttpRequest(req, res, { + basePath: controlUiBasePath, + config: configSnapshot, + terminalEnabled: + opts.isTerminalEnabled?.() ?? configSnapshot.gateway?.terminal?.enabled === true, + agentId: resolveAssistantIdentity({ cfg: configSnapshot }).agentId, + root: controlUiRoot, + auth: resolvedAuthValue, + trustedProxies, + allowRealIpFallback, + rateLimiter, + }), + }); + } + // Plugin routes run before the general Control UI SPA catch-all so + // explicitly registered endpoints stay reachable. Core routes and the + // plugin recovery surface staged above keep precedence. requestStages.push( ...buildPluginRequestStages({ req, diff --git a/src/gateway/server-methods.ts b/src/gateway/server-methods.ts index 6568a5a7bd0d..990d3b6192a5 100644 --- a/src/gateway/server-methods.ts +++ b/src/gateway/server-methods.ts @@ -178,6 +178,10 @@ const loadPluginHostHookHandlers = lazyHandlerModule( () => import("./server-methods/plugin-host-hooks.js"), (module) => module.pluginHostHookHandlers, ); +const loadPluginsHandlers = lazyHandlerModule( + () => import("./server-methods/plugins.js"), + (module) => module.pluginsHandlers, +); const loadPushHandlers = lazyHandlerModule( () => import("./server-methods/push.js"), (module) => module.pushHandlers, @@ -453,6 +457,16 @@ export const coreGatewayHandlers: GatewayRequestHandlers = { methods: ["plugins.uiDescriptors", "plugins.sessionAction"], loadHandlers: loadPluginHostHookHandlers, }), + ...createLazyCoreHandlers({ + methods: [ + "plugins.list", + "plugins.search", + "plugins.install", + "plugins.setEnabled", + "plugins.uninstall", + ], + loadHandlers: loadPluginsHandlers, + }), ...createLazyCoreHandlers({ methods: [ "config.get", diff --git a/src/gateway/server-methods/plugins.test.ts b/src/gateway/server-methods/plugins.test.ts new file mode 100644 index 000000000000..8bb07ec681bb --- /dev/null +++ b/src/gateway/server-methods/plugins.test.ts @@ -0,0 +1,382 @@ +// Plugin management Gateway handler tests cover DTO mapping, trust errors, and reload planning. +import { beforeEach, describe, expect, it, vi } from "vitest"; + +const managementMocks = vi.hoisted(() => { + class ManagedPluginLifecycleError extends Error { + readonly kind: "invalid-request" | "unavailable"; + readonly code?: string; + readonly version?: string; + readonly warning?: string; + + constructor( + message: string, + details?: { + kind?: "invalid-request" | "unavailable"; + code?: string; + version?: string; + warning?: string; + }, + ) { + super(message); + this.kind = details?.kind ?? "invalid-request"; + this.code = details?.code; + this.version = details?.version; + this.warning = details?.warning; + } + } + return { + ManagedPluginLifecycleError, + install: vi.fn(), + list: vi.fn(), + setEnabled: vi.fn(), + uninstall: vi.fn(), + }; +}); +const searchMock = vi.hoisted(() => vi.fn()); + +vi.mock("../../plugins/management-service.js", () => ({ + ManagedPluginLifecycleError: managementMocks.ManagedPluginLifecycleError, + formatManagedPluginLifecycleError: (error: unknown) => + error instanceof Error ? error.message : String(error), + installManagedPlugin: (...args: unknown[]) => managementMocks.install(...args), + listManagedPlugins: (...args: unknown[]) => managementMocks.list(...args), + setManagedPluginEnabled: (...args: unknown[]) => managementMocks.setEnabled(...args), + uninstallManagedPlugin: (...args: unknown[]) => managementMocks.uninstall(...args), +})); + +vi.mock("../../plugins/catalog-search.js", () => ({ + searchInstallablePluginPackages: (...args: unknown[]) => searchMock(...args), +})); + +const { pluginsHandlers } = await import("./plugins.js"); + +async function callHandler( + method: string, + params: Record, + runtimeConfig: Record = {}, +) { + let ok: boolean | null = null; + let response: unknown; + let error: unknown; + await pluginsHandlers[method]({ + params, + req: {} as never, + client: null as never, + isWebchatConnect: () => false, + context: { getRuntimeConfig: () => runtimeConfig } as never, + respond: (success, result, requestError) => { + ok = success; + response = result; + error = requestError; + }, + }); + return { ok, response, error }; +} + +const workboard = { + id: "workboard", + name: "Workboard", + installed: true, + enabled: false, + state: "disabled" as const, + featured: true, + order: 10, +}; + +describe("plugin management Gateway handlers", () => { + beforeEach(() => { + managementMocks.install.mockReset(); + managementMocks.list.mockReset(); + managementMocks.setEnabled.mockReset(); + managementMocks.uninstall.mockReset(); + searchMock.mockReset(); + }); + + it("returns cold Workboard inventory without claiming runtime loaded state", async () => { + managementMocks.list.mockResolvedValue({ + plugins: [workboard], + diagnostics: [], + mutationAllowed: true, + }); + + const result = await callHandler("plugins.list", {}); + + expect(result).toEqual({ + ok: true, + response: { plugins: [workboard], diagnostics: [], mutationAllowed: true }, + error: undefined, + }); + }); + + it("maps plugin-only ClawHub search results to the public DTO", async () => { + searchMock.mockResolvedValue([ + { + score: 0.91, + package: { + name: "@openclaw/diffs", + displayName: "Diffs", + family: "code-plugin", + channel: "official", + isOfficial: true, + summary: "Readable diffs", + latestVersion: "1.2.3", + runtimeId: "diffs", + ownerHandle: "openclaw", + verificationTier: "source-linked", + stats: { downloads: 149263, installs: 280, stars: 0, versions: 83 }, + }, + }, + ]); + + const result = await callHandler("plugins.search", { query: "diff", limit: 12 }); + + expect(searchMock).toHaveBeenCalledWith({ query: "diff", limit: 12 }); + expect(result.response).toEqual({ + results: [ + { + score: 0.91, + package: { + name: "@openclaw/diffs", + displayName: "Diffs", + family: "code-plugin", + channel: "official", + isOfficial: true, + summary: "Readable diffs", + latestVersion: "1.2.3", + runtimeId: "diffs", + downloads: 149263, + verificationTier: "source-linked", + }, + }, + ], + }); + }); + + it("omits malformed ClawHub download stats from the public DTO", async () => { + searchMock.mockResolvedValue([ + { + score: 0.5, + package: { + name: "community/demo", + displayName: "Demo", + family: "code-plugin", + channel: "community", + isOfficial: false, + stats: { downloads: Number.NaN }, + }, + }, + ]); + + const result = await callHandler("plugins.search", { query: "demo" }); + + expect(result.response).toEqual({ + results: [ + { + score: 0.5, + package: { + name: "community/demo", + displayName: "Demo", + family: "code-plugin", + channel: "community", + isOfficial: false, + }, + }, + ], + }); + }); + + it("derives Workboard restart state from its exact config path", async () => { + managementMocks.setEnabled.mockResolvedValue({ + plugin: { ...workboard, enabled: true, state: "enabled" }, + changedPaths: ["plugins.entries.workboard.enabled"], + warnings: ['Exclusive slot "memory" switched to "workboard".'], + }); + + const result = await callHandler("plugins.setEnabled", { + pluginId: "workboard", + enabled: true, + }); + + expect(managementMocks.setEnabled).toHaveBeenCalledWith({ + pluginId: "workboard", + enabled: true, + }); + expect(result.response).toMatchObject({ + ok: true, + restartRequired: false, + warnings: ['Exclusive slot "memory" switched to "workboard".'], + }); + }); + + it.each([ + { mode: "off", restartRequired: true }, + { mode: "restart", restartRequired: true }, + { mode: "hot", restartRequired: false }, + ] as const)( + "reports restartRequired=$restartRequired for $mode reload mode", + async ({ mode, restartRequired }) => { + managementMocks.setEnabled.mockResolvedValue({ + plugin: { ...workboard, enabled: true, state: "enabled" }, + changedPaths: ["plugins.entries.workboard.enabled"], + }); + + const result = await callHandler( + "plugins.setEnabled", + { pluginId: "workboard", enabled: true }, + { gateway: { reload: { mode } } }, + ); + + expect(result.response).toMatchObject({ ok: true, restartRequired }); + }, + ); + + it("classifies known enablement policy failures as invalid requests", async () => { + managementMocks.setEnabled.mockRejectedValue( + new managementMocks.ManagedPluginLifecycleError("Plugin is blocked"), + ); + + const result = await callHandler("plugins.setEnabled", { + pluginId: "workboard", + enabled: true, + }); + + expect(result.error).toMatchObject({ + code: "INVALID_REQUEST", + message: "Plugin is blocked", + }); + }); + + it("classifies unexpected enablement persistence failures as unavailable", async () => { + managementMocks.setEnabled.mockRejectedValue(new Error("rename EACCES")); + + const result = await callHandler("plugins.setEnabled", { + pluginId: "workboard", + enabled: true, + }); + + expect(result.error).toMatchObject({ + code: "UNAVAILABLE", + message: "rename EACCES", + }); + }); + + it("forwards explicit ClawHub risk acknowledgement", async () => { + managementMocks.install.mockResolvedValue({ + plugin: { ...workboard, id: "diffs", name: "Diffs", enabled: true, state: "enabled" }, + }); + + await callHandler("plugins.install", { + source: "clawhub", + packageName: "@openclaw/diffs", + version: "1.2.3", + acknowledgeClawHubRisk: true, + }); + + expect(managementMocks.install).toHaveBeenCalledWith({ + request: { + source: "clawhub", + packageName: "@openclaw/diffs", + version: "1.2.3", + acknowledgeClawHubRisk: true, + }, + }); + }); + + it("returns structured ClawHub acknowledgement details", async () => { + managementMocks.install.mockRejectedValue( + new managementMocks.ManagedPluginLifecycleError("Review required", { + kind: "invalid-request", + code: "clawhub_risk_acknowledgement_required", + version: "1.2.3", + warning: "Suspicious release", + }), + ); + + const result = await callHandler("plugins.install", { + source: "clawhub", + packageName: "community/plugin", + }); + + expect(result.ok).toBe(false); + expect(result.error).toMatchObject({ + code: "INVALID_REQUEST", + message: "Review required", + details: { + clawhubTrustCode: "clawhub_risk_acknowledgement_required", + version: "1.2.3", + warning: "Suspicious release", + }, + }); + }); + + it("classifies ClawHub security outages as unavailable", async () => { + managementMocks.install.mockRejectedValue( + new managementMocks.ManagedPluginLifecycleError("Security service unavailable", { + kind: "unavailable", + code: "clawhub_security_unavailable", + }), + ); + + const result = await callHandler("plugins.install", { + source: "clawhub", + packageName: "community/plugin", + }); + + expect(result.error).toMatchObject({ + code: "UNAVAILABLE", + details: { clawhubTrustCode: "clawhub_security_unavailable" }, + }); + }); + + it("classifies unexpected install persistence failures as unavailable", async () => { + managementMocks.install.mockRejectedValue(new Error("disk full")); + + const result = await callHandler("plugins.install", { + source: "clawhub", + packageName: "community/plugin", + }); + + expect(result.error).toMatchObject({ + code: "UNAVAILABLE", + message: "disk full", + }); + }); + + it("returns removal actions and forces restart after uninstall", async () => { + managementMocks.uninstall.mockResolvedValue({ + pluginId: "diffs", + removed: ["config entry", "install record", "directory"], + warnings: ["npm prune skipped"], + }); + + const result = await callHandler("plugins.uninstall", { pluginId: "diffs" }); + + expect(managementMocks.uninstall).toHaveBeenCalledWith({ pluginId: "diffs" }); + expect(result).toEqual({ + ok: true, + response: { + ok: true, + pluginId: "diffs", + restartRequired: true, + removed: ["config entry", "install record", "directory"], + warnings: ["npm prune skipped"], + }, + error: undefined, + }); + }); + + it("classifies bundled uninstall refusals as invalid requests", async () => { + managementMocks.uninstall.mockRejectedValue( + new managementMocks.ManagedPluginLifecycleError( + "bundled plugin cannot be uninstalled: workboard; disable it instead", + ), + ); + + const result = await callHandler("plugins.uninstall", { pluginId: "workboard" }); + + expect(result.error).toMatchObject({ + code: "INVALID_REQUEST", + message: "bundled plugin cannot be uninstalled: workboard; disable it instead", + }); + }); +}); diff --git a/src/gateway/server-methods/plugins.ts b/src/gateway/server-methods/plugins.ts new file mode 100644 index 000000000000..42942e96cbe5 --- /dev/null +++ b/src/gateway/server-methods/plugins.ts @@ -0,0 +1,219 @@ +// Gateway control-plane handlers for cold plugin catalog and lifecycle operations. +import { + buildClawHubTrustErrorDetails, + ErrorCodes, + errorShape, + isClawHubTrustErrorCode, + validatePluginsInstallParams, + validatePluginsListParams, + validatePluginsSearchParams, + validatePluginsSetEnabledParams, + validatePluginsUninstallParams, +} from "../../../packages/gateway-protocol/src/index.js"; +import type { OpenClawConfig } from "../../config/types.openclaw.js"; +import { searchInstallablePluginPackages } from "../../plugins/catalog-search.js"; +import { + formatManagedPluginLifecycleError, + installManagedPlugin, + listManagedPlugins, + ManagedPluginLifecycleError, + setManagedPluginEnabled, + uninstallManagedPlugin, +} from "../../plugins/management-service.js"; +import { buildGatewayReloadPlan } from "../config-reload-plan.js"; +import { resolveGatewayReloadSettings } from "../config-reload-settings.js"; +import type { GatewayRequestHandlers } from "./types.js"; +import { assertValidParams } from "./validation.js"; + +function pluginPolicyRestartRequired(params: { + config: OpenClawConfig; + changedPaths: readonly string[]; +}): boolean { + const plan = buildGatewayReloadPlan([...params.changedPaths]); + const mode = resolveGatewayReloadSettings(params.config).mode; + return plan.restartGateway || mode === "off" || mode === "restart"; +} + +/** Gateway handlers for plugin inventory, ClawHub search, install, and policy state. */ +export const pluginsHandlers: GatewayRequestHandlers = { + "plugins.list": async ({ params, respond, context }) => { + if (!assertValidParams(params, validatePluginsListParams, "plugins.list", respond)) { + return; + } + try { + respond(true, await listManagedPlugins({ config: context.getRuntimeConfig() }), undefined); + } catch (error) { + respond( + false, + undefined, + errorShape(ErrorCodes.UNAVAILABLE, formatManagedPluginLifecycleError(error)), + ); + } + }, + "plugins.search": async ({ params, respond }) => { + if (!assertValidParams(params, validatePluginsSearchParams, "plugins.search", respond)) { + return; + } + try { + const results = await searchInstallablePluginPackages({ + query: params.query, + limit: params.limit, + }); + respond( + true, + { + results: results.flatMap((entry) => { + if ( + entry.package.family !== "code-plugin" && + entry.package.family !== "bundle-plugin" + ) { + return []; + } + const downloads = entry.package.stats?.downloads; + return [ + { + score: entry.score, + package: { + name: entry.package.name, + displayName: entry.package.displayName, + family: entry.package.family, + channel: entry.package.channel, + isOfficial: entry.package.isOfficial, + ...(entry.package.summary ? { summary: entry.package.summary } : {}), + ...(entry.package.latestVersion + ? { latestVersion: entry.package.latestVersion } + : {}), + ...(entry.package.runtimeId ? { runtimeId: entry.package.runtimeId } : {}), + ...(typeof downloads === "number" && Number.isFinite(downloads) && downloads >= 0 + ? { downloads } + : {}), + ...(entry.package.verificationTier + ? { verificationTier: entry.package.verificationTier } + : {}), + }, + }, + ]; + }), + }, + undefined, + ); + } catch (error) { + respond( + false, + undefined, + errorShape(ErrorCodes.UNAVAILABLE, formatManagedPluginLifecycleError(error)), + ); + } + }, + "plugins.install": async ({ params, respond }) => { + if (!assertValidParams(params, validatePluginsInstallParams, "plugins.install", respond)) { + return; + } + try { + const result = await installManagedPlugin({ request: params }); + respond( + true, + { + ok: true, + plugin: result.plugin, + restartRequired: true, + ...(result.warnings ? { warnings: result.warnings } : {}), + }, + undefined, + ); + } catch (error) { + const lifecycleError = error instanceof ManagedPluginLifecycleError ? error : undefined; + const trustCode = + lifecycleError?.code && isClawHubTrustErrorCode(lifecycleError.code) + ? lifecycleError.code + : undefined; + const details = lifecycleError + ? buildClawHubTrustErrorDetails({ + ...(trustCode ? { code: trustCode } : {}), + ...(lifecycleError.version ? { version: lifecycleError.version } : {}), + ...(lifecycleError.warning ? { warning: lifecycleError.warning } : {}), + }) + : undefined; + respond( + false, + undefined, + errorShape( + lifecycleError?.kind === "invalid-request" + ? ErrorCodes.INVALID_REQUEST + : ErrorCodes.UNAVAILABLE, + formatManagedPluginLifecycleError(error), + details ? { details } : undefined, + ), + ); + } + }, + "plugins.uninstall": async ({ params, respond }) => { + if (!assertValidParams(params, validatePluginsUninstallParams, "plugins.uninstall", respond)) { + return; + } + try { + const result = await uninstallManagedPlugin({ pluginId: params.pluginId }); + respond( + true, + { + ok: true, + pluginId: result.pluginId, + restartRequired: true, + removed: result.removed, + ...(result.warnings ? { warnings: result.warnings } : {}), + }, + undefined, + ); + } catch (error) { + const lifecycleError = error instanceof ManagedPluginLifecycleError ? error : undefined; + respond( + false, + undefined, + errorShape( + lifecycleError?.kind === "invalid-request" + ? ErrorCodes.INVALID_REQUEST + : ErrorCodes.UNAVAILABLE, + formatManagedPluginLifecycleError(error), + ), + ); + } + }, + "plugins.setEnabled": async ({ params, respond, context }) => { + if ( + !assertValidParams(params, validatePluginsSetEnabledParams, "plugins.setEnabled", respond) + ) { + return; + } + try { + const result = await setManagedPluginEnabled({ + pluginId: params.pluginId, + enabled: params.enabled, + }); + respond( + true, + { + ok: true, + plugin: result.plugin, + restartRequired: pluginPolicyRestartRequired({ + config: context.getRuntimeConfig(), + changedPaths: result.changedPaths, + }), + ...(result.warnings ? { warnings: result.warnings } : {}), + }, + undefined, + ); + } catch (error) { + const lifecycleError = error instanceof ManagedPluginLifecycleError ? error : undefined; + respond( + false, + undefined, + errorShape( + lifecycleError?.kind === "invalid-request" + ? ErrorCodes.INVALID_REQUEST + : ErrorCodes.UNAVAILABLE, + formatManagedPluginLifecycleError(error), + ), + ); + } + }, +}; diff --git a/src/gateway/server.plugin-http-auth.test.ts b/src/gateway/server.plugin-http-auth.test.ts index 74ded9890f94..16003b9810d4 100644 --- a/src/gateway/server.plugin-http-auth.test.ts +++ b/src/gateway/server.plugin-http-auth.test.ts @@ -609,6 +609,51 @@ describe("gateway plugin HTTP auth boundary", () => { }); }); + test.each([ + { label: "root-mounted", basePath: "", path: "/settings/plugins" }, + { + label: "base-path-mounted", + basePath: "/openclaw", + path: "/openclaw/settings/plugins", + }, + ])( + "reserves the $label plugin manager GET while preserving writes", + async ({ basePath, path }) => { + const handlePluginRequest = vi.fn(async (req: IncomingMessage, res: ServerResponse) => { + const pathname = new URL(req.url ?? "/", "http://localhost").pathname; + if (pathname !== path) { + return false; + } + res.statusCode = 200; + res.setHeader("Content-Type", "text/plain; charset=utf-8"); + res.end("plugin-handled"); + return true; + }); + + await withGatewayServer({ + prefix: "openclaw-plugin-http-plugin-manager-reserved-test-", + resolvedAuth: AUTH_NONE, + overrides: { + controlUiEnabled: true, + controlUiBasePath: basePath, + controlUiRoot: { kind: "missing" }, + handlePluginRequest, + }, + run: async (server) => { + const read = await sendRequest(server, { path }); + expect(read.res.statusCode).toBe(503); + expect(read.getBody()).toContain("Control UI assets not found"); + expect(handlePluginRequest).not.toHaveBeenCalled(); + + const write = await sendRequest(server, { path, method: "POST" }); + expect(write.res.statusCode).toBe(200); + expect(write.getBody()).toBe("plugin-handled"); + expect(handlePluginRequest).toHaveBeenCalledTimes(1); + }, + }); + }, + ); + test("passes POST webhook routes through root-mounted control ui to plugins", async () => { const handlePluginRequest = vi.fn(async (req: IncomingMessage, res: ServerResponse) => { const pathname = new URL(req.url ?? "/", "http://localhost").pathname; diff --git a/src/infra/clawhub.ts b/src/infra/clawhub.ts index bedb71c755c0..0c8f92daecdd 100644 --- a/src/infra/clawhub.ts +++ b/src/infra/clawhub.ts @@ -177,6 +177,12 @@ export type ClawHubPackageListItem = { capabilityTags?: string[]; executesCode?: boolean; verificationTier?: string | null; + stats?: { + downloads?: number; + installs?: number; + stars?: number; + versions?: number; + } | null; clawpackAvailable?: boolean; hostTargetKeys?: string[]; environmentFlags?: string[]; diff --git a/src/plugins/catalog-search.test.ts b/src/plugins/catalog-search.test.ts new file mode 100644 index 000000000000..dedd296005f5 --- /dev/null +++ b/src/plugins/catalog-search.test.ts @@ -0,0 +1,80 @@ +// Plugin catalog search tests cover family queries, score merging, and bounded results. +import { beforeEach, describe, expect, it, vi } from "vitest"; + +const mocks = vi.hoisted(() => ({ + searchClawHubPackages: vi.fn(), +})); + +vi.mock("../infra/clawhub.js", () => ({ + searchClawHubPackages: mocks.searchClawHubPackages, +})); + +const { searchInstallablePluginPackages } = await import("./catalog-search.js"); + +function searchResult(name: string, family: "code-plugin" | "bundle-plugin", score: number) { + return { + score, + package: { + name, + displayName: name, + family, + channel: "community" as const, + isOfficial: false, + createdAt: 1, + updatedAt: 1, + }, + }; +} + +describe("plugin catalog search", () => { + beforeEach(() => { + mocks.searchClawHubPackages.mockReset(); + }); + + it("queries both installable families and merges duplicate packages by best score", async () => { + mocks.searchClawHubPackages + .mockResolvedValueOnce([ + searchResult("shared", "code-plugin", 4), + searchResult("code-only", "code-plugin", 8), + ]) + .mockResolvedValueOnce([ + searchResult("shared", "bundle-plugin", 9), + searchResult("bundle-only", "bundle-plugin", 6), + ]); + + const results = await searchInstallablePluginPackages({ query: "calendar", limit: 2 }); + + expect(mocks.searchClawHubPackages).toHaveBeenNthCalledWith(1, { + query: "calendar", + family: "code-plugin", + limit: 2, + }); + expect(mocks.searchClawHubPackages).toHaveBeenNthCalledWith(2, { + query: "calendar", + family: "bundle-plugin", + limit: 2, + }); + expect(results.map((entry) => [entry.package.name, entry.score])).toEqual([ + ["shared", 9], + ["code-only", 8], + ]); + expect(results[0]?.package.family).toBe("bundle-plugin"); + }); + + it("uses the default limit for invalid programmatic values", async () => { + mocks.searchClawHubPackages.mockResolvedValueOnce([]).mockResolvedValueOnce([]); + + await searchInstallablePluginPackages({ query: "calendar", limit: Number.NaN }); + + expect(mocks.searchClawHubPackages).toHaveBeenCalledWith({ + query: "calendar", + family: "code-plugin", + limit: 20, + }); + expect(mocks.searchClawHubPackages).toHaveBeenCalledWith({ + query: "calendar", + family: "bundle-plugin", + limit: 20, + }); + }); +}); diff --git a/src/plugins/catalog-search.ts b/src/plugins/catalog-search.ts new file mode 100644 index 000000000000..c7cc840a525a --- /dev/null +++ b/src/plugins/catalog-search.ts @@ -0,0 +1,57 @@ +// ClawHub-backed discovery for installable plugin package families. +import { + searchClawHubPackages, + type ClawHubPackageFamily, + type ClawHubPackageSearchResult, +} from "../infra/clawhub.js"; + +const INSTALLABLE_PLUGIN_FAMILIES: readonly ClawHubPackageFamily[] = [ + "code-plugin", + "bundle-plugin", +]; +const DEFAULT_PLUGIN_SEARCH_LIMIT = 20; +const MAX_PLUGIN_SEARCH_LIMIT = 100; + +export type PluginCatalogSearchParams = { + query: string; + limit?: number; +}; + +function resolveSearchLimit(limit: number | undefined): number { + if (!Number.isFinite(limit) || !limit || limit <= 0) { + return DEFAULT_PLUGIN_SEARCH_LIMIT; + } + return Math.min(Math.max(Math.trunc(limit), 1), MAX_PLUGIN_SEARCH_LIMIT); +} + +function mergePackageSearchResults( + groups: readonly ClawHubPackageSearchResult[][], + limit: number, +): ClawHubPackageSearchResult[] { + const byName = new Map(); + for (const entry of groups.flat()) { + const existing = byName.get(entry.package.name); + if (!existing || entry.score > existing.score) { + byName.set(entry.package.name, entry); + } + } + // Stable sorting preserves family query order when ClawHub scores tie. + return [...byName.values()].toSorted((left, right) => right.score - left.score).slice(0, limit); +} + +/** Searches installable ClawHub plugin families and merges duplicate packages by best score. */ +export async function searchInstallablePluginPackages( + params: PluginCatalogSearchParams, +): Promise { + const limit = resolveSearchLimit(params.limit); + const groups = await Promise.all( + INSTALLABLE_PLUGIN_FAMILIES.map((family) => + searchClawHubPackages({ + query: params.query, + family, + limit, + }), + ), + ); + return mergePackageSearchResults(groups, limit); +} diff --git a/src/plugins/clawhub.test.ts b/src/plugins/clawhub.test.ts index 41291141f0f0..ade898eebc94 100644 --- a/src/plugins/clawhub.test.ts +++ b/src/plugins/clawhub.test.ts @@ -41,6 +41,9 @@ vi.mock("../version.js", () => ({ })); vi.mock("./install.js", () => ({ + PLUGIN_INSTALL_ERROR_CODE: { + PLUGIN_ID_MISMATCH: "plugin_id_mismatch", + }, installPluginFromArchive: (...args: unknown[]) => installPluginFromArchiveMock(...args), })); @@ -129,6 +132,25 @@ function mockCommunityClawHubPackageDetail() { }); } +function mockOfficialClawHubPackageDetail(overrides: Record): void { + fetchClawHubPackageDetailMock.mockResolvedValueOnce({ + package: { + name: "demo", + displayName: "Demo", + family: "code-plugin", + channel: "official", + isOfficial: true, + createdAt: 0, + updatedAt: 0, + compatibility: { + pluginApiRange: ">=2026.3.22", + minGatewayVersion: "2026.3.0", + }, + ...overrides, + }, + }); +} + function expectClawHubInstallFlow(params: { baseUrl: string; version: string; @@ -180,6 +202,7 @@ type PackageLookupCall = { type ArchiveInstallCall = { archivePath?: string; dangerouslyForceUnsafeInstall?: boolean; + expectedPluginId?: string; installPolicyRequest?: { kind?: string; requestedSpecifier?: string; @@ -385,6 +408,85 @@ describe("installPluginFromClawHub", () => { expect(archiveCleanupMock).toHaveBeenCalledTimes(1); }); + it.each([ + ["package runtimeId", { runtimeId: "demo-runtime" }], + ["capabilities.runtimeId", { capabilities: { runtimeId: "demo-runtime" } }], + ])("pins archive installation to the advertised %s", async (_label, overrides) => { + mockOfficialClawHubPackageDetail(overrides); + installPluginFromArchiveMock.mockResolvedValueOnce({ + ok: true, + pluginId: "demo-runtime", + targetDir: "/tmp/openclaw/plugins/demo-runtime", + version: "2026.3.22", + }); + + const result = await installPluginFromClawHub({ spec: "clawhub:demo" }); + + expect(expectInstallSuccess(result).pluginId).toBe("demo-runtime"); + expect(archiveInstallCall().expectedPluginId).toBe("demo-runtime"); + }); + + it("rejects caller and advertised runtime id mismatches before download", async () => { + mockOfficialClawHubPackageDetail({ runtimeId: "advertised-runtime" }); + + const result = await installPluginFromClawHub({ + spec: "clawhub:demo", + expectedPluginId: "expected-runtime", + }); + + const failure = expectInstallFailure(result); + expect(failure.code).toBe("plugin_id_mismatch"); + expect(failure.error).toBe( + 'ClawHub package runtime id mismatch: expected "expected-runtime", got "advertised-runtime".', + ); + expect(downloadClawHubPackageArchiveMock).not.toHaveBeenCalled(); + expect(installPluginFromArchiveMock).not.toHaveBeenCalled(); + }); + + it("rejects inconsistent advertised runtime ids before download", async () => { + mockOfficialClawHubPackageDetail({ + runtimeId: "package-runtime", + capabilities: { runtimeId: "capabilities-runtime" }, + }); + + const result = await installPluginFromClawHub({ spec: "clawhub:demo" }); + + const failure = expectInstallFailure(result); + expect(failure.code).toBe("plugin_id_mismatch"); + expect(failure.error).toBe( + 'ClawHub package runtime id mismatch: package advertises "package-runtime" but capabilities advertise "capabilities-runtime".', + ); + expect(downloadClawHubPackageArchiveMock).not.toHaveBeenCalled(); + expect(installPluginFromArchiveMock).not.toHaveBeenCalled(); + }); + + it("accepts a matching catalog archive integrity pin", async () => { + const result = await installPluginFromClawHub({ + spec: "clawhub:demo", + expectedIntegrity: `sha256:${DEMO_ARCHIVE_SHA256}`, + }); + + expectSuccessfulClawHubInstall(result); + expect(installPluginFromArchiveMock).toHaveBeenCalledTimes(1); + }); + + it("rejects a catalog archive integrity mismatch before extraction", async () => { + const expectedIntegrity = `sha256-${Buffer.from("1".repeat(64), "hex").toString("base64")}`; + + const result = await installPluginFromClawHub({ + spec: "clawhub:demo", + expectedIntegrity, + }); + + expectInstallFailureFields( + result, + CLAWHUB_INSTALL_ERROR_CODE.ARCHIVE_INTEGRITY_MISMATCH, + `ClawHub archive integrity mismatch for "demo@2026.3.22": expected ${expectedIntegrity}, got ${DEMO_ARCHIVE_INTEGRITY}.`, + ); + expect(installPluginFromArchiveMock).not.toHaveBeenCalled(); + expect(archiveCleanupMock).toHaveBeenCalledTimes(1); + }); + it("marks custom ClawHub registries as third-party install policy authority", async () => { const result = await installPluginFromClawHub({ spec: "clawhub:demo", diff --git a/src/plugins/clawhub.ts b/src/plugins/clawhub.ts index 758965e1ac00..5c795005a769 100644 --- a/src/plugins/clawhub.ts +++ b/src/plugins/clawhub.ts @@ -50,7 +50,11 @@ import type { RuntimeVersionEnv } from "../version.js"; import { CLAWHUB_INSTALL_ERROR_CODE, type ClawHubInstallErrorCode } from "./clawhub-error-codes.js"; import type { ClawHubPluginInstallRecordFields } from "./clawhub-install-records.js"; import type { InstallSafetyOverrides } from "./install-security-scan.js"; -import { installPluginFromArchive, type InstallPluginResult } from "./install.js"; +import { + installPluginFromArchive, + PLUGIN_INSTALL_ERROR_CODE, + type InstallPluginResult, +} from "./install.js"; export { CLAWHUB_INSTALL_ERROR_CODE }; export type { ClawHubInstallErrorCode, ClawHubRiskAcknowledgementRequest }; @@ -69,6 +73,10 @@ type ClawHubInstallFailure = { version?: string; }; +type ClawHubRuntimeIdResolution = + | { ok: true; expectedPluginId?: string } + | Extract; + type ClawHubFileEntryLike = { path?: unknown; sha256?: unknown; @@ -390,6 +398,38 @@ function formatClawHubReleaseLabel(packageName: string, version: string): string return `${sanitizeTerminalText(packageName)}@${sanitizeTerminalText(version)}`; } +function resolveClawHubExpectedRuntimeId(params: { + detail: ClawHubPackageDetail; + expectedPluginId?: string; +}): ClawHubRuntimeIdResolution { + const packageRuntimeId = normalizeOptionalString(params.detail.package?.runtimeId); + const capabilitiesRuntimeId = normalizeOptionalString( + params.detail.package?.capabilities?.runtimeId, + ); + if (packageRuntimeId && capabilitiesRuntimeId && packageRuntimeId !== capabilitiesRuntimeId) { + return { + ok: false, + error: `ClawHub package runtime id mismatch: package advertises "${sanitizeTerminalText(packageRuntimeId)}" but capabilities advertise "${sanitizeTerminalText(capabilitiesRuntimeId)}".`, + code: PLUGIN_INSTALL_ERROR_CODE.PLUGIN_ID_MISMATCH, + }; + } + + const advertisedRuntimeId = packageRuntimeId ?? capabilitiesRuntimeId; + const expectedPluginId = normalizeOptionalString(params.expectedPluginId); + if (expectedPluginId && advertisedRuntimeId && expectedPluginId !== advertisedRuntimeId) { + return { + ok: false, + error: `ClawHub package runtime id mismatch: expected "${sanitizeTerminalText(expectedPluginId)}", got "${sanitizeTerminalText(advertisedRuntimeId)}".`, + code: PLUGIN_INSTALL_ERROR_CODE.PLUGIN_ID_MISMATCH, + }; + } + const resolvedExpectedPluginId = expectedPluginId ?? advertisedRuntimeId; + return { + ok: true, + ...(resolvedExpectedPluginId ? { expectedPluginId: resolvedExpectedPluginId } : {}), + }; +} + function isMissingArtifactResolverRoute(error: unknown): boolean { return ( error instanceof ClawHubRequestError && @@ -1168,6 +1208,7 @@ export async function installPluginFromClawHub( timeoutMs?: number; dryRun?: boolean; expectedPluginId?: string; + expectedIntegrity?: string; env?: RuntimeVersionEnv; acknowledgeClawHubRisk?: boolean; onClawHubRisk?: (request: ClawHubRiskAcknowledgementRequest) => boolean | Promise; @@ -1189,6 +1230,16 @@ export async function installPluginFromClawHub( CLAWHUB_INSTALL_ERROR_CODE.INVALID_SPEC, ); } + const expectedIntegrity = + params.expectedIntegrity === undefined + ? undefined + : normalizeClawHubSha256Integrity(params.expectedIntegrity); + if (params.expectedIntegrity !== undefined && !expectedIntegrity) { + return buildClawHubInstallFailure( + `invalid expected ClawHub archive integrity: ${sanitizeTerminalText(params.expectedIntegrity)}`, + CLAWHUB_INSTALL_ERROR_CODE.MISSING_ARCHIVE_INTEGRITY, + ); + } params.logger?.info?.(`Resolving ${formatClawHubSpecifier(parsed)}…`); let detail: ClawHubPackageDetail; @@ -1224,6 +1275,13 @@ export async function installPluginFromClawHub( if (validationFailure) { return validationFailure; } + const runtimeIdResolution = resolveClawHubExpectedRuntimeId({ + detail, + expectedPluginId: params.expectedPluginId, + }); + if (!runtimeIdResolution.ok) { + return runtimeIdResolution; + } const expectedClawPackSha256 = resolveClawHubClawPackArtifactSha256(versionState.clawpack); const canonicalPackageName = detail.package?.name ?? parsed.name; const officialClawHubPackage = detail.package @@ -1307,14 +1365,20 @@ export async function installPluginFromClawHub( ); } try { + if (expectedIntegrity && archive.integrity !== expectedIntegrity) { + return buildClawHubInstallFailure( + `ClawHub archive integrity mismatch for "${releaseLabel}": expected ${expectedIntegrity}, got ${archive.integrity}.`, + CLAWHUB_INSTALL_ERROR_CODE.ARCHIVE_INTEGRITY_MISMATCH, + ); + } if (expectedClawPackSha256) { - const expectedIntegrity = normalizeClawHubSha256Integrity(expectedClawPackSha256); + const expectedClawPackIntegrity = normalizeClawHubSha256Integrity(expectedClawPackSha256); const expectedNpmIntegrity = resolveClawHubNpmIntegrity(versionState.clawpack); if ( archive.artifact !== "clawpack" || archive.clawpackHeaderSha256 !== expectedClawPackSha256 || archive.sha256Hex !== expectedClawPackSha256 || - archive.integrity !== expectedIntegrity + archive.integrity !== expectedClawPackIntegrity ) { return buildClawHubInstallFailure( `ClawHub ClawPack integrity mismatch for "${releaseLabel}": expected ${expectedClawPackSha256}, got ${archive.sha256Hex}.`, @@ -1379,7 +1443,7 @@ export async function installPluginFromClawHub( extensionsDir: params.extensionsDir, timeoutMs: params.timeoutMs, dryRun: params.dryRun, - expectedPluginId: params.expectedPluginId, + expectedPluginId: runtimeIdResolution.expectedPluginId, installPolicyRequest: { kind: "plugin-archive", requestedSpecifier: params.spec, diff --git a/src/cli/plugins-install-persist.test.ts b/src/plugins/install-persistence.test.ts similarity index 94% rename from src/cli/plugins-install-persist.test.ts rename to src/plugins/install-persistence.test.ts index 887a21e0f762..cec5775e1630 100644 --- a/src/cli/plugins-install-persist.test.ts +++ b/src/plugins/install-persistence.test.ts @@ -1,10 +1,8 @@ -// Plugin install persist tests cover saving installed plugin records after install. +// Plugin install persistence tests cover saving installed plugin records after install. import fs from "node:fs"; import os from "node:os"; import path from "node:path"; import { beforeEach, describe, expect, it } from "vitest"; -import type { OpenClawConfig } from "../config/config.js"; -import { hasRetainedManagedNpmInstallMarker } from "../plugins/managed-npm-retention.js"; import { applyExclusiveSlotSelection, buildPluginDiagnosticsReport, @@ -21,7 +19,9 @@ import { writeConfigFile, writePersistedInstalledPluginIndexInstallRecords, applyPluginUninstallDirectoryRemoval, -} from "./plugins-cli-test-helpers.js"; +} from "../cli/plugins-cli-test-helpers.js"; +import type { OpenClawConfig } from "../config/config.js"; +import { hasRetainedManagedNpmInstallMarker } from "./managed-npm-retention.js"; function requireMockCallArg( mockFn: { mock: { calls: unknown[][] } }, @@ -51,7 +51,7 @@ describe("persistPluginInstall", () => { }); it("adds installed plugins to restrictive allowlists before enabling", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { allow: ["memory-core"], @@ -130,7 +130,7 @@ describe("persistPluginInstall", () => { }); it("persists installs even when runtime cache invalidation fails", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { entries: {}, @@ -168,7 +168,7 @@ describe("persistPluginInstall", () => { }); it("removes a replaced managed install directory before refreshing the registry", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { entries: {}, @@ -255,7 +255,7 @@ describe("persistPluginInstall", () => { }); it("preserves replaced install directories when the new install path overlaps", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { entries: {}, @@ -296,7 +296,7 @@ describe("persistPluginInstall", () => { }); it("preserves replaced npm install directories across generation updates", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { entries: {}, @@ -398,7 +398,7 @@ describe("persistPluginInstall", () => { }); it("warns when an installed npm plugin remains shadowed by a config-selected source", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { entries: {}, @@ -457,7 +457,7 @@ describe("persistPluginInstall", () => { }); it("does not warn when the config-selected source is inside the npm install path", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { entries: {}, @@ -501,7 +501,7 @@ describe("persistPluginInstall", () => { }); it("invalidates runtime cache even when registry refresh fails", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { entries: {}, @@ -538,7 +538,7 @@ describe("persistPluginInstall", () => { }); it("skips runtime cache invalidation when the caller opts out", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { entries: {}, @@ -574,7 +574,7 @@ describe("persistPluginInstall", () => { }); it("removes stale denylist entries before enabling installed plugins", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { deny: ["alpha", "other"], @@ -613,7 +613,7 @@ describe("persistPluginInstall", () => { }); it("scopes runtime kind lookup to the selected plugin when metadata omits kind", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { entries: { @@ -690,7 +690,7 @@ describe("persistPluginInstall", () => { }); it("uses cold metadata for manifest-kind slot selection without loading runtime siblings", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { entries: { @@ -759,7 +759,7 @@ describe("persistPluginInstall", () => { }); it("does not load every plugin runtime for non-slot installs without manifest kind", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { entries: {}, @@ -813,7 +813,7 @@ describe("persistPluginInstall", () => { }); it("can persist an install record without enabling a plugin that needs config first", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { entries: {}, @@ -854,7 +854,7 @@ describe("persistPluginInstall", () => { }); it("does not add disabled installs to restrictive allowlists", async () => { - const { persistPluginInstall } = await import("./plugins-install-persist.js"); + const { persistPluginInstall } = await import("./install-persistence.js"); const baseConfig = { plugins: { allow: ["memory-core"], diff --git a/src/cli/plugins-install-persist.ts b/src/plugins/install-persistence.ts similarity index 90% rename from src/cli/plugins-install-persist.ts rename to src/plugins/install-persistence.ts index ff9426a90b10..6c0be7a3bcf3 100644 --- a/src/cli/plugins-install-persist.ts +++ b/src/plugins/install-persistence.ts @@ -1,9 +1,8 @@ -// Persistence helpers for plugin and hook-pack installs plus related config mutation. +// Persistence helpers for plugin installs plus related config mutation. import fs from "node:fs"; import path from "node:path"; import { isRecord } from "@openclaw/normalization-core/record-coerce"; import { theme } from "../../packages/terminal-core/src/theme.js"; -import { replaceConfigFile } from "../config/config.js"; import { hashConfigIncludeRaw, readConfigIncludeFileWithGuards, @@ -12,33 +11,27 @@ import { import type { ConfigWriteOptions } from "../config/io.js"; import type { OpenClawConfig } from "../config/types.openclaw.js"; import type { PluginInstallRecord } from "../config/types.plugins.js"; -import { type HookInstallUpdate, recordHookInstall } from "../hooks/installs.js"; import { isPathInside } from "../infra/path-guards.js"; -import { enablePluginInConfig } from "../plugins/enable.js"; +import { defaultRuntime, type RuntimeEnv } from "../runtime.js"; +import { resolveUserPath, shortenHomePath } from "../utils.js"; +import { parseJsonWithJson5Fallback } from "../utils/parse-json-compat.js"; +import { enablePluginInConfig } from "./enable.js"; +import { commitPluginInstallRecordsWithConfig } from "./install-record-commit.js"; import { loadInstalledPluginIndexInstallRecords, recordPluginInstallInRecords, withoutPluginInstallRecords, -} from "../plugins/installed-plugin-index-records.js"; -import type { PluginInstallUpdate } from "../plugins/installs.js"; -import { tracePluginLifecyclePhaseAsync } from "../plugins/plugin-lifecycle-trace.js"; -import { buildPluginSnapshotReport } from "../plugins/status.js"; +} from "./installed-plugin-index-records.js"; +import type { PluginInstallUpdate } from "./installs.js"; +import { tracePluginLifecyclePhaseAsync } from "./plugin-lifecycle-trace.js"; +import { refreshPluginRegistryAfterConfigMutation } from "./registry-refresh.js"; +import { applySlotSelectionForPlugin } from "./slot-selection.js"; +import { buildPluginSnapshotReport } from "./status.js"; import { applyPluginUninstallDirectoryRemoval, planPluginUninstall, type PluginUninstallDirectoryRemoval, -} from "../plugins/uninstall.js"; -import { defaultRuntime, type RuntimeEnv } from "../runtime.js"; -import { resolveUserPath, shortenHomePath } from "../utils.js"; -import { parseJsonWithJson5Fallback } from "../utils/parse-json-compat.js"; -import { - applySlotSelectionForPlugin, - enableInternalHookEntries, - logHookPackRestartHint, - logSlotWarnings, -} from "./plugins-command-helpers.js"; -import { commitPluginInstallRecordsWithConfig } from "./plugins-install-record-commit.js"; -import { refreshPluginRegistryAfterConfigMutation } from "./plugins-registry-refresh.js"; +} from "./uninstall.js"; function addInstalledPluginToAllowlist(cfg: OpenClawConfig, pluginId: string): OpenClawConfig { const allow = cfg.plugins?.allow; @@ -358,6 +351,12 @@ function logShadowedNpmInstallWarning(params: { ); } +function logSlotWarnings(warnings: string[], runtime: RuntimeEnv): void { + for (const warning of warnings) { + runtime.log(theme.warn(warning)); + } +} + function resolveComparableInstallPath( install: Pick, ) { @@ -530,28 +529,3 @@ export async function persistPluginInstall(params: { runtime.log("Restart the gateway to load plugins."); return next; } - -export async function persistHookPackInstall(params: { - snapshot: ConfigSnapshotForInstallPersist; - hookPackId: string; - hooks: string[]; - install: Omit; - successMessage?: string; - runtime?: RuntimeEnv; -}): Promise { - const runtime = params.runtime ?? defaultRuntime; - let next = enableInternalHookEntries(params.snapshot.config, params.hooks); - next = recordHookInstall(next, { - hookId: params.hookPackId, - hooks: params.hooks, - ...params.install, - }); - await replaceConfigFile({ - nextConfig: next, - baseHash: params.snapshot.baseHash, - writeOptions: params.snapshot.writeOptions, - }); - runtime.log(params.successMessage ?? `Installed hook pack: ${params.hookPackId}`); - logHookPackRestartHint(runtime); - return next; -} diff --git a/src/cli/plugins-install-record-commit.test.ts b/src/plugins/install-record-commit.test.ts similarity index 98% rename from src/cli/plugins-install-record-commit.test.ts rename to src/plugins/install-record-commit.test.ts index 3e27e19e14df..4864c8336b50 100644 --- a/src/cli/plugins-install-record-commit.test.ts +++ b/src/plugins/install-record-commit.test.ts @@ -1,15 +1,15 @@ -// Plugin install record commit tests cover install record persistence after CLI installs. +// Plugin install record commit tests cover install record persistence. import fs from "node:fs"; import os from "node:os"; import path from "node:path"; import { beforeEach, describe, expect, it, vi } from "vitest"; import type { OpenClawConfig } from "../config/types.openclaw.js"; import type { PluginInstallRecord } from "../config/types.plugins.js"; +import { withEnvAsync } from "../test-utils/env.js"; import { hasRetainedManagedNpmInstallMarker, markRetainedManagedNpmInstall, -} from "../plugins/managed-npm-retention.js"; -import { withEnvAsync } from "../test-utils/env.js"; +} from "./managed-npm-retention.js"; const mocks = vi.hoisted(() => ({ loadInstalledPluginIndexInstallRecords: vi.fn(), @@ -24,9 +24,8 @@ vi.mock("../config/config.js", () => ({ transformConfigFileWithRetry: mocks.transformConfigFileWithRetry, })); -vi.mock("../plugins/installed-plugin-index-records.js", async (importOriginal) => { - const actual = - await importOriginal(); +vi.mock("./installed-plugin-index-records.js", async (importOriginal) => { + const actual = await importOriginal(); return { ...actual, loadInstalledPluginIndexInstallRecords: mocks.loadInstalledPluginIndexInstallRecords, @@ -42,7 +41,7 @@ import { stripPendingPluginInstallRecords, transformConfigWithPendingPluginInstalls, unchangedPendingPluginInstallRecordIds, -} from "./plugins-install-record-commit.js"; +} from "./install-record-commit.js"; describe("commitConfigWithPendingPluginInstalls", () => { beforeEach(() => { diff --git a/src/cli/plugins-install-record-commit.ts b/src/plugins/install-record-commit.ts similarity index 99% rename from src/cli/plugins-install-record-commit.ts rename to src/plugins/install-record-commit.ts index 9f2ab519f6ba..5a1ec985a929 100644 --- a/src/cli/plugins-install-record-commit.ts +++ b/src/plugins/install-record-commit.ts @@ -21,14 +21,14 @@ import { PLUGIN_INSTALLS_CONFIG_PATH, withoutPluginInstallRecords, writePersistedInstalledPluginIndexInstallRecords, -} from "../plugins/installed-plugin-index-records.js"; +} from "./installed-plugin-index-records.js"; import { clearRetainedManagedNpmInstallMarker, markRetainedManagedNpmInstall, resolveRetainedManagedNpmInstallPackageInfo, resolveRetainedManagedNpmInstallMarkerPath, -} from "../plugins/managed-npm-retention.js"; -import { planPluginUninstall } from "../plugins/uninstall.js"; +} from "./managed-npm-retention.js"; +import { planPluginUninstall } from "./uninstall.js"; function mergeUnsetPaths( left?: ConfigWriteOptions["unsetPaths"], diff --git a/src/plugins/management-service.test.ts b/src/plugins/management-service.test.ts new file mode 100644 index 000000000000..f9a8b2a95a6d --- /dev/null +++ b/src/plugins/management-service.test.ts @@ -0,0 +1,969 @@ +// Plugin management service tests cover cold state, catalog identity, and guarded mutations. +import { beforeEach, describe, expect, it, vi } from "vitest"; + +const mocks = vi.hoisted(() => ({ + applyUninstall: vi.fn(), + clawhubInstall: vi.fn(), + commitRecords: vi.fn(), + installRecords: vi.fn(), + metadata: vi.fn(), + npmInstall: vi.fn(), + officialCatalog: vi.fn(), + persistInstall: vi.fn(), + preflight: vi.fn(), + readConfig: vi.fn(), + refreshRegistry: vi.fn(), + replaceConfig: vi.fn(), + planUninstall: vi.fn(), + selectWriteOptions: vi.fn((writeOptions: unknown) => writeOptions), + slotSelection: vi.fn((config: unknown): { config: unknown; warnings: string[] } => ({ + config, + warnings: [], + })), +})); + +vi.mock("../config/config.js", () => ({ + assertConfigWriteAllowedInCurrentMode: (params?: { env?: NodeJS.ProcessEnv }) => { + if (params?.env?.OPENCLAW_NIX_MODE === "1") { + throw new Error("Config is managed by Nix"); + } + }, + readConfigFileSnapshotForWrite: () => mocks.readConfig(), + replaceConfigFile: (params: unknown) => mocks.replaceConfig(params), +})); + +vi.mock("./install-persistence.js", () => ({ + persistPluginInstall: (...args: unknown[]) => mocks.persistInstall(...args), + resolveInstallConfigMutationPreflights: (...args: unknown[]) => mocks.preflight(...args), + selectInstallMutationWriteOptions: (writeOptions: unknown) => + mocks.selectWriteOptions(writeOptions), +})); + +vi.mock("./slot-selection.js", () => ({ + applySlotSelectionForPlugin: (config: unknown) => mocks.slotSelection(config), +})); + +vi.mock("./registry-refresh.js", () => ({ + refreshPluginRegistryAfterConfigMutation: (...args: unknown[]) => mocks.refreshRegistry(...args), +})); + +vi.mock("./plugin-metadata-snapshot.js", () => ({ + loadPluginMetadataSnapshot: (...args: unknown[]) => mocks.metadata(...args), +})); + +vi.mock("./clawhub.js", () => ({ + installPluginFromClawHub: (...args: unknown[]) => mocks.clawhubInstall(...args), +})); + +vi.mock("./install.js", () => ({ + installPluginFromNpmSpec: (...args: unknown[]) => mocks.npmInstall(...args), +})); + +vi.mock("./installed-plugin-index-records.js", async (importOriginal) => ({ + // Keep the pure config/record helpers real; only record IO is stubbed. + ...(await importOriginal()), + loadInstalledPluginIndexInstallRecords: (...args: unknown[]) => mocks.installRecords(...args), +})); + +vi.mock("./uninstall.js", async (importOriginal) => ({ + ...(await importOriginal()), + applyPluginUninstallDirectoryRemoval: (...args: unknown[]) => mocks.applyUninstall(...args), + planPluginUninstall: (...args: unknown[]) => mocks.planUninstall(...args), +})); + +vi.mock("./install-record-commit.js", () => ({ + commitPluginInstallRecordsWithConfig: (...args: unknown[]) => mocks.commitRecords(...args), +})); + +vi.mock("./official-external-plugin-catalog.js", async (importOriginal) => ({ + ...(await importOriginal()), + loadConfiguredHostedOfficialExternalPluginCatalogEntries: (...args: unknown[]) => + mocks.officialCatalog(...args), +})); + +const { + clearManagedPluginOfficialCatalogCache, + installManagedPlugin, + listManagedPlugins, + overlayBundledOfficialPluginCatalogMetadata, + setManagedPluginEnabled, + uninstallManagedPlugin, +} = await import("./management-service.js"); + +function configSnapshot(config: Record = {}) { + return { + snapshot: { + valid: true, + parsed: {}, + path: "/tmp/openclaw.json", + sourceConfig: config, + hash: "base-hash", + }, + writeOptions: { + expectedConfigPath: "/tmp/openclaw.json", + includeFileHashesForWrite: { "/tmp/plugins.json": "include-hash" }, + includeFileTargetsForWrite: { "/tmp/plugins.json": "/tmp/plugins.json" }, + }, + }; +} + +function metadataSnapshot(params: { + enabled: boolean; + id?: string; + name?: string; + origin?: "bundled" | "global"; + installRecord?: Record; +}) { + const id = params.id ?? "workboard"; + const manifest = { + id, + name: params.name ?? "Workboard", + description: "Coordinate agent work in a shared board.", + catalog: { featured: true, order: 10 }, + channels: [], + providers: [], + cliBackends: [], + skills: [], + hooks: [], + origin: params.origin ?? "bundled", + rootDir: `/tmp/${id}`, + source: `/tmp/${id}/index.ts`, + manifestPath: `/tmp/${id}/openclaw.plugin.json`, + }; + return { + index: { + plugins: [ + { + pluginId: id, + packageName: `@openclaw/${id}`, + origin: params.origin ?? "bundled", + enabled: params.enabled, + }, + ], + installRecords: params.installRecord ? { [id]: params.installRecord } : {}, + }, + byPluginId: new Map([[id, manifest]]), + plugins: [manifest], + diagnostics: [], + normalizePluginId: (pluginId: string) => pluginId, + }; +} + +function emptyMetadataSnapshot() { + return { + index: { plugins: [], installRecords: {} }, + byPluginId: new Map(), + plugins: [], + diagnostics: [], + normalizePluginId: (pluginId: string) => pluginId, + }; +} + +const hostedDiffsEntry = { + name: "@openclaw/diffs", + version: "2.0.0", + description: "Hosted description", + openclaw: { + plugin: { id: "diffs", label: "Hosted Diffs" }, + install: { clawhubSpec: "clawhub:@openclaw/diffs", defaultChoice: "clawhub" }, + }, +}; + +const bundledDiffsEntry = { + name: "@openclaw/diffs", + version: "1.0.0", + description: "Bundled description", + openclaw: { + plugin: { id: "diffs", label: "Bundled Diffs" }, + catalog: { featured: true, order: 40 }, + install: { clawhubSpec: "clawhub:@openclaw/diffs", defaultChoice: "npm" }, + }, +}; + +// Mirrors the current default ClawHub feed shape: package identity lives in a +// source candidate while runtime/editorial metadata remains local. +const hostedFeedDiffsEntry = { + id: "@openclaw/diffs", + title: "Diffs", + state: "available", + publisher: { id: "openclaw", trust: "official" }, + install: { + candidates: [ + { + sourceRef: "public-clawhub", + package: "@openclaw/diffs", + version: "2026.6.11", + integrity: `sha256:${"a".repeat(64)}`, + }, + ], + }, +}; + +describe("plugin management service", () => { + beforeEach(() => { + clearManagedPluginOfficialCatalogCache(); + for (const mock of Object.values(mocks)) { + if (typeof mock === "function" && "mockReset" in mock) { + mock.mockReset(); + } + } + mocks.selectWriteOptions.mockImplementation((writeOptions) => writeOptions); + mocks.preflight.mockReturnValue({ + hookMutation: { mode: "allowed" }, + pluginMutation: { mode: "allowed" }, + }); + mocks.slotSelection.mockImplementation((config) => ({ config, warnings: [] })); + mocks.installRecords.mockResolvedValue({}); + mocks.applyUninstall.mockResolvedValue({ directoryRemoved: true, warnings: [] }); + mocks.officialCatalog.mockResolvedValue({ + source: "hosted", + entries: [], + feed: { schemaVersion: 1, id: "test", generatedAt: "now", sequence: 1, entries: [] }, + metadata: { url: "https://clawhub.ai/feed", status: 200, checksum: "hash" }, + }); + }); + + it("overlays bundled runtime identity and curation while keeping hosted install metadata", () => { + const [merged] = overlayBundledOfficialPluginCatalogMetadata( + [hostedDiffsEntry] as never, + [bundledDiffsEntry] as never, + ); + + expect(merged).toMatchObject({ + name: "@openclaw/diffs", + version: "2.0.0", + description: "Hosted description", + openclaw: { + plugin: { id: "diffs", label: "Bundled Diffs" }, + install: { clawhubSpec: "clawhub:@openclaw/diffs", defaultChoice: "clawhub" }, + catalog: { featured: true, order: 40 }, + }, + }); + }); + + it("normalizes the current package-shaped hosted feed against exact local identity", async () => { + const [merged] = overlayBundledOfficialPluginCatalogMetadata( + [hostedFeedDiffsEntry] as never, + [bundledDiffsEntry] as never, + ); + mocks.metadata.mockReturnValue(emptyMetadataSnapshot()); + + const catalog = await listManagedPlugins({ + config: {}, + env: {}, + officialCatalog: { entries: merged ? [merged] : [] }, + }); + + expect(merged).toMatchObject({ + id: "@openclaw/diffs", + title: "Diffs", + name: "@openclaw/diffs", + description: "Bundled description", + install: hostedFeedDiffsEntry.install, + openclaw: { + plugin: { id: "diffs", label: "Bundled Diffs" }, + catalog: { featured: true, order: 40 }, + }, + }); + expect(catalog.plugins).toEqual([ + expect.objectContaining({ + id: "diffs", + name: "Bundled Diffs", + installed: false, + featured: true, + order: 40, + install: { source: "official", pluginId: "diffs" }, + }), + ]); + }); + + it("deduplicates a package-shaped hosted row against its installed runtime id", async () => { + const [merged] = overlayBundledOfficialPluginCatalogMetadata( + [hostedFeedDiffsEntry] as never, + [bundledDiffsEntry] as never, + ); + mocks.metadata.mockReturnValue( + metadataSnapshot({ enabled: true, id: "diffs", name: "Diffs", origin: "global" }), + ); + + const catalog = await listManagedPlugins({ + config: {}, + env: {}, + officialCatalog: { entries: merged ? [merged] : [] }, + }); + + expect(catalog.plugins).toHaveLength(1); + expect(catalog.plugins[0]).toMatchObject({ id: "diffs", installed: true, enabled: true }); + }); + + it("does not transfer endorsement to a hosted entry that only reuses the plugin id", () => { + const impostor = { + ...hostedDiffsEntry, + name: "community/impostor", + openclaw: { + ...hostedDiffsEntry.openclaw, + install: { clawhubSpec: "clawhub:community/impostor", defaultChoice: "clawhub" }, + }, + }; + + const [merged] = overlayBundledOfficialPluginCatalogMetadata( + [impostor] as never, + [bundledDiffsEntry] as never, + ); + + expect(merged?.openclaw?.catalog).toBeUndefined(); + }); + + it("normalizes hosted catalog hints before building the public DTO", async () => { + mocks.metadata.mockReturnValue(emptyMetadataSnapshot()); + + const catalog = await listManagedPlugins({ + config: {}, + env: {}, + officialCatalog: { + entries: [ + { + name: "community/partial", + openclaw: { + plugin: { id: "partial", label: "Partial" }, + catalog: { featured: "yes", order: 25 }, + }, + }, + { + name: "community/invalid", + openclaw: { + plugin: { id: "invalid", label: "Invalid" }, + catalog: { featured: "yes", order: "first" }, + }, + }, + ] as never, + }, + }); + + expect(catalog.plugins).toEqual([ + expect.objectContaining({ + id: "partial", + order: 25, + }), + ]); + expect(catalog.plugins[0]).not.toHaveProperty("featured"); + }); + + it("lists bundled Workboard as installed, default-off, and cold-disabled", async () => { + mocks.metadata.mockReturnValue(metadataSnapshot({ enabled: false })); + + const catalog = await listManagedPlugins({ + config: {}, + env: {}, + officialCatalog: { entries: [] }, + }); + + expect(catalog.plugins).toEqual([ + expect.objectContaining({ + id: "workboard", + packageName: "@openclaw/workboard", + installed: true, + enabled: false, + state: "disabled", + featured: true, + order: 10, + }), + ]); + expect(catalog.mutationAllowed).toBe(true); + }); + + it("refuses mutation in Nix mode before reading or writing config", async () => { + await expect( + setManagedPluginEnabled({ + pluginId: "workboard", + enabled: true, + env: { OPENCLAW_NIX_MODE: "1" }, + }), + ).rejects.toThrow("managed by Nix"); + expect(mocks.readConfig).not.toHaveBeenCalled(); + expect(mocks.replaceConfig).not.toHaveBeenCalled(); + }); + + it("blocks unsupported plugin includes before config mutation", async () => { + mocks.readConfig.mockResolvedValue(configSnapshot()); + mocks.preflight.mockReturnValue({ + hookMutation: { mode: "allowed" }, + pluginMutation: { mode: "blocked", reason: "nested plugins include" }, + }); + + await expect( + setManagedPluginEnabled({ pluginId: "workboard", enabled: true, env: {} }), + ).rejects.toThrow("nested plugins include"); + expect(mocks.replaceConfig).not.toHaveBeenCalled(); + }); + + it("preserves config hash and include ownership when enabling Workboard", async () => { + const prepared = configSnapshot(); + mocks.readConfig.mockResolvedValue(prepared); + mocks.metadata + .mockReturnValueOnce(metadataSnapshot({ enabled: false })) + .mockReturnValueOnce(metadataSnapshot({ enabled: true })); + mocks.replaceConfig.mockResolvedValue({}); + mocks.refreshRegistry.mockResolvedValue(undefined); + + const result = await setManagedPluginEnabled({ + pluginId: "workboard", + enabled: true, + env: {}, + }); + + expect(mocks.replaceConfig).toHaveBeenCalledWith( + expect.objectContaining({ + baseHash: "base-hash", + writeOptions: prepared.writeOptions, + }), + ); + expect(mocks.refreshRegistry).toHaveBeenCalledWith( + expect.objectContaining({ + reason: "policy-changed", + policyPluginIds: ["workboard"], + }), + ); + expect(result).toMatchObject({ + plugin: { id: "workboard", enabled: true, state: "enabled" }, + changedPaths: ["plugins"], + }); + }); + + it("reports exclusive-slot side effects in established plugin config", async () => { + const config = { + plugins: { + entries: { workboard: { enabled: false } }, + slots: { memory: "memory-core" }, + }, + }; + mocks.readConfig.mockResolvedValue(configSnapshot(config)); + mocks.slotSelection.mockImplementation((next) => ({ + config: { + ...(next as Record), + plugins: { + ...(next as { plugins?: Record }).plugins, + slots: { memory: "workboard" }, + }, + }, + warnings: ["Selected workboard for the memory slot."], + })); + mocks.replaceConfig.mockResolvedValue({}); + mocks.refreshRegistry.mockResolvedValue(undefined); + mocks.metadata + .mockReturnValueOnce(metadataSnapshot({ enabled: false })) + .mockReturnValueOnce(metadataSnapshot({ enabled: true })); + + const result = await setManagedPluginEnabled({ + pluginId: "workboard", + enabled: true, + env: {}, + }); + + expect(result.changedPaths).toEqual([ + "plugins.entries.workboard.enabled", + "plugins.slots.memory", + ]); + expect(result.warnings).toEqual(["Selected workboard for the memory slot."]); + }); + + it("pins curated ClawHub installs to the expected runtime id", async () => { + mocks.readConfig.mockResolvedValue(configSnapshot()); + mocks.officialCatalog.mockResolvedValue({ + source: "hosted", + entries: [hostedFeedDiffsEntry], + feed: { schemaVersion: 1, id: "test", generatedAt: "now", sequence: 1, entries: [] }, + metadata: { url: "https://clawhub.ai/feed", status: 200, checksum: "hash" }, + }); + mocks.clawhubInstall.mockResolvedValue({ + ok: true, + pluginId: "impostor", + targetDir: "/tmp/extensions/impostor", + extensions: ["index.js"], + packageName: "@openclaw/diffs", + clawhub: { + source: "clawhub", + clawhubUrl: "https://clawhub.ai", + clawhubPackage: "@openclaw/diffs", + clawhubFamily: "code-plugin", + }, + }); + + await expect( + installManagedPlugin({ + request: { + source: "clawhub", + packageName: "@openclaw/diffs", + acknowledgeClawHubRisk: true, + }, + env: {}, + }), + ).rejects.toThrow("expected diffs, got impostor"); + expect(mocks.clawhubInstall).toHaveBeenCalledWith( + expect.objectContaining({ + spec: "clawhub:@openclaw/diffs@2026.6.11", + expectedPluginId: "diffs", + expectedIntegrity: `sha256-${Buffer.from("a".repeat(64), "hex").toString("base64")}`, + acknowledgeClawHubRisk: true, + }), + ); + expect(mocks.persistInstall).not.toHaveBeenCalled(); + }); + + it("does not pin a runtime id when the hosted entry only exposes its package name", async () => { + const installRecord = { + source: "clawhub", + spec: "clawhub:@openclaw/bluebubbles", + installPath: "/tmp/extensions/bluebubbles", + }; + mocks.readConfig.mockResolvedValue(configSnapshot()); + mocks.officialCatalog.mockResolvedValue({ + source: "hosted", + // Hosted feed row without a declared runtime id: the id falls back to + // the package name, which must not become an expectedPluginId pin. + entries: [ + { + id: "@openclaw/bluebubbles", + title: "BlueBubbles", + state: "available", + publisher: { id: "openclaw", trust: "official" }, + install: { + candidates: [{ sourceRef: "public-clawhub", package: "@openclaw/bluebubbles" }], + }, + }, + ], + feed: { schemaVersion: 1, id: "test", generatedAt: "now", sequence: 1, entries: [] }, + metadata: { url: "https://clawhub.ai/feed", status: 200, checksum: "hash" }, + }); + mocks.clawhubInstall.mockResolvedValue({ + ok: true, + pluginId: "bluebubbles", + targetDir: "/tmp/extensions/bluebubbles", + extensions: ["index.js"], + packageName: "@openclaw/bluebubbles", + clawhub: { + source: "clawhub", + clawhubUrl: "https://clawhub.ai", + clawhubPackage: "@openclaw/bluebubbles", + clawhubFamily: "code-plugin", + }, + }); + mocks.persistInstall.mockResolvedValue({}); + mocks.refreshRegistry.mockResolvedValue(undefined); + mocks.metadata.mockReturnValue( + metadataSnapshot({ + enabled: false, + id: "bluebubbles", + name: "BlueBubbles", + origin: "global", + installRecord, + }), + ); + + const result = await installManagedPlugin({ + request: { source: "clawhub", packageName: "@openclaw/bluebubbles" }, + env: {}, + }); + + expect(mocks.clawhubInstall).toHaveBeenCalledWith( + expect.not.objectContaining({ expectedPluginId: expect.anything() }), + ); + expect(result.plugin.id).toBe("bluebubbles"); + }); + + it("keeps the runtime-id pin when a declared id equals the package name", async () => { + mocks.readConfig.mockResolvedValue(configSnapshot()); + mocks.officialCatalog.mockResolvedValue({ + source: "hosted", + // Unscoped package whose declared plugin id legitimately equals its name. + entries: [ + { + id: "sonos", + title: "Sonos", + state: "available", + publisher: { id: "openclaw", trust: "official" }, + openclaw: { plugin: { id: "sonos" } }, + install: { candidates: [{ sourceRef: "public-clawhub", package: "sonos" }] }, + }, + ], + feed: { schemaVersion: 1, id: "test", generatedAt: "now", sequence: 1, entries: [] }, + metadata: { url: "https://clawhub.ai/feed", status: 200, checksum: "hash" }, + }); + mocks.clawhubInstall.mockResolvedValue({ + ok: true, + pluginId: "impostor", + targetDir: "/tmp/extensions/impostor", + extensions: ["index.js"], + packageName: "sonos", + clawhub: { + source: "clawhub", + clawhubUrl: "https://clawhub.ai", + clawhubPackage: "sonos", + clawhubFamily: "code-plugin", + }, + }); + + await expect( + installManagedPlugin({ + request: { source: "clawhub", packageName: "sonos", acknowledgeClawHubRisk: true }, + env: {}, + }), + ).rejects.toThrow("expected sonos, got impostor"); + expect(mocks.clawhubInstall).toHaveBeenCalledWith( + expect.objectContaining({ expectedPluginId: "sonos" }), + ); + }); + + it("threads hosted ClawHub candidate integrity into official installs", async () => { + mocks.readConfig.mockResolvedValue(configSnapshot()); + mocks.officialCatalog.mockResolvedValue({ + source: "hosted", + entries: [hostedFeedDiffsEntry], + feed: { schemaVersion: 1, id: "test", generatedAt: "now", sequence: 1, entries: [] }, + metadata: { url: "https://clawhub.ai/feed", status: 200, checksum: "hash" }, + }); + mocks.clawhubInstall.mockResolvedValue({ + ok: true, + pluginId: "diffs", + targetDir: "/tmp/extensions/diffs", + extensions: ["index.js"], + packageName: "@openclaw/diffs", + clawhub: { + source: "clawhub", + clawhubUrl: "https://clawhub.ai", + clawhubPackage: "@openclaw/diffs", + clawhubFamily: "code-plugin", + }, + }); + mocks.persistInstall.mockResolvedValue({}); + mocks.metadata.mockReturnValue( + metadataSnapshot({ enabled: true, id: "diffs", name: "Diffs", origin: "global" }), + ); + + await installManagedPlugin({ + request: { source: "official", pluginId: "diffs" }, + env: {}, + }); + + expect(mocks.clawhubInstall).toHaveBeenCalledWith( + expect.objectContaining({ + spec: "clawhub:@openclaw/diffs@2026.6.11", + expectedPluginId: "diffs", + expectedIntegrity: `sha256-${Buffer.from("a".repeat(64), "hex").toString("base64")}`, + }), + ); + }); + + it("removes only the newly installed managed target after persistence conflicts", async () => { + const conflict = new Error("config changed during plugin install"); + const targetDir = "/tmp/extensions/demo"; + mocks.readConfig.mockResolvedValue(configSnapshot()); + mocks.clawhubInstall.mockResolvedValue({ + ok: true, + pluginId: "demo", + targetDir, + extensions: ["index.js"], + packageName: "community/demo", + clawhub: { + source: "clawhub", + clawhubUrl: "https://clawhub.ai", + clawhubPackage: "community/demo", + clawhubFamily: "code-plugin", + }, + }); + mocks.persistInstall.mockRejectedValue(conflict); + mocks.planUninstall.mockReturnValue({ + ok: true, + config: {}, + pluginId: "demo", + actions: {}, + directoryRemoval: { target: targetDir }, + }); + + await expect( + installManagedPlugin({ + request: { source: "clawhub", packageName: "community/demo" }, + env: {}, + }), + ).rejects.toBe(conflict); + expect(mocks.planUninstall).toHaveBeenCalledWith({ + config: { + plugins: { + installs: { + demo: expect.objectContaining({ + source: "clawhub", + spec: "clawhub:community/demo", + installPath: targetDir, + }), + }, + }, + }, + pluginId: "demo", + deleteFiles: true, + extensionsDir: expect.any(String), + }); + expect(mocks.applyUninstall).toHaveBeenCalledWith({ target: targetDir }); + }); + + it("retains a failed install target when the durable record already owns it", async () => { + const persistenceError = new Error("post-commit refresh failed"); + const targetDir = "/tmp/extensions/demo"; + mocks.readConfig.mockResolvedValue(configSnapshot()); + mocks.clawhubInstall.mockResolvedValue({ + ok: true, + pluginId: "demo", + targetDir, + extensions: ["index.js"], + packageName: "community/demo", + clawhub: { + source: "clawhub", + clawhubUrl: "https://clawhub.ai", + clawhubPackage: "community/demo", + clawhubFamily: "code-plugin", + }, + }); + mocks.persistInstall.mockRejectedValue(persistenceError); + mocks.installRecords.mockResolvedValue({ + demo: { source: "clawhub", installPath: targetDir }, + }); + + await expect( + installManagedPlugin({ + request: { source: "clawhub", packageName: "community/demo" }, + env: {}, + }), + ).rejects.toMatchObject({ + message: "post-commit refresh failed", + warning: expect.stringContaining("retained the managed target"), + cause: persistenceError, + }); + expect(mocks.planUninstall).not.toHaveBeenCalled(); + expect(mocks.applyUninstall).not.toHaveBeenCalled(); + }); + + it("serializes install and enable mutations through one Gateway lock", async () => { + let releasePersist: ((config: Record) => void) | undefined; + const heldPersist = new Promise>((resolve) => { + releasePersist = resolve; + }); + mocks.readConfig.mockResolvedValue(configSnapshot()); + mocks.clawhubInstall.mockResolvedValue({ + ok: true, + pluginId: "demo", + targetDir: "/tmp/extensions/demo", + extensions: ["index.js"], + packageName: "community/demo", + clawhub: { + source: "clawhub", + clawhubUrl: "https://clawhub.ai", + clawhubPackage: "community/demo", + clawhubFamily: "code-plugin", + }, + }); + mocks.persistInstall.mockReturnValueOnce(heldPersist); + mocks.replaceConfig.mockResolvedValue({}); + mocks.refreshRegistry.mockResolvedValue(undefined); + mocks.metadata + .mockReturnValueOnce(metadataSnapshot({ enabled: true, id: "demo", origin: "global" })) + .mockReturnValueOnce(metadataSnapshot({ enabled: false })) + .mockReturnValueOnce(metadataSnapshot({ enabled: true })); + + const install = installManagedPlugin({ + request: { source: "clawhub", packageName: "community/demo" }, + env: {}, + }); + await vi.waitFor(() => expect(mocks.persistInstall).toHaveBeenCalledTimes(1)); + const enable = setManagedPluginEnabled({ pluginId: "workboard", enabled: true, env: {} }); + await Promise.resolve(); + + expect(mocks.readConfig).toHaveBeenCalledTimes(1); + releasePersist?.({}); + await install; + await enable; + expect(mocks.readConfig).toHaveBeenCalledTimes(2); + }); + + it.each([ + { + code: "clawhub_risk_acknowledgement_required", + expectedKind: "invalid-request", + }, + { + code: "clawhub_security_unavailable", + expectedKind: "unavailable", + }, + ] as const)("classifies ClawHub failure $code", async ({ code, expectedKind }) => { + mocks.readConfig.mockResolvedValue(configSnapshot()); + mocks.clawhubInstall.mockResolvedValue({ + ok: false, + error: "ClawHub install failed", + code, + version: "1.2.3", + warning: "Review the release", + }); + + await expect( + installManagedPlugin({ + request: { source: "clawhub", packageName: "community/plugin" }, + env: {}, + }), + ).rejects.toMatchObject({ + kind: expectedKind, + code, + version: "1.2.3", + warning: "Review the release", + }); + }); + + it("suppresses hosted package-name-fallback entries once their package is installed", async () => { + // Hosted curated row without a declared runtime id: its catalog id falls + // back to the package name, which never matches the installed runtime id. + const hostedRow = { + id: "@openclaw/bluebubbles", + title: "BlueBubbles", + state: "available", + publisher: { id: "openclaw", trust: "official" }, + openclaw: { catalog: { featured: true, order: 90 } }, + install: { + candidates: [{ sourceRef: "public-clawhub", package: "@openclaw/bluebubbles" }], + }, + }; + mocks.metadata.mockReturnValue( + metadataSnapshot({ + enabled: true, + id: "bluebubbles", + name: "BlueBubbles", + origin: "global", + installRecord: { source: "clawhub", installPath: "/tmp/extensions/bluebubbles" }, + }), + ); + + const catalog = await listManagedPlugins({ + config: {}, + env: {}, + officialCatalog: { + entries: overlayBundledOfficialPluginCatalogMetadata( + // Route through the hosted-feed normalizer used by loadOfficialCatalog. + [hostedRow] as never, + [], + ), + }, + }); + + expect(catalog.plugins.map((plugin) => plugin.id)).toEqual(["bluebubbles"]); + }); + + it("marks external installs removable and bundled plugins non-removable", async () => { + mocks.metadata.mockReturnValue( + metadataSnapshot({ + enabled: true, + id: "diffs", + name: "Diffs", + origin: "global", + installRecord: { source: "clawhub", installPath: "/tmp/extensions/diffs" }, + }), + ); + const external = await listManagedPlugins({ + config: {}, + env: {}, + officialCatalog: { entries: [] }, + }); + expect(external.plugins[0]).toMatchObject({ id: "diffs", removable: true }); + + mocks.metadata.mockReturnValue(metadataSnapshot({ enabled: false })); + const bundled = await listManagedPlugins({ + config: {}, + env: {}, + officialCatalog: { entries: [] }, + }); + expect(bundled.plugins[0]).toMatchObject({ id: "workboard", removable: false }); + }); + + it("uninstalls an external plugin through commit, file removal, and registry refresh", async () => { + const installRecord = { + source: "clawhub", + spec: "clawhub:@openclaw/diffs", + installPath: "/tmp/extensions/diffs", + }; + const prepared = configSnapshot({ plugins: { entries: { diffs: { enabled: true } } } }); + mocks.readConfig.mockResolvedValue(prepared); + mocks.installRecords.mockResolvedValue({ diffs: installRecord }); + mocks.metadata.mockReturnValue( + metadataSnapshot({ + enabled: true, + id: "diffs", + name: "Diffs", + origin: "global", + installRecord, + }), + ); + mocks.planUninstall.mockReturnValue({ + ok: true, + config: { plugins: { installs: { diffs: installRecord } } }, + pluginId: "diffs", + actions: { + entry: true, + install: true, + allowlist: false, + denylist: false, + loadPath: false, + memorySlot: false, + contextEngineSlot: false, + channelConfig: false, + directory: false, + }, + directoryRemoval: { target: "/tmp/extensions/diffs" }, + }); + mocks.commitRecords.mockResolvedValue(undefined); + mocks.applyUninstall.mockResolvedValue({ directoryRemoved: true, warnings: [] }); + mocks.refreshRegistry.mockResolvedValue(undefined); + + const result = await uninstallManagedPlugin({ pluginId: "diffs", env: {} }); + + expect(mocks.planUninstall).toHaveBeenCalledWith( + expect.objectContaining({ pluginId: "diffs", deleteFiles: true }), + ); + expect(mocks.commitRecords).toHaveBeenCalledWith( + expect.objectContaining({ + previousInstallRecords: { diffs: installRecord }, + nextInstallRecords: {}, + baseHash: "base-hash", + writeOptions: prepared.writeOptions, + }), + ); + // Transient install records never persist into the written config document. + expect(mocks.commitRecords.mock.calls[0][0].nextConfig.plugins?.installs).toBeUndefined(); + expect(mocks.applyUninstall).toHaveBeenCalledWith({ target: "/tmp/extensions/diffs" }); + expect(mocks.refreshRegistry).toHaveBeenCalledWith( + expect.objectContaining({ reason: "source-changed", installRecords: {} }), + ); + expect(result).toMatchObject({ + pluginId: "diffs", + removed: ["config entry", "install record", "directory"], + }); + }); + + it("refuses to uninstall bundled plugins", async () => { + mocks.readConfig.mockResolvedValue(configSnapshot()); + mocks.installRecords.mockResolvedValue({}); + mocks.metadata.mockReturnValue(metadataSnapshot({ enabled: false })); + + await expect(uninstallManagedPlugin({ pluginId: "workboard", env: {} })).rejects.toThrow( + "bundled plugin cannot be uninstalled", + ); + expect(mocks.commitRecords).not.toHaveBeenCalled(); + expect(mocks.applyUninstall).not.toHaveBeenCalled(); + }); + + it("surfaces uninstall plan failures as lifecycle errors", async () => { + mocks.readConfig.mockResolvedValue(configSnapshot()); + mocks.installRecords.mockResolvedValue({}); + mocks.metadata.mockReturnValue(emptyMetadataSnapshot()); + mocks.planUninstall.mockReturnValue({ ok: false, error: "Plugin not found: ghost" }); + + await expect(uninstallManagedPlugin({ pluginId: "ghost", env: {} })).rejects.toThrow( + "Plugin not found: ghost", + ); + expect(mocks.commitRecords).not.toHaveBeenCalled(); + }); +}); diff --git a/src/plugins/management-service.ts b/src/plugins/management-service.ts new file mode 100644 index 000000000000..2d8de9b2384f --- /dev/null +++ b/src/plugins/management-service.ts @@ -0,0 +1,979 @@ +// Structured plugin catalog and lifecycle operations shared by Gateway-facing surfaces. +import path from "node:path"; +import { normalizeOptionalString } from "@openclaw/normalization-core/string-coerce"; +import { MANIFEST_KEY } from "../compat/legacy-names.js"; +import { + assertConfigWriteAllowedInCurrentMode, + readConfigFileSnapshotForWrite, + replaceConfigFile, +} from "../config/config.js"; +import { collectChangedPaths } from "../config/io.write-prepare.js"; +import { resolveIsNixMode } from "../config/paths.js"; +import type { OpenClawConfig } from "../config/types.openclaw.js"; +import type { PluginInstallRecord } from "../config/types.plugins.js"; +import { parseClawHubPluginSpec } from "../infra/clawhub-spec.js"; +import { formatErrorMessage } from "../infra/errors.js"; +import { createAsyncLock } from "../infra/json-files.js"; +import { parseRegistryNpmSpec } from "../infra/npm-registry-spec.js"; +import type { RuntimeEnv } from "../runtime.js"; +import { CLAWHUB_INSTALL_ERROR_CODE } from "./clawhub-error-codes.js"; +import { buildClawHubPluginInstallRecordFields } from "./clawhub-install-records.js"; +import { installPluginFromClawHub } from "./clawhub.js"; +import { enableExplicitlySelectedPluginInConfig } from "./enable.js"; +import { resolveDefaultPluginExtensionsDir } from "./install-paths.js"; +import { + resolveInstallConfigMutationPreflights, + selectInstallMutationWriteOptions, + persistPluginInstall, + type ConfigSnapshotForInstallPersist, +} from "./install-persistence.js"; +import { commitPluginInstallRecordsWithConfig } from "./install-record-commit.js"; +import { installPluginFromNpmSpec } from "./install.js"; +import { + loadInstalledPluginIndexInstallRecords, + removePluginInstallRecordFromRecords, + withPluginInstallRecords, + withoutPluginInstallRecords, +} from "./installed-plugin-index-records.js"; +import { buildNpmResolutionInstallFields } from "./installs.js"; +import type { PluginManifestRecord } from "./manifest-registry.js"; +import type { PluginDiagnostic } from "./manifest-types.js"; +import { + getOfficialExternalPluginCatalogManifest, + listOfficialExternalPluginCatalogEntries, + loadConfiguredHostedOfficialExternalPluginCatalogEntries, + resolveOfficialExternalPluginId, + resolveOfficialExternalPluginInstall, + resolveOfficialExternalPluginLabel, + type HostedOfficialExternalPluginCatalogLoadResult, + type OfficialExternalPluginCatalogEntry, +} from "./official-external-plugin-catalog.js"; +import { loadPluginMetadataSnapshot } from "./plugin-metadata-snapshot.js"; +import { refreshPluginRegistryAfterConfigMutation } from "./registry-refresh.js"; +import { applySlotSelectionForPlugin } from "./slot-selection.js"; +import { setPluginEnabledInConfig } from "./toggle-config.js"; +import { + applyPluginUninstallDirectoryRemoval, + formatUninstallActionLabels, + planPluginUninstall, +} from "./uninstall.js"; + +export type ManagedPluginCatalogEntry = { + id: string; + name: string; + packageName?: string; + description?: string; + version?: string; + kind?: string[]; + origin?: string; + installed: boolean; + enabled: boolean; + state: "enabled" | "disabled" | "not-installed" | "error"; + featured?: boolean; + order?: number; + install?: { source: "clawhub"; packageName: string } | { source: "official"; pluginId: string }; + error?: string; + category?: string; + removable?: boolean; +}; + +export type ManagedPluginCatalog = { + plugins: ManagedPluginCatalogEntry[]; + diagnostics: unknown[]; + mutationAllowed: boolean; +}; + +export type ManagedPluginInstallRequest = + | { + source: "clawhub"; + packageName: string; + version?: string; + acknowledgeClawHubRisk?: boolean; + } + | { source: "official"; pluginId: string }; + +export class ManagedPluginLifecycleError extends Error { + readonly kind: "invalid-request" | "unavailable"; + readonly code?: string; + readonly version?: string; + readonly warning?: string; + + constructor( + message: string, + details?: { + kind?: "invalid-request" | "unavailable"; + code?: string; + version?: string; + warning?: string; + cause?: unknown; + }, + ) { + super(message, details?.cause !== undefined ? { cause: details.cause } : undefined); + this.name = "ManagedPluginLifecycleError"; + this.kind = details?.kind ?? "invalid-request"; + this.code = details?.code; + this.version = details?.version; + this.warning = details?.warning; + } +} + +type OfficialCatalogResult = Pick & { + error?: string; +}; + +let officialCatalogCache: + | { key: string; result: Promise } + | undefined; + +function officialCatalogCacheKey(config: OpenClawConfig): string { + return JSON.stringify(config.marketplaces ?? null); +} + +/** Clear the process-stable hosted catalog snapshot after an explicit owner reload. */ +export function clearManagedPluginOfficialCatalogCache(): void { + officialCatalogCache = undefined; +} + +function mergeCatalogMetadata( + hosted: OfficialExternalPluginCatalogEntry, + bundled: OfficialExternalPluginCatalogEntry, +): OfficialExternalPluginCatalogEntry { + const hostedManifest = getOfficialExternalPluginCatalogManifest(hosted); + const bundledManifest = getOfficialExternalPluginCatalogManifest(bundled); + const bundledCatalog = bundledManifest?.catalog; + const bundledPlugin = bundledManifest?.plugin; + const bundledName = normalizeOptionalString(bundled.name); + const bundledDescription = normalizeOptionalString(bundled.description); + const bundledKind = normalizeOptionalString(bundled.kind); + const bundledSource = normalizeOptionalString(bundled.source); + if (!bundledCatalog && !bundledPlugin) { + return hosted; + } + return { + ...hosted, + ...(!normalizeOptionalString(hosted.name) && bundledName ? { name: bundledName } : {}), + ...(!normalizeOptionalString(hosted.description) && bundledDescription + ? { description: bundledDescription } + : {}), + ...(!normalizeOptionalString(hosted.kind) && bundledKind ? { kind: bundledKind } : {}), + ...(!normalizeOptionalString(hosted.source) && bundledSource ? { source: bundledSource } : {}), + [MANIFEST_KEY]: { + ...hostedManifest, + ...(bundledPlugin ? { plugin: { ...hostedManifest?.plugin, ...bundledPlugin } } : {}), + ...(bundledCatalog ? { catalog: { ...hostedManifest?.catalog, ...bundledCatalog } } : {}), + }, + }; +} + +function resolveCatalogPackageSourceIdentities( + entry: OfficialExternalPluginCatalogEntry, +): Set { + const install = resolveOfficialExternalPluginInstall(entry); + const clawhubPackage = install?.clawhubSpec + ? parseClawHubPluginSpec(install.clawhubSpec)?.name + : undefined; + const npmPackage = install?.npmSpec ? parseRegistryNpmSpec(install.npmSpec)?.name : undefined; + return new Set([ + ...(clawhubPackage ? [`clawhub:${clawhubPackage}`] : []), + ...(npmPackage ? [`npm:${npmPackage}`] : []), + ]); +} + +function matchesBundledCatalogIdentity(params: { + hosted: OfficialExternalPluginCatalogEntry; + bundled: OfficialExternalPluginCatalogEntry; +}): boolean { + const hostedSources = resolveCatalogPackageSourceIdentities(params.hosted); + const bundledSources = resolveCatalogPackageSourceIdentities(params.bundled); + return [...hostedSources].some((identity) => bundledSources.has(identity)); +} + +/** Overlay local runtime identity and editorial hints after an exact package/source match. */ +export function overlayBundledOfficialPluginCatalogMetadata( + entries: readonly OfficialExternalPluginCatalogEntry[], + bundledEntries: readonly OfficialExternalPluginCatalogEntry[] = listOfficialExternalPluginCatalogEntries(), +): OfficialExternalPluginCatalogEntry[] { + return entries.map((entry) => { + const matches = bundledEntries.filter((bundled) => + matchesBundledCatalogIdentity({ hosted: entry, bundled }), + ); + const bundled = matches.length === 1 ? matches[0] : undefined; + return bundled ? mergeCatalogMetadata(entry, bundled) : entry; + }); +} + +async function loadOfficialCatalog(config: OpenClawConfig): Promise { + const key = officialCatalogCacheKey(config); + if (officialCatalogCache?.key !== key) { + officialCatalogCache = { + key, + result: loadConfiguredHostedOfficialExternalPluginCatalogEntries(config), + }; + } + const result = await officialCatalogCache.result; + return { + entries: overlayBundledOfficialPluginCatalogMetadata(result.entries), + ...("error" in result ? { error: result.error } : {}), + }; +} + +function normalizeKinds(kind: string | readonly string[] | undefined): string[] | undefined { + const values = (typeof kind === "string" ? [kind] : (kind ?? [])) + .map((value) => value.trim()) + .filter(Boolean); + return values.length > 0 ? [...new Set(values)] : undefined; +} + +function normalizeCatalogMetadata( + value: unknown, +): { featured?: boolean; order?: number } | undefined { + if (!value || typeof value !== "object" || Array.isArray(value)) { + return undefined; + } + const record = value as Record; + const featured = typeof record.featured === "boolean" ? record.featured : undefined; + const order = + typeof record.order === "number" && Number.isFinite(record.order) ? record.order : undefined; + return featured === undefined && order === undefined + ? undefined + : { + ...(featured !== undefined ? { featured } : {}), + ...(order !== undefined ? { order } : {}), + }; +} + +function resolveCatalogInstallAction(params: { + config: OpenClawConfig; + entry: OfficialExternalPluginCatalogEntry; + pluginId: string; +}): ManagedPluginCatalogEntry["install"] { + const install = resolveOfficialExternalPluginInstall(params.entry, { + catalogConfig: params.config.marketplaces, + }); + const clawhub = install?.clawhubSpec ? parseClawHubPluginSpec(install.clawhubSpec) : undefined; + if (clawhub && !clawhub.version) { + return { source: "clawhub", packageName: clawhub.name }; + } + return install ? { source: "official", pluginId: params.pluginId } : undefined; +} + +/** Coarse manifest-derived grouping so catalog UIs can shelve a large inventory. */ +export function derivePluginCategory( + manifest: PluginManifestRecord | undefined, +): string | undefined { + if (!manifest) { + return undefined; + } + if (manifest.channels.length > 0 || Object.keys(manifest.channelConfigs ?? {}).length > 0) { + return "channel"; + } + const mediaProvider = + Object.keys(manifest.imageGenerationProviderMetadata ?? {}).length > 0 || + Object.keys(manifest.videoGenerationProviderMetadata ?? {}).length > 0 || + Object.keys(manifest.musicGenerationProviderMetadata ?? {}).length > 0 || + Object.keys(manifest.mediaUnderstandingProviderMetadata ?? {}).length > 0; + if ( + manifest.providers.length > 0 || + manifest.providerEndpoints?.length || + manifest.modelCatalog || + mediaProvider + ) { + return "provider"; + } + const kinds = normalizeKinds(manifest.kind); + if (kinds?.includes("memory")) { + return "memory"; + } + if (kinds?.includes("context-engine")) { + return "context-engine"; + } + if ( + manifest.contracts?.tools?.length || + Object.keys(manifest.toolMetadata ?? {}).length > 0 || + manifest.skills.length > 0 + ) { + return "tool"; + } + return undefined; +} + +function firstPluginError( + diagnostics: readonly PluginDiagnostic[], + pluginId: string, +): string | undefined { + return diagnostics.find( + (diagnostic) => diagnostic.level === "error" && diagnostic.pluginId === pluginId, + )?.message; +} + +function compareCatalogEntries( + left: ManagedPluginCatalogEntry, + right: ManagedPluginCatalogEntry, +): number { + const featured = Number(Boolean(right.featured)) - Number(Boolean(left.featured)); + if (featured !== 0) { + return featured; + } + const order = (left.order ?? Number.MAX_SAFE_INTEGER) - (right.order ?? Number.MAX_SAFE_INTEGER); + return order !== 0 ? order : left.name.localeCompare(right.name); +} + +/** Build cold installed state merged with the hosted official catalog and bundled curation. */ +export async function listManagedPlugins(params: { + config: OpenClawConfig; + env?: NodeJS.ProcessEnv; + officialCatalog?: OfficialCatalogResult; +}): Promise { + const env = params.env ?? process.env; + const metadata = loadPluginMetadataSnapshot({ config: params.config, env }); + const officialCatalog = params.officialCatalog ?? (await loadOfficialCatalog(params.config)); + const plugins = metadata.index.plugins.map((record): ManagedPluginCatalogEntry => { + const manifest = metadata.byPluginId.get(record.pluginId); + const catalog = normalizeCatalogMetadata(manifest?.catalog); + const error = firstPluginError(metadata.diagnostics, record.pluginId); + const kind = normalizeKinds(manifest?.kind); + const category = derivePluginCategory(manifest); + // Only externally installed plugins (tracked install record, non-bundled) can be removed. + const removable = + record.origin !== "bundled" && Boolean(metadata.index.installRecords[record.pluginId]); + // Prefer human labels over package specifiers: the registry backfills a + // missing manifest name with the npm package name, which is an install + // spec rather than a display name. + const manifestName = + manifest?.name && manifest.name !== record.packageName ? manifest.name : undefined; + const name = manifestName ?? manifest?.channelCatalogMeta?.label ?? record.pluginId; + const description = + manifest?.description ?? manifest?.channelCatalogMeta?.blurb ?? manifest?.packageDescription; + return { + id: record.pluginId, + name, + ...(record.packageName ? { packageName: record.packageName } : {}), + ...(description ? { description } : {}), + ...(record.packageVersion || manifest?.version + ? { version: record.packageVersion ?? manifest?.version } + : {}), + ...(kind ? { kind } : {}), + ...(record.origin ? { origin: record.origin } : {}), + installed: true, + enabled: record.enabled, + state: error ? "error" : record.enabled ? "enabled" : "disabled", + ...(catalog?.featured !== undefined ? { featured: catalog.featured } : {}), + ...(catalog?.order !== undefined ? { order: catalog.order } : {}), + ...(error ? { error } : {}), + ...(category ? { category } : {}), + removable, + }; + }); + const installedIds = new Set(plugins.map((plugin) => plugin.id)); + const installedPackageNames = new Set( + plugins.flatMap((plugin) => (plugin.packageName ? [plugin.packageName] : [])), + ); + // Hosted rows without a declared runtime id fall back to their package name, + // so id matching alone would keep them visible after a successful install. + const entryPackageInstalled = (entry: OfficialExternalPluginCatalogEntry) => + [...resolveCatalogPackageSourceIdentities(entry)].some((identity) => + installedPackageNames.has(identity.slice(identity.indexOf(":") + 1)), + ); + for (const entry of officialCatalog.entries) { + const pluginId = resolveOfficialExternalPluginId(entry); + const manifest = getOfficialExternalPluginCatalogManifest(entry); + const catalog = normalizeCatalogMetadata(manifest?.catalog); + if (!pluginId || !catalog || installedIds.has(pluginId) || entryPackageInstalled(entry)) { + continue; + } + const kind = normalizeKinds(entry.kind); + const install = resolveCatalogInstallAction({ config: params.config, entry, pluginId }); + const description = normalizeOptionalString(entry.description); + const version = normalizeOptionalString(entry.version); + plugins.push({ + id: pluginId, + name: resolveOfficialExternalPluginLabel(entry), + ...(description ? { description } : {}), + ...(version ? { version } : {}), + ...(kind ? { kind } : {}), + origin: "official", + installed: false, + enabled: false, + state: "not-installed", + ...(catalog.featured !== undefined ? { featured: catalog.featured } : {}), + ...(catalog.order !== undefined ? { order: catalog.order } : {}), + ...(install ? { install } : {}), + }); + } + const diagnostics: unknown[] = [...metadata.diagnostics]; + if (officialCatalog.error) { + diagnostics.push({ + level: "warn", + message: `Official plugin catalog fallback: ${officialCatalog.error}`, + }); + } + return { + plugins: plugins.toSorted(compareCatalogEntries), + diagnostics, + mutationAllowed: !resolveIsNixMode(env), + }; +} + +const withManagedPluginMutationLock = createAsyncLock(); + +function assertValidConfigSnapshot( + prepared: Awaited>, +): ConfigSnapshotForInstallPersist { + const { snapshot, writeOptions } = prepared; + if (!snapshot.valid) { + throw new ManagedPluginLifecycleError( + "Config invalid; run `openclaw doctor --fix` before managing plugins.", + ); + } + const mutationWriteOptions = selectInstallMutationWriteOptions(writeOptions); + const { pluginMutation } = resolveInstallConfigMutationPreflights({ + parsed: (snapshot.parsed ?? {}) as Record, + snapshotPath: snapshot.path, + writeOptions: mutationWriteOptions, + }); + if (pluginMutation.mode === "blocked") { + throw new ManagedPluginLifecycleError(pluginMutation.reason); + } + return { + config: snapshot.sourceConfig, + baseHash: snapshot.hash, + writeOptions: mutationWriteOptions, + }; +} + +async function readPluginMutationSnapshot( + env: NodeJS.ProcessEnv, +): Promise { + try { + assertConfigWriteAllowedInCurrentMode({ env }); + } catch (error) { + throw new ManagedPluginLifecycleError(formatErrorMessage(error), { cause: error }); + } + return assertValidConfigSnapshot(await readConfigFileSnapshotForWrite()); +} + +function createSilentRuntime(): RuntimeEnv { + return { + log: () => undefined, + error: () => undefined, + exit: (code) => { + throw new ManagedPluginLifecycleError(`plugin lifecycle exited with code ${code}`); + }, + }; +} + +function createInstallLogger(warnings: string[]) { + return { + info: () => undefined, + warn: (message: string) => warnings.push(message), + }; +} + +function resolveOfficialEntryById( + entries: readonly OfficialExternalPluginCatalogEntry[], + pluginId: string, +): OfficialExternalPluginCatalogEntry | undefined { + return entries.find((entry) => resolveOfficialExternalPluginId(entry) === pluginId); +} + +/** Explicitly declared runtime id, ignoring the entry-id fallback used for display. */ +function resolveDeclaredOfficialPluginId( + entry: OfficialExternalPluginCatalogEntry, +): string | undefined { + const manifest = getOfficialExternalPluginCatalogManifest(entry); + return ( + normalizeOptionalString(manifest?.plugin?.id) ?? + normalizeOptionalString(manifest?.channel?.id) ?? + normalizeOptionalString(manifest?.providers?.[0]?.id) + ); +} + +function resolveOfficialEntryByClawHubPackage( + entries: readonly OfficialExternalPluginCatalogEntry[], + config: OpenClawConfig, + packageName: string, +): OfficialExternalPluginCatalogEntry | undefined { + // Bundled identities remain the local trust anchor when a hosted feed omits + // its ClawHub candidate; hosted install/version metadata is never copied back. + return [...listOfficialExternalPluginCatalogEntries(), ...entries].find((entry) => { + const install = resolveOfficialExternalPluginInstall(entry, { + catalogConfig: config.marketplaces, + }); + return parseClawHubPluginSpec(install?.clawhubSpec ?? "")?.name === packageName; + }); +} + +function resolveHostedOfficialEntryByClawHubPackage( + entries: readonly OfficialExternalPluginCatalogEntry[], + config: OpenClawConfig, + packageName: string, +): OfficialExternalPluginCatalogEntry | undefined { + return entries.find((entry) => { + const install = resolveOfficialExternalPluginInstall(entry, { + catalogConfig: config.marketplaces, + }); + return parseClawHubPluginSpec(install?.clawhubSpec ?? "")?.name === packageName; + }); +} + +function buildClawHubSpec(packageName: string, version?: string): string { + const parsed = parseClawHubPluginSpec(`clawhub:${packageName}`); + if (!parsed || parsed.version) { + throw new ManagedPluginLifecycleError(`invalid ClawHub package name: ${packageName}`); + } + return `clawhub:${packageName}${version ? `@${version}` : ""}`; +} + +function throwInstallFailure(result: { + error: string; + code?: string; + version?: string; + warning?: string; +}): never { + const unavailable = + !result.code || + result.code === CLAWHUB_INSTALL_ERROR_CODE.ARTIFACT_UNAVAILABLE || + result.code === CLAWHUB_INSTALL_ERROR_CODE.ARTIFACT_DOWNLOAD_UNAVAILABLE || + result.code === CLAWHUB_INSTALL_ERROR_CODE.CLAWHUB_SECURITY_UNAVAILABLE; + throw new ManagedPluginLifecycleError(result.error, { + kind: unavailable ? "unavailable" : "invalid-request", + code: result.code, + version: result.version, + warning: result.warning, + cause: result, + }); +} + +function installRecordOwnsTarget( + record: PluginInstallRecord | undefined, + targetDir: string, +): boolean { + return Boolean( + record?.installPath && path.resolve(record.installPath) === path.resolve(targetDir), + ); +} + +async function cleanupFailedManagedPluginInstall(params: { + pluginId: string; + install: PluginInstallRecord; + targetDir: string; + extensionsDir: string; +}): Promise { + let installRecords: Record; + try { + installRecords = await loadInstalledPluginIndexInstallRecords(); + } catch (error) { + return [ + `Could not verify whether the failed plugin install was committed; retained ${params.targetDir}: ${formatErrorMessage(error)}`, + ]; + } + if (installRecordOwnsTarget(installRecords[params.pluginId], params.targetDir)) { + return [ + `Plugin install persistence reported an error after ${params.targetDir} was recorded; retained the managed target.`, + ]; + } + + const plan = planPluginUninstall({ + config: { + plugins: { installs: { [params.pluginId]: params.install } }, + }, + pluginId: params.pluginId, + deleteFiles: true, + extensionsDir: params.extensionsDir, + }); + if (!plan.ok) { + return [`Could not plan cleanup for failed plugin install: ${plan.error}`]; + } + if (!plan.directoryRemoval) { + return [ + `Could not resolve a managed cleanup target for failed plugin install ${params.pluginId}.`, + ]; + } + if (path.resolve(plan.directoryRemoval.target) !== path.resolve(params.targetDir)) { + return [ + `Refused cleanup for failed plugin install ${params.pluginId}: planned target does not match the newly installed target.`, + ]; + } + try { + const cleanup = await applyPluginUninstallDirectoryRemoval(plan.directoryRemoval); + return cleanup.warnings; + } catch (error) { + return [ + `Failed to remove the newly installed target after plugin persistence failed: ${formatErrorMessage(error)}`, + ]; + } +} + +function throwPersistenceFailureWithCleanupWarnings(error: unknown, warnings: string[]): never { + if (warnings.length === 0) { + throw error; + } + const cleanupWarning = [...new Set(warnings)].join("\n"); + if (error instanceof ManagedPluginLifecycleError) { + throw new ManagedPluginLifecycleError(error.message, { + kind: error.kind, + code: error.code, + version: error.version, + warning: [error.warning, cleanupWarning].filter(Boolean).join("\n"), + cause: error, + }); + } + throw new ManagedPluginLifecycleError(formatErrorMessage(error), { + kind: "unavailable", + warning: cleanupWarning, + cause: error, + }); +} + +async function persistManagedPluginInstall(params: { + snapshot: ConfigSnapshotForInstallPersist; + pluginId: string; + install: PluginInstallRecord; + targetDir: string; + extensionsDir: string; +}): Promise { + try { + return await persistPluginInstall({ + snapshot: params.snapshot, + pluginId: params.pluginId, + install: params.install, + invalidateRuntimeCache: false, + runtime: createSilentRuntime(), + }); + } catch (error) { + const cleanupWarnings = await cleanupFailedManagedPluginInstall({ + pluginId: params.pluginId, + install: params.install, + targetDir: params.targetDir, + extensionsDir: params.extensionsDir, + }); + return throwPersistenceFailureWithCleanupWarnings(error, cleanupWarnings); + } +} + +async function installFromClawHub(params: { + request: Extract; + snapshot: ConfigSnapshotForInstallPersist; + officialEntries: readonly OfficialExternalPluginCatalogEntry[]; + env: NodeJS.ProcessEnv; + warnings: string[]; + expectedIntegrity?: string; +}): Promise<{ pluginId: string; config: OpenClawConfig }> { + const packageName = params.request.packageName.trim(); + const official = resolveOfficialEntryByClawHubPackage( + params.officialEntries, + params.snapshot.config, + packageName, + ); + // Pin the runtime id only when the catalog entry declares one; the entry-id + // fallback is just the package name and would reject legitimate installs, + // while a declared id must stay enforced even if it equals the package name. + const expectedPluginId = official ? resolveDeclaredOfficialPluginId(official) : undefined; + const hostedOfficial = resolveHostedOfficialEntryByClawHubPackage( + params.officialEntries, + params.snapshot.config, + packageName, + ); + const hostedInstall = hostedOfficial + ? resolveOfficialExternalPluginInstall(hostedOfficial, { + catalogConfig: params.snapshot.config.marketplaces, + }) + : undefined; + const hostedClawHub = parseClawHubPluginSpec(hostedInstall?.clawhubSpec ?? ""); + const requestMatchesHostedCandidate = + !params.request.version || params.request.version === hostedClawHub?.version; + const expectedIntegrity = + params.expectedIntegrity ?? + (requestMatchesHostedCandidate ? hostedInstall?.expectedIntegrity : undefined); + const version = + params.request.version ?? (requestMatchesHostedCandidate ? hostedClawHub?.version : undefined); + const spec = buildClawHubSpec(packageName, version); + const extensionsDir = resolveDefaultPluginExtensionsDir(params.env); + const result = await installPluginFromClawHub({ + spec, + config: params.snapshot.config, + extensionsDir, + logger: createInstallLogger(params.warnings), + ...(expectedPluginId ? { expectedPluginId } : {}), + ...(expectedIntegrity ? { expectedIntegrity } : {}), + ...(params.request.acknowledgeClawHubRisk ? { acknowledgeClawHubRisk: true } : {}), + }); + if (!result.ok) { + return throwInstallFailure(result); + } + if (expectedPluginId && result.pluginId !== expectedPluginId) { + throw new ManagedPluginLifecycleError( + `official catalog plugin id mismatch: expected ${expectedPluginId}, got ${result.pluginId}`, + ); + } + const install: PluginInstallRecord = { + ...buildClawHubPluginInstallRecordFields(result.clawhub), + spec, + installPath: result.targetDir, + }; + const config = await persistManagedPluginInstall({ + snapshot: params.snapshot, + pluginId: result.pluginId, + install, + targetDir: result.targetDir, + extensionsDir, + }); + return { pluginId: result.pluginId, config }; +} + +async function installFromOfficialCatalog(params: { + request: Extract; + snapshot: ConfigSnapshotForInstallPersist; + officialEntries: readonly OfficialExternalPluginCatalogEntry[]; + env: NodeJS.ProcessEnv; + warnings: string[]; +}): Promise<{ pluginId: string; config: OpenClawConfig }> { + const entry = resolveOfficialEntryById(params.officialEntries, params.request.pluginId); + if (!entry) { + throw new ManagedPluginLifecycleError( + `unknown official plugin catalog entry: ${params.request.pluginId}`, + ); + } + const pluginId = resolveOfficialExternalPluginId(entry); + const install = resolveOfficialExternalPluginInstall(entry, { + catalogConfig: params.snapshot.config.marketplaces, + }); + if (!pluginId || !install) { + throw new ManagedPluginLifecycleError( + `official plugin catalog entry is not installable: ${params.request.pluginId}`, + ); + } + const clawhub = install.clawhubSpec ? parseClawHubPluginSpec(install.clawhubSpec) : undefined; + if (clawhub) { + return await installFromClawHub({ + request: { + source: "clawhub", + packageName: clawhub.name, + ...(clawhub.version ? { version: clawhub.version } : {}), + }, + snapshot: params.snapshot, + officialEntries: params.officialEntries, + env: params.env, + warnings: params.warnings, + ...(install.expectedIntegrity ? { expectedIntegrity: install.expectedIntegrity } : {}), + }); + } + if (!install.npmSpec) { + throw new ManagedPluginLifecycleError( + `official plugin catalog entry has no supported install source: ${params.request.pluginId}`, + ); + } + const extensionsDir = resolveDefaultPluginExtensionsDir(params.env); + const result = await installPluginFromNpmSpec({ + spec: install.npmSpec, + config: params.snapshot.config, + extensionsDir, + expectedPluginId: pluginId, + ...(install.expectedIntegrity ? { expectedIntegrity: install.expectedIntegrity } : {}), + trustedSourceLinkedOfficialInstall: true, + logger: createInstallLogger(params.warnings), + }); + if (!result.ok) { + return throwInstallFailure(result); + } + if (result.pluginId !== pluginId) { + throw new ManagedPluginLifecycleError( + `official catalog plugin id mismatch: expected ${pluginId}, got ${result.pluginId}`, + ); + } + const installRecord: PluginInstallRecord = { + source: "npm", + spec: install.npmSpec, + installPath: result.targetDir, + ...(result.version ? { version: result.version } : {}), + ...buildNpmResolutionInstallFields(result.npmResolution), + }; + const config = await persistManagedPluginInstall({ + snapshot: params.snapshot, + pluginId, + install: installRecord, + targetDir: result.targetDir, + extensionsDir, + }); + return { pluginId, config }; +} + +/** Install a ClawHub or curated official plugin through the canonical install pipeline. */ +export async function installManagedPlugin(params: { + request: ManagedPluginInstallRequest; + env?: NodeJS.ProcessEnv; +}): Promise<{ plugin: ManagedPluginCatalogEntry; warnings?: string[] }> { + return await withManagedPluginMutationLock(async () => { + const env = params.env ?? process.env; + const snapshot = await readPluginMutationSnapshot(env); + const officialCatalog = await loadOfficialCatalog(snapshot.config); + const warnings: string[] = []; + const installed = + params.request.source === "clawhub" + ? await installFromClawHub({ + request: params.request, + snapshot, + officialEntries: officialCatalog.entries, + env, + warnings, + }) + : await installFromOfficialCatalog({ + request: params.request, + snapshot, + officialEntries: officialCatalog.entries, + env, + warnings, + }); + const catalog = await listManagedPlugins({ + config: installed.config, + env, + officialCatalog, + }); + const plugin = catalog.plugins.find((entry) => entry.id === installed.pluginId); + if (!plugin) { + throw new ManagedPluginLifecycleError( + `installed plugin missing from refreshed registry: ${installed.pluginId}`, + ); + } + return { + plugin, + ...(warnings.length > 0 ? { warnings: [...new Set(warnings)] } : {}), + }; + }); +} + +/** Persist desired plugin policy while preserving allow/deny, slot, include, and hash guards. */ +export async function setManagedPluginEnabled(params: { + pluginId: string; + enabled: boolean; + env?: NodeJS.ProcessEnv; +}): Promise<{ + plugin: ManagedPluginCatalogEntry; + changedPaths: string[]; + warnings?: string[]; +}> { + return await withManagedPluginMutationLock(async () => { + const env = params.env ?? process.env; + const snapshot = await readPluginMutationSnapshot(env); + const metadata = loadPluginMetadataSnapshot({ config: snapshot.config, env }); + const pluginId = metadata.normalizePluginId(params.pluginId.trim()); + if (!metadata.index.plugins.some((plugin) => plugin.pluginId === pluginId)) { + throw new ManagedPluginLifecycleError(`plugin not installed: ${params.pluginId}`); + } + let next = snapshot.config; + const warnings: string[] = []; + let policyPluginId = pluginId; + if (params.enabled) { + const enableResult = enableExplicitlySelectedPluginInConfig(next, pluginId, { + updateChannelConfig: false, + }); + if (!enableResult.enabled) { + throw new ManagedPluginLifecycleError( + `plugin "${pluginId}" could not be enabled (${enableResult.reason ?? "unknown reason"})`, + ); + } + next = enableResult.config; + policyPluginId = enableResult.pluginId; + const slotResult = applySlotSelectionForPlugin(next, pluginId); + next = slotResult.config; + warnings.push(...slotResult.warnings); + } else { + next = setPluginEnabledInConfig(next, pluginId, false, { updateChannelConfig: false }); + } + const changedPaths = new Set(); + collectChangedPaths(snapshot.config, next, "", changedPaths); + await replaceConfigFile({ + nextConfig: next, + baseHash: snapshot.baseHash, + writeOptions: snapshot.writeOptions, + }); + await refreshPluginRegistryAfterConfigMutation({ + config: next, + reason: "policy-changed", + invalidateRuntimeCache: false, + policyPluginIds: [policyPluginId], + }); + const catalog = await listManagedPlugins({ config: next, env }); + const plugin = catalog.plugins.find((entry) => entry.id === pluginId); + if (!plugin) { + throw new ManagedPluginLifecycleError( + `updated plugin missing from refreshed registry: ${pluginId}`, + ); + } + return { + plugin, + changedPaths: [...changedPaths].filter(Boolean).toSorted(), + ...(warnings.length > 0 ? { warnings } : {}), + }; + }); +} + +/** Remove an installed plugin: config references, install record, and managed files. */ +export async function uninstallManagedPlugin(params: { + pluginId: string; + env?: NodeJS.ProcessEnv; +}): Promise<{ pluginId: string; removed: string[]; warnings?: string[] }> { + return await withManagedPluginMutationLock(async () => { + const env = params.env ?? process.env; + const snapshot = await readPluginMutationSnapshot(env); + const installRecords = await loadInstalledPluginIndexInstallRecords(); + // Mirror the CLI uninstall flow: plan against config carrying install records + // so managed npm/git directories resolve, then persist the stripped config. + const configWithRecords = withPluginInstallRecords(snapshot.config, installRecords); + const metadata = loadPluginMetadataSnapshot({ config: configWithRecords, env }); + const pluginId = metadata.normalizePluginId(params.pluginId.trim()); + const record = metadata.index.plugins.find((plugin) => plugin.pluginId === pluginId); + if (record?.origin === "bundled") { + throw new ManagedPluginLifecycleError( + `bundled plugin cannot be uninstalled: ${pluginId}; disable it instead`, + ); + } + const manifest = metadata.byPluginId.get(pluginId); + // Mirror the CLI cold path: pass channel ownership only when declared so + // planPluginUninstall keeps its plugin-id fallback for channel config keys. + const channelIds = manifest && manifest.channels.length > 0 ? manifest.channels : undefined; + const extensionsDir = resolveDefaultPluginExtensionsDir(env); + const plan = planPluginUninstall({ + config: configWithRecords, + pluginId, + ...(channelIds ? { channelIds } : {}), + deleteFiles: true, + extensionsDir, + }); + if (!plan.ok) { + throw new ManagedPluginLifecycleError(plan.error); + } + const nextConfig = withoutPluginInstallRecords(plan.config); + const nextInstallRecords = removePluginInstallRecordFromRecords(installRecords, pluginId); + await commitPluginInstallRecordsWithConfig({ + previousInstallRecords: installRecords, + nextInstallRecords, + nextConfig, + baseHash: snapshot.baseHash, + writeOptions: snapshot.writeOptions, + }); + const directoryResult = await applyPluginUninstallDirectoryRemoval(plan.directoryRemoval); + const warnings = [...directoryResult.warnings]; + await refreshPluginRegistryAfterConfigMutation({ + config: nextConfig, + reason: "source-changed", + installRecords: nextInstallRecords, + invalidateRuntimeCache: false, + logger: { warn: (message) => warnings.push(message) }, + }); + const removed = formatUninstallActionLabels({ + ...plan.actions, + directory: directoryResult.directoryRemoved, + }); + return { + pluginId, + removed, + ...(warnings.length > 0 ? { warnings: [...new Set(warnings)] } : {}), + }; + }); +} + +/** Normalize unexpected lifecycle failures for Gateway response adapters. */ +export function formatManagedPluginLifecycleError(error: unknown): string { + return formatErrorMessage(error); +} diff --git a/src/plugins/manifest-registry.test.ts b/src/plugins/manifest-registry.test.ts index e5bca64a8d83..d191632b553b 100644 --- a/src/plugins/manifest-registry.test.ts +++ b/src/plugins/manifest-registry.test.ts @@ -478,6 +478,25 @@ describe("loadPluginManifestRegistry", () => { expect(registry.plugins[0]?.icon).toBe("https://cdn.simpleicons.org/simpleicons"); }); + it("preserves manifest catalog metadata on registry records", () => { + const dir = makeTempDir(); + writeManifest(dir, { + id: "catalog-demo", + catalog: { featured: true, order: 20 }, + configSchema: { type: "object" }, + }); + + const registry = loadRegistry([ + createPluginCandidate({ + idHint: "catalog-demo", + rootDir: dir, + origin: "bundled", + }), + ]); + + expect(registry.plugins[0]?.catalog).toEqual({ featured: true, order: 20 }); + }); + it("keeps only the higher-precedence plugin for truly distinct duplicates", () => { const dirA = makeTempDir(); const dirB = makeTempDir(); @@ -1426,6 +1445,26 @@ describe("loadPluginManifestRegistry", () => { expectNoRegistryDiagnosticContains(registry, "without channelConfigs metadata"); }); + it("hydrates and overlays official external catalog curation metadata", () => { + const dir = makeTempDir(); + writeManifest(dir, { + id: "diffs", + catalog: { featured: false }, + configSchema: { type: "object" }, + }); + + const registry = loadRegistry([ + createPluginCandidate({ + idHint: "diffs", + rootDir: dir, + origin: "global", + packageName: "@openclaw/diffs", + }), + ]); + + expect(registry.plugins[0]?.catalog).toEqual({ featured: false, order: 40 }); + }); + it("fills missing official external catalog descriptors for partial npm channel configs", () => { const dir = makeTempDir(); writeManifest(dir, { diff --git a/src/plugins/manifest-registry.ts b/src/plugins/manifest-registry.ts index 70413ff6e7d8..0cd0cbf2a142 100644 --- a/src/plugins/manifest-registry.ts +++ b/src/plugins/manifest-registry.ts @@ -34,6 +34,7 @@ import { loadPluginManifest, type OpenClawPackageManifest, type PluginManifestActivation, + type PluginManifestCatalog, type PluginManifestConfigContracts, type PluginManifest, type PluginManifestCapabilityProviderMetadata, @@ -202,6 +203,7 @@ export type PluginManifestRecord = { id: string; name?: string; description?: string; + catalog?: PluginManifestCatalog; icon?: string; version?: string; packageName?: string; @@ -444,6 +446,26 @@ function mergeCatalogChannelConfigs(params: { return Object.keys(merged).length > 0 ? merged : undefined; } +function mergeManifestCatalog( + manifestCatalog: PluginManifestCatalog | undefined, + officialCatalog: PluginManifestCatalog | undefined, +): PluginManifestCatalog | undefined { + const featuredCandidate = manifestCatalog?.featured ?? officialCatalog?.featured; + const orderCandidate = manifestCatalog?.order ?? officialCatalog?.order; + const featured = typeof featuredCandidate === "boolean" ? featuredCandidate : undefined; + const order = + typeof orderCandidate === "number" && Number.isFinite(orderCandidate) + ? orderCandidate + : undefined; + if (featured === undefined && order === undefined) { + return undefined; + } + return { + ...(featured !== undefined ? { featured } : {}), + ...(order !== undefined ? { order } : {}), + }; +} + function buildRecord(params: { manifest: PluginManifest; candidate: PluginCandidate; @@ -491,6 +513,7 @@ function buildRecord(params: { name: normalizeOptionalString(params.manifest.name) ?? params.candidate.packageName, description: normalizeOptionalString(params.manifest.description) ?? params.candidate.packageDescription, + catalog: mergeManifestCatalog(params.manifest.catalog, officialCatalogManifest?.catalog), icon: normalizeOptionalString(params.manifest.icon), version: normalizeOptionalString(params.manifest.version) ?? params.candidate.packageVersion, packageName: params.candidate.packageName, diff --git a/src/plugins/manifest.json5-tolerance.test.ts b/src/plugins/manifest.json5-tolerance.test.ts index 358383645c7d..f2f345691e92 100644 --- a/src/plugins/manifest.json5-tolerance.test.ts +++ b/src/plugins/manifest.json5-tolerance.test.ts @@ -148,6 +148,26 @@ describe("loadPluginManifest JSON5 tolerance", () => { } }); + it("normalizes catalog curation metadata from the manifest", () => { + const dir = makeTempDir(); + const json5Content = `{ + id: "catalog-plugin", + catalog: { + featured: false, + order: 0, + }, + configSchema: { type: "object" } +}`; + fs.writeFileSync(path.join(dir, "openclaw.plugin.json"), json5Content, "utf-8"); + + const result = loadPluginManifest(dir, false); + + expect(result.ok).toBe(true); + if (result.ok) { + expect(result.manifest.catalog).toEqual({ featured: false, order: 0 }); + } + }); + it("normalizes activation and setup descriptor metadata from the manifest", () => { const dir = makeTempDir(); const json5Content = `{ diff --git a/src/plugins/manifest.ts b/src/plugins/manifest.ts index ca4a4e139fd0..bd263865a307 100644 --- a/src/plugins/manifest.ts +++ b/src/plugins/manifest.ts @@ -294,6 +294,11 @@ export type PluginManifestConfigContracts = { secretInputs?: PluginManifestSecretInputContracts; }; +export type PluginManifestCatalog = { + featured?: boolean; + order?: number; +}; + export type PluginManifest = { id: string; configSchema: JsonSchemaObject; @@ -378,6 +383,8 @@ export type PluginManifest = { skills?: string[]; name?: string; description?: string; + /** Optional presentation hints for plugin catalog surfaces. */ + catalog?: PluginManifestCatalog; /** Optional HTTPS URL for marketplace/catalog card artwork. */ icon?: string; version?: string; @@ -847,6 +854,22 @@ function normalizePluginToolMetadata( return Object.keys(normalized).length > 0 ? normalized : undefined; } +function normalizeManifestCatalog(value: unknown): PluginManifestCatalog | undefined { + if (!isRecord(value)) { + return undefined; + } + const featured = typeof value.featured === "boolean" ? value.featured : undefined; + const order = + typeof value.order === "number" && Number.isFinite(value.order) ? value.order : undefined; + if (featured === undefined && order === undefined) { + return undefined; + } + return { + ...(featured !== undefined ? { featured } : {}), + ...(order !== undefined ? { order } : {}), + }; +} + function normalizeManifestContracts(value: unknown): PluginManifestContracts | undefined { if (!isRecord(value)) { return undefined; @@ -1776,6 +1799,7 @@ export function loadPluginManifest( ); const name = normalizeOptionalString(raw.name); const description = normalizeOptionalString(raw.description); + const catalog = normalizeManifestCatalog(raw.catalog); const icon = normalizeOptionalString(raw.icon); const version = normalizeOptionalString(raw.version); const channels = normalizeTrimmedStringList(raw.channels); @@ -1871,6 +1895,7 @@ export function loadPluginManifest( skills, name, description, + catalog, icon, version, uiHints, diff --git a/src/plugins/official-external-plugin-catalog.test.ts b/src/plugins/official-external-plugin-catalog.test.ts index c37935c7d52e..9b8185680b4a 100644 --- a/src/plugins/official-external-plugin-catalog.test.ts +++ b/src/plugins/official-external-plugin-catalog.test.ts @@ -17,6 +17,7 @@ import { DEFAULT_OFFICIAL_EXTERNAL_PLUGIN_CATALOG_FEED_URL, createInMemoryHostedOfficialExternalPluginCatalogSnapshotStore, getOfficialExternalPluginCatalogEntry, + getOfficialExternalPluginCatalogManifest, isOfficialExternalPluginCatalogFeed, filterOfficialExternalPluginCatalogEntriesBySourceRefs, listOfficialExternalPluginCatalogEntries, @@ -131,6 +132,28 @@ describe("official external plugin catalog", () => { expect(officialExternalPluginCatalog.entries.length).toBeGreaterThan(0); }); + it("curates featured external plugins with ClawHub install alternatives", () => { + const featured = [ + ["diffs", "@openclaw/diffs", 40], + ["lobster", "@openclaw/lobster", 50], + ["tokenjuice", "@openclaw/tokenjuice", 60], + ["memory-lancedb", "@openclaw/memory-lancedb", 70], + ] as const; + + for (const [id, npmSpec, order] of featured) { + const entry = expectCatalogEntry(id); + expect(getOfficialExternalPluginCatalogManifest(entry)?.catalog).toEqual({ + featured: true, + order, + }); + expect(resolveOfficialExternalPluginInstall(entry)).toMatchObject({ + clawhubSpec: `clawhub:${npmSpec}`, + npmSpec, + defaultChoice: "npm", + }); + } + }); + it("does not allow malformed feed wrappers to count as feed documents", () => { expect( isOfficialExternalPluginCatalogFeed({ diff --git a/src/plugins/official-external-plugin-catalog.ts b/src/plugins/official-external-plugin-catalog.ts index 2b56cec6924c..3a757e36ea0b 100644 --- a/src/plugins/official-external-plugin-catalog.ts +++ b/src/plugins/official-external-plugin-catalog.ts @@ -9,6 +9,7 @@ import { MANIFEST_KEY } from "../compat/legacy-names.js"; import { normalizeClawHubSha256Integrity } from "../infra/clawhub.js"; import { isRecord } from "../utils.js"; import type { + PluginManifestCatalog, PluginManifestChannelConfig, PluginManifestContracts, PluginManifestProviderEndpoint, @@ -76,6 +77,7 @@ export type OfficialExternalPluginCatalogManifest = { id?: string; label?: string; }; + catalog?: PluginManifestCatalog; channel?: { id?: string; label?: string; diff --git a/src/cli/plugins-registry-refresh.ts b/src/plugins/registry-refresh.ts similarity index 84% rename from src/cli/plugins-registry-refresh.ts rename to src/plugins/registry-refresh.ts index 85b341820af7..6a0f035691c6 100644 --- a/src/cli/plugins-registry-refresh.ts +++ b/src/plugins/registry-refresh.ts @@ -1,10 +1,10 @@ // Registry refresh helper shared by plugin config mutations that need post-write discovery repair. import type { OpenClawConfig } from "../config/types.openclaw.js"; import { formatErrorMessage } from "../infra/errors.js"; -import { loadInstalledPluginIndexInstallRecords } from "../plugins/installed-plugin-index-records.js"; -import type { InstalledPluginIndexRefreshReason } from "../plugins/installed-plugin-index.js"; -import { tracePluginLifecyclePhaseAsync } from "../plugins/plugin-lifecycle-trace.js"; -import { refreshPluginRegistry } from "../plugins/plugin-registry.js"; +import { loadInstalledPluginIndexInstallRecords } from "./installed-plugin-index-records.js"; +import type { InstalledPluginIndexRefreshReason } from "./installed-plugin-index.js"; +import { tracePluginLifecyclePhaseAsync } from "./plugin-lifecycle-trace.js"; +import { refreshPluginRegistry } from "./plugin-registry.js"; /** Optional warning sink for best-effort registry/cache refresh failures. */ export type PluginRegistryRefreshLogger = { @@ -56,7 +56,7 @@ export async function invalidatePluginRuntimeDiscoveryAfterConfigMutation(params logger?: PluginRegistryRefreshLogger; }): Promise { try { - const { clearPluginRegistryLoadCache } = await import("../plugins/loader.js"); + const { clearPluginRegistryLoadCache } = await import("./loader.js"); clearPluginRegistryLoadCache(); } catch (error) { params.logger?.warn?.(`Plugin runtime cache invalidation failed: ${formatErrorMessage(error)}`); diff --git a/src/plugins/slot-selection.ts b/src/plugins/slot-selection.ts new file mode 100644 index 000000000000..ff3d070e9628 --- /dev/null +++ b/src/plugins/slot-selection.ts @@ -0,0 +1,89 @@ +import type { OpenClawConfig } from "../config/types.openclaw.js"; +import type { PluginKind } from "./plugin-kind.types.js"; +import { loadPluginMetadataSnapshot } from "./plugin-metadata-snapshot.js"; +import { applyExclusiveSlotSelection } from "./slots.js"; +import { buildPluginDiagnosticsReport } from "./status.js"; + +type SlotSelectionPlugin = { + id: string; + kind?: PluginKind | PluginKind[]; +}; + +type SlotSelectionRegistry = { + plugins: SlotSelectionPlugin[]; +}; + +function mergeRuntimeKinds( + report: SlotSelectionRegistry, + runtimeReport: SlotSelectionRegistry, +): SlotSelectionRegistry { + const runtimeKinds = new Map( + runtimeReport.plugins + .filter((plugin) => plugin.kind) + .map((plugin) => [plugin.id, plugin.kind] as const), + ); + return { + plugins: report.plugins.map((plugin) => { + if (plugin.kind) { + return plugin; + } + const runtimeKind = runtimeKinds.get(plugin.id); + return runtimeKind ? { ...plugin, kind: runtimeKind } : plugin; + }), + }; +} + +function loadRuntimeKindReportForPlugins(config: OpenClawConfig, pluginIds: readonly string[]) { + return buildPluginDiagnosticsReport({ + config, + onlyPluginIds: [...pluginIds], + }); +} + +function buildSlotSelectionRegistry( + config: OpenClawConfig, + pluginId: string, +): SlotSelectionRegistry { + const plugins = loadPluginMetadataSnapshot({ + config, + env: process.env, + }).plugins.filter((plugin) => plugin.id === pluginId); + return { + plugins: plugins.map((plugin) => ({ + id: plugin.id, + kind: plugin.kind, + })), + }; +} + +export function applySlotSelectionForPlugin( + config: OpenClawConfig, + pluginId: string, +): { config: OpenClawConfig; warnings: string[] } { + // Static metadata is preferred; runtime diagnostics fill in kind for older manifests. + const report = buildSlotSelectionRegistry(config, pluginId); + const plugin = report.plugins.find((entry) => entry.id === pluginId); + if (!plugin) { + return { config, warnings: [] }; + } + if (!plugin.kind) { + const runtimeReport = loadRuntimeKindReportForPlugins(config, [plugin.id]); + const runtimePlugin = runtimeReport.plugins.find((entry) => entry.id === plugin.id); + if (runtimePlugin?.kind) { + const result = applyExclusiveSlotSelection({ + config, + selectedId: runtimePlugin.id, + selectedKind: runtimePlugin.kind, + registry: mergeRuntimeKinds(report, runtimeReport), + }); + return { config: result.config, warnings: result.warnings }; + } + } + const result = applyExclusiveSlotSelection({ + config, + selectedId: plugin.id, + selectedKind: plugin.kind, + registry: report, + }); + return { config: result.config, warnings: result.warnings }; +} diff --git a/src/wizard/setup.shared.test.ts b/src/wizard/setup.shared.test.ts index a6343775d6bb..857c1dbe06c4 100644 --- a/src/wizard/setup.shared.test.ts +++ b/src/wizard/setup.shared.test.ts @@ -6,10 +6,9 @@ const mocks = vi.hoisted(() => ({ commitConfigWriteWithPendingPluginInstalls: vi.fn(), })); -vi.mock("../cli/plugins-install-record-commit.js", async (importOriginal) => ({ - ...(await importOriginal()), - commitConfigWriteWithPendingPluginInstalls: - mocks.commitConfigWriteWithPendingPluginInstalls, +vi.mock("../plugins/install-record-commit.js", async (importOriginal) => ({ + ...(await importOriginal()), + commitConfigWriteWithPendingPluginInstalls: mocks.commitConfigWriteWithPendingPluginInstalls, })); import { writeWizardConfigFile } from "./setup.shared.js"; @@ -32,9 +31,9 @@ describe("writeWizardConfigFile pending install ownership", () => { plugins: { installs: { demo: { source: "npm", spec: "demo@1.0.0" } } }, }; - await expect( - writeWizardConfigFile(config, { allowConfigSizeDrop: false }), - ).rejects.toThrow("declare migration ownership"); + await expect(writeWizardConfigFile(config, { allowConfigSizeDrop: false })).rejects.toThrow( + "declare migration ownership", + ); expect(mocks.commitConfigWriteWithPendingPluginInstalls).not.toHaveBeenCalled(); }); diff --git a/src/wizard/setup.shared.ts b/src/wizard/setup.shared.ts index c2a2073d6ac5..19ff0e2953b1 100644 --- a/src/wizard/setup.shared.ts +++ b/src/wizard/setup.shared.ts @@ -1,14 +1,14 @@ // Shared setup-wizard steps used by the classic wizard and the bootstrap onboarding flow. import { isDeepStrictEqual } from "node:util"; +import type { GatewayAuthChoice, OnboardOptions } from "../commands/onboard-types.js"; +import { createConfigIO, replaceConfigFile, resolveGatewayPort } from "../config/config.js"; +import type { OpenClawConfig } from "../config/types.openclaw.js"; import { commitConfigWriteWithPendingPluginInstalls, hasPendingPluginInstallRecords, stripPendingPluginInstallRecords, unchangedPendingPluginInstallRecordIds, -} from "../cli/plugins-install-record-commit.js"; -import type { GatewayAuthChoice, OnboardOptions } from "../commands/onboard-types.js"; -import { createConfigIO, replaceConfigFile, resolveGatewayPort } from "../config/config.js"; -import type { OpenClawConfig } from "../config/types.openclaw.js"; +} from "../plugins/install-record-commit.js"; import { isPlainObject } from "../utils.js"; import { t } from "./i18n/index.js"; import { WizardCancelledError, type WizardPrompter } from "./prompts.js"; diff --git a/ui/public/plugin-art/acpx.webp b/ui/public/plugin-art/acpx.webp new file mode 100644 index 000000000000..1954bd862818 Binary files /dev/null and b/ui/public/plugin-art/acpx.webp differ diff --git a/ui/public/plugin-art/active-memory.webp b/ui/public/plugin-art/active-memory.webp new file mode 100644 index 000000000000..ced18753acdd Binary files /dev/null and b/ui/public/plugin-art/active-memory.webp differ diff --git a/ui/public/plugin-art/admin-http-rpc.webp b/ui/public/plugin-art/admin-http-rpc.webp new file mode 100644 index 000000000000..fc790eb8617c Binary files /dev/null and b/ui/public/plugin-art/admin-http-rpc.webp differ diff --git a/ui/public/plugin-art/airtable.webp b/ui/public/plugin-art/airtable.webp new file mode 100644 index 000000000000..87bbc4218ed5 Binary files /dev/null and b/ui/public/plugin-art/airtable.webp differ diff --git a/ui/public/plugin-art/alibaba.webp b/ui/public/plugin-art/alibaba.webp new file mode 100644 index 000000000000..1b74248f767c Binary files /dev/null and b/ui/public/plugin-art/alibaba.webp differ diff --git a/ui/public/plugin-art/amazon-bedrock-mantle.webp b/ui/public/plugin-art/amazon-bedrock-mantle.webp new file mode 100644 index 000000000000..c911ed48341e Binary files /dev/null and b/ui/public/plugin-art/amazon-bedrock-mantle.webp differ diff --git a/ui/public/plugin-art/amazon-bedrock.webp b/ui/public/plugin-art/amazon-bedrock.webp new file mode 100644 index 000000000000..71fee3d544e9 Binary files /dev/null and b/ui/public/plugin-art/amazon-bedrock.webp differ diff --git a/ui/public/plugin-art/anthropic-vertex.webp b/ui/public/plugin-art/anthropic-vertex.webp new file mode 100644 index 000000000000..9075684f9317 Binary files /dev/null and b/ui/public/plugin-art/anthropic-vertex.webp differ diff --git a/ui/public/plugin-art/anthropic.webp b/ui/public/plugin-art/anthropic.webp new file mode 100644 index 000000000000..92a1b49f8741 Binary files /dev/null and b/ui/public/plugin-art/anthropic.webp differ diff --git a/ui/public/plugin-art/arcee.webp b/ui/public/plugin-art/arcee.webp new file mode 100644 index 000000000000..bc5547a402a3 Binary files /dev/null and b/ui/public/plugin-art/arcee.webp differ diff --git a/ui/public/plugin-art/azure-speech.webp b/ui/public/plugin-art/azure-speech.webp new file mode 100644 index 000000000000..cfed8934c6b4 Binary files /dev/null and b/ui/public/plugin-art/azure-speech.webp differ diff --git a/ui/public/plugin-art/bonjour.webp b/ui/public/plugin-art/bonjour.webp new file mode 100644 index 000000000000..45ae41580cd3 Binary files /dev/null and b/ui/public/plugin-art/bonjour.webp differ diff --git a/ui/public/plugin-art/brave.webp b/ui/public/plugin-art/brave.webp new file mode 100644 index 000000000000..3a4e92e14279 Binary files /dev/null and b/ui/public/plugin-art/brave.webp differ diff --git a/ui/public/plugin-art/browser.webp b/ui/public/plugin-art/browser.webp new file mode 100644 index 000000000000..8cd2a60392ed Binary files /dev/null and b/ui/public/plugin-art/browser.webp differ diff --git a/ui/public/plugin-art/byteplus.webp b/ui/public/plugin-art/byteplus.webp new file mode 100644 index 000000000000..b8fa06f965a9 Binary files /dev/null and b/ui/public/plugin-art/byteplus.webp differ diff --git a/ui/public/plugin-art/canva.webp b/ui/public/plugin-art/canva.webp new file mode 100644 index 000000000000..d4ffcd50577f Binary files /dev/null and b/ui/public/plugin-art/canva.webp differ diff --git a/ui/public/plugin-art/canvas.webp b/ui/public/plugin-art/canvas.webp new file mode 100644 index 000000000000..7baa05456ada Binary files /dev/null and b/ui/public/plugin-art/canvas.webp differ diff --git a/ui/public/plugin-art/cerebras.webp b/ui/public/plugin-art/cerebras.webp new file mode 100644 index 000000000000..44fa23b99b9c Binary files /dev/null and b/ui/public/plugin-art/cerebras.webp differ diff --git a/ui/public/plugin-art/chutes.webp b/ui/public/plugin-art/chutes.webp new file mode 100644 index 000000000000..80711c096e6c Binary files /dev/null and b/ui/public/plugin-art/chutes.webp differ diff --git a/ui/public/plugin-art/clawrouter.webp b/ui/public/plugin-art/clawrouter.webp new file mode 100644 index 000000000000..819b3efc307c Binary files /dev/null and b/ui/public/plugin-art/clawrouter.webp differ diff --git a/ui/public/plugin-art/clickclack.webp b/ui/public/plugin-art/clickclack.webp new file mode 100644 index 000000000000..88f1c173a97d Binary files /dev/null and b/ui/public/plugin-art/clickclack.webp differ diff --git a/ui/public/plugin-art/cloudflare-ai-gateway.webp b/ui/public/plugin-art/cloudflare-ai-gateway.webp new file mode 100644 index 000000000000..65b34dc792b7 Binary files /dev/null and b/ui/public/plugin-art/cloudflare-ai-gateway.webp differ diff --git a/ui/public/plugin-art/codex-supervisor.webp b/ui/public/plugin-art/codex-supervisor.webp new file mode 100644 index 000000000000..d3cb6b2badc9 Binary files /dev/null and b/ui/public/plugin-art/codex-supervisor.webp differ diff --git a/ui/public/plugin-art/codex.webp b/ui/public/plugin-art/codex.webp new file mode 100644 index 000000000000..d414534d294c Binary files /dev/null and b/ui/public/plugin-art/codex.webp differ diff --git a/ui/public/plugin-art/cohere.webp b/ui/public/plugin-art/cohere.webp new file mode 100644 index 000000000000..059f26121c0d Binary files /dev/null and b/ui/public/plugin-art/cohere.webp differ diff --git a/ui/public/plugin-art/comfy.webp b/ui/public/plugin-art/comfy.webp new file mode 100644 index 000000000000..5be16008c634 Binary files /dev/null and b/ui/public/plugin-art/comfy.webp differ diff --git a/ui/public/plugin-art/context7.webp b/ui/public/plugin-art/context7.webp new file mode 100644 index 000000000000..93156d062ec3 Binary files /dev/null and b/ui/public/plugin-art/context7.webp differ diff --git a/ui/public/plugin-art/copilot-proxy.webp b/ui/public/plugin-art/copilot-proxy.webp new file mode 100644 index 000000000000..040402375fdb Binary files /dev/null and b/ui/public/plugin-art/copilot-proxy.webp differ diff --git a/ui/public/plugin-art/copilot.webp b/ui/public/plugin-art/copilot.webp new file mode 100644 index 000000000000..583704264008 Binary files /dev/null and b/ui/public/plugin-art/copilot.webp differ diff --git a/ui/public/plugin-art/deepgram.webp b/ui/public/plugin-art/deepgram.webp new file mode 100644 index 000000000000..78e6ee055ec0 Binary files /dev/null and b/ui/public/plugin-art/deepgram.webp differ diff --git a/ui/public/plugin-art/deepinfra.webp b/ui/public/plugin-art/deepinfra.webp new file mode 100644 index 000000000000..f2725c0a4fb5 Binary files /dev/null and b/ui/public/plugin-art/deepinfra.webp differ diff --git a/ui/public/plugin-art/deepseek.webp b/ui/public/plugin-art/deepseek.webp new file mode 100644 index 000000000000..8f2f50e40cae Binary files /dev/null and b/ui/public/plugin-art/deepseek.webp differ diff --git a/ui/public/plugin-art/deepwiki.webp b/ui/public/plugin-art/deepwiki.webp new file mode 100644 index 000000000000..ab6c23dd8ce9 Binary files /dev/null and b/ui/public/plugin-art/deepwiki.webp differ diff --git a/ui/public/plugin-art/device-pair.webp b/ui/public/plugin-art/device-pair.webp new file mode 100644 index 000000000000..958a5b7cd5c4 Binary files /dev/null and b/ui/public/plugin-art/device-pair.webp differ diff --git a/ui/public/plugin-art/diagnostics-otel.webp b/ui/public/plugin-art/diagnostics-otel.webp new file mode 100644 index 000000000000..bc3e341e25cc Binary files /dev/null and b/ui/public/plugin-art/diagnostics-otel.webp differ diff --git a/ui/public/plugin-art/diagnostics-prometheus.webp b/ui/public/plugin-art/diagnostics-prometheus.webp new file mode 100644 index 000000000000..e75fa03b763d Binary files /dev/null and b/ui/public/plugin-art/diagnostics-prometheus.webp differ diff --git a/ui/public/plugin-art/diffs-language-pack.webp b/ui/public/plugin-art/diffs-language-pack.webp new file mode 100644 index 000000000000..7dc1a4f230e5 Binary files /dev/null and b/ui/public/plugin-art/diffs-language-pack.webp differ diff --git a/ui/public/plugin-art/diffs.webp b/ui/public/plugin-art/diffs.webp new file mode 100644 index 000000000000..37e81b1c90da Binary files /dev/null and b/ui/public/plugin-art/diffs.webp differ diff --git a/ui/public/plugin-art/discord.webp b/ui/public/plugin-art/discord.webp new file mode 100644 index 000000000000..7c5aafd17b69 Binary files /dev/null and b/ui/public/plugin-art/discord.webp differ diff --git a/ui/public/plugin-art/document-extract.webp b/ui/public/plugin-art/document-extract.webp new file mode 100644 index 000000000000..72affc7e98aa Binary files /dev/null and b/ui/public/plugin-art/document-extract.webp differ diff --git a/ui/public/plugin-art/duckduckgo.webp b/ui/public/plugin-art/duckduckgo.webp new file mode 100644 index 000000000000..0d467129be8c Binary files /dev/null and b/ui/public/plugin-art/duckduckgo.webp differ diff --git a/ui/public/plugin-art/dungeon-master.webp b/ui/public/plugin-art/dungeon-master.webp new file mode 100644 index 000000000000..afd9e6ffab21 Binary files /dev/null and b/ui/public/plugin-art/dungeon-master.webp differ diff --git a/ui/public/plugin-art/elevenlabs.webp b/ui/public/plugin-art/elevenlabs.webp new file mode 100644 index 000000000000..401f758e7233 Binary files /dev/null and b/ui/public/plugin-art/elevenlabs.webp differ diff --git a/ui/public/plugin-art/email-inbox.webp b/ui/public/plugin-art/email-inbox.webp new file mode 100644 index 000000000000..5be05d3bb198 Binary files /dev/null and b/ui/public/plugin-art/email-inbox.webp differ diff --git a/ui/public/plugin-art/exa.webp b/ui/public/plugin-art/exa.webp new file mode 100644 index 000000000000..bd0d26ab9a0a Binary files /dev/null and b/ui/public/plugin-art/exa.webp differ diff --git a/ui/public/plugin-art/fal.webp b/ui/public/plugin-art/fal.webp new file mode 100644 index 000000000000..ff29c7aebfd4 Binary files /dev/null and b/ui/public/plugin-art/fal.webp differ diff --git a/ui/public/plugin-art/featherless.webp b/ui/public/plugin-art/featherless.webp new file mode 100644 index 000000000000..cd75c32ba048 Binary files /dev/null and b/ui/public/plugin-art/featherless.webp differ diff --git a/ui/public/plugin-art/feishu.webp b/ui/public/plugin-art/feishu.webp new file mode 100644 index 000000000000..ac8df2942df7 Binary files /dev/null and b/ui/public/plugin-art/feishu.webp differ diff --git a/ui/public/plugin-art/file-transfer.webp b/ui/public/plugin-art/file-transfer.webp new file mode 100644 index 000000000000..974d4bd8998b Binary files /dev/null and b/ui/public/plugin-art/file-transfer.webp differ diff --git a/ui/public/plugin-art/firecrawl.webp b/ui/public/plugin-art/firecrawl.webp new file mode 100644 index 000000000000..665924c7824a Binary files /dev/null and b/ui/public/plugin-art/firecrawl.webp differ diff --git a/ui/public/plugin-art/fireworks.webp b/ui/public/plugin-art/fireworks.webp new file mode 100644 index 000000000000..2fd1bd4088c4 Binary files /dev/null and b/ui/public/plugin-art/fireworks.webp differ diff --git a/ui/public/plugin-art/github-copilot.webp b/ui/public/plugin-art/github-copilot.webp new file mode 100644 index 000000000000..35c330795fe4 Binary files /dev/null and b/ui/public/plugin-art/github-copilot.webp differ diff --git a/ui/public/plugin-art/github.webp b/ui/public/plugin-art/github.webp new file mode 100644 index 000000000000..2c78857baebc Binary files /dev/null and b/ui/public/plugin-art/github.webp differ diff --git a/ui/public/plugin-art/gmi.webp b/ui/public/plugin-art/gmi.webp new file mode 100644 index 000000000000..b91917eb71e9 Binary files /dev/null and b/ui/public/plugin-art/gmi.webp differ diff --git a/ui/public/plugin-art/google-calendar.webp b/ui/public/plugin-art/google-calendar.webp new file mode 100644 index 000000000000..67aea869663e Binary files /dev/null and b/ui/public/plugin-art/google-calendar.webp differ diff --git a/ui/public/plugin-art/google-meet.webp b/ui/public/plugin-art/google-meet.webp new file mode 100644 index 000000000000..3ca65e857013 Binary files /dev/null and b/ui/public/plugin-art/google-meet.webp differ diff --git a/ui/public/plugin-art/google.webp b/ui/public/plugin-art/google.webp new file mode 100644 index 000000000000..9ca679f26d7e Binary files /dev/null and b/ui/public/plugin-art/google.webp differ diff --git a/ui/public/plugin-art/googlechat.webp b/ui/public/plugin-art/googlechat.webp new file mode 100644 index 000000000000..ead0fe9f8386 Binary files /dev/null and b/ui/public/plugin-art/googlechat.webp differ diff --git a/ui/public/plugin-art/gradium.webp b/ui/public/plugin-art/gradium.webp new file mode 100644 index 000000000000..baeea5bef345 Binary files /dev/null and b/ui/public/plugin-art/gradium.webp differ diff --git a/ui/public/plugin-art/grafana.webp b/ui/public/plugin-art/grafana.webp new file mode 100644 index 000000000000..dc005e395e81 Binary files /dev/null and b/ui/public/plugin-art/grafana.webp differ diff --git a/ui/public/plugin-art/groq.webp b/ui/public/plugin-art/groq.webp new file mode 100644 index 000000000000..cb2d91706900 Binary files /dev/null and b/ui/public/plugin-art/groq.webp differ diff --git a/ui/public/plugin-art/home-assistant.webp b/ui/public/plugin-art/home-assistant.webp new file mode 100644 index 000000000000..4ecbeedb4f14 Binary files /dev/null and b/ui/public/plugin-art/home-assistant.webp differ diff --git a/ui/public/plugin-art/hugging-face.webp b/ui/public/plugin-art/hugging-face.webp new file mode 100644 index 000000000000..383bf19eabf3 Binary files /dev/null and b/ui/public/plugin-art/hugging-face.webp differ diff --git a/ui/public/plugin-art/huggingface.webp b/ui/public/plugin-art/huggingface.webp new file mode 100644 index 000000000000..383bf19eabf3 Binary files /dev/null and b/ui/public/plugin-art/huggingface.webp differ diff --git a/ui/public/plugin-art/imessage.webp b/ui/public/plugin-art/imessage.webp new file mode 100644 index 000000000000..0049f04b3751 Binary files /dev/null and b/ui/public/plugin-art/imessage.webp differ diff --git a/ui/public/plugin-art/inworld.webp b/ui/public/plugin-art/inworld.webp new file mode 100644 index 000000000000..06d1ad41e408 Binary files /dev/null and b/ui/public/plugin-art/inworld.webp differ diff --git a/ui/public/plugin-art/irc.webp b/ui/public/plugin-art/irc.webp new file mode 100644 index 000000000000..64306222b809 Binary files /dev/null and b/ui/public/plugin-art/irc.webp differ diff --git a/ui/public/plugin-art/jira.webp b/ui/public/plugin-art/jira.webp new file mode 100644 index 000000000000..753cdaa3b3d4 Binary files /dev/null and b/ui/public/plugin-art/jira.webp differ diff --git a/ui/public/plugin-art/kilocode.webp b/ui/public/plugin-art/kilocode.webp new file mode 100644 index 000000000000..69b19fe0f862 Binary files /dev/null and b/ui/public/plugin-art/kilocode.webp differ diff --git a/ui/public/plugin-art/kimi.webp b/ui/public/plugin-art/kimi.webp new file mode 100644 index 000000000000..32670d9558be Binary files /dev/null and b/ui/public/plugin-art/kimi.webp differ diff --git a/ui/public/plugin-art/kubernetes.webp b/ui/public/plugin-art/kubernetes.webp new file mode 100644 index 000000000000..849a6824da8a Binary files /dev/null and b/ui/public/plugin-art/kubernetes.webp differ diff --git a/ui/public/plugin-art/line.webp b/ui/public/plugin-art/line.webp new file mode 100644 index 000000000000..0600538501ad Binary files /dev/null and b/ui/public/plugin-art/line.webp differ diff --git a/ui/public/plugin-art/linear.webp b/ui/public/plugin-art/linear.webp new file mode 100644 index 000000000000..c7cb64d5158b Binary files /dev/null and b/ui/public/plugin-art/linear.webp differ diff --git a/ui/public/plugin-art/litellm.webp b/ui/public/plugin-art/litellm.webp new file mode 100644 index 000000000000..7f6ece503a79 Binary files /dev/null and b/ui/public/plugin-art/litellm.webp differ diff --git a/ui/public/plugin-art/llama-cpp.webp b/ui/public/plugin-art/llama-cpp.webp new file mode 100644 index 000000000000..5fced0a2ad47 Binary files /dev/null and b/ui/public/plugin-art/llama-cpp.webp differ diff --git a/ui/public/plugin-art/llm-task.webp b/ui/public/plugin-art/llm-task.webp new file mode 100644 index 000000000000..74d78ba2f6f9 Binary files /dev/null and b/ui/public/plugin-art/llm-task.webp differ diff --git a/ui/public/plugin-art/lmstudio.webp b/ui/public/plugin-art/lmstudio.webp new file mode 100644 index 000000000000..1dce880738e6 Binary files /dev/null and b/ui/public/plugin-art/lmstudio.webp differ diff --git a/ui/public/plugin-art/lobster.webp b/ui/public/plugin-art/lobster.webp new file mode 100644 index 000000000000..113fd3bf8885 Binary files /dev/null and b/ui/public/plugin-art/lobster.webp differ diff --git a/ui/public/plugin-art/logbook.webp b/ui/public/plugin-art/logbook.webp new file mode 100644 index 000000000000..021e8b961b92 Binary files /dev/null and b/ui/public/plugin-art/logbook.webp differ diff --git a/ui/public/plugin-art/longcat.webp b/ui/public/plugin-art/longcat.webp new file mode 100644 index 000000000000..bfaf786cb616 Binary files /dev/null and b/ui/public/plugin-art/longcat.webp differ diff --git a/ui/public/plugin-art/maps.webp b/ui/public/plugin-art/maps.webp new file mode 100644 index 000000000000..eee88e408e3c Binary files /dev/null and b/ui/public/plugin-art/maps.webp differ diff --git a/ui/public/plugin-art/matrix.webp b/ui/public/plugin-art/matrix.webp new file mode 100644 index 000000000000..72d8b27a381f Binary files /dev/null and b/ui/public/plugin-art/matrix.webp differ diff --git a/ui/public/plugin-art/mattermost.webp b/ui/public/plugin-art/mattermost.webp new file mode 100644 index 000000000000..ad7a6e5ac75e Binary files /dev/null and b/ui/public/plugin-art/mattermost.webp differ diff --git a/ui/public/plugin-art/memory-core.webp b/ui/public/plugin-art/memory-core.webp new file mode 100644 index 000000000000..19c46173c0c6 Binary files /dev/null and b/ui/public/plugin-art/memory-core.webp differ diff --git a/ui/public/plugin-art/memory-lancedb.webp b/ui/public/plugin-art/memory-lancedb.webp new file mode 100644 index 000000000000..8ecdc66b857b Binary files /dev/null and b/ui/public/plugin-art/memory-lancedb.webp differ diff --git a/ui/public/plugin-art/memory-wiki.webp b/ui/public/plugin-art/memory-wiki.webp new file mode 100644 index 000000000000..4331f10c6174 Binary files /dev/null and b/ui/public/plugin-art/memory-wiki.webp differ diff --git a/ui/public/plugin-art/meta.webp b/ui/public/plugin-art/meta.webp new file mode 100644 index 000000000000..b329abf71722 Binary files /dev/null and b/ui/public/plugin-art/meta.webp differ diff --git a/ui/public/plugin-art/microsoft-foundry.webp b/ui/public/plugin-art/microsoft-foundry.webp new file mode 100644 index 000000000000..cafabe7442cd Binary files /dev/null and b/ui/public/plugin-art/microsoft-foundry.webp differ diff --git a/ui/public/plugin-art/microsoft.webp b/ui/public/plugin-art/microsoft.webp new file mode 100644 index 000000000000..85ab3b471792 Binary files /dev/null and b/ui/public/plugin-art/microsoft.webp differ diff --git a/ui/public/plugin-art/migrate-claude.webp b/ui/public/plugin-art/migrate-claude.webp new file mode 100644 index 000000000000..fe5631eeea93 Binary files /dev/null and b/ui/public/plugin-art/migrate-claude.webp differ diff --git a/ui/public/plugin-art/migrate-hermes.webp b/ui/public/plugin-art/migrate-hermes.webp new file mode 100644 index 000000000000..618349cdbe2f Binary files /dev/null and b/ui/public/plugin-art/migrate-hermes.webp differ diff --git a/ui/public/plugin-art/minimax.webp b/ui/public/plugin-art/minimax.webp new file mode 100644 index 000000000000..e4e542ec46fd Binary files /dev/null and b/ui/public/plugin-art/minimax.webp differ diff --git a/ui/public/plugin-art/mistral.webp b/ui/public/plugin-art/mistral.webp new file mode 100644 index 000000000000..6a03b77cc9ad Binary files /dev/null and b/ui/public/plugin-art/mistral.webp differ diff --git a/ui/public/plugin-art/moonshot.webp b/ui/public/plugin-art/moonshot.webp new file mode 100644 index 000000000000..4294155cfc58 Binary files /dev/null and b/ui/public/plugin-art/moonshot.webp differ diff --git a/ui/public/plugin-art/morning-brief.webp b/ui/public/plugin-art/morning-brief.webp new file mode 100644 index 000000000000..953b189b2171 Binary files /dev/null and b/ui/public/plugin-art/morning-brief.webp differ diff --git a/ui/public/plugin-art/msteams.webp b/ui/public/plugin-art/msteams.webp new file mode 100644 index 000000000000..bd468075060d Binary files /dev/null and b/ui/public/plugin-art/msteams.webp differ diff --git a/ui/public/plugin-art/nextcloud-talk.webp b/ui/public/plugin-art/nextcloud-talk.webp new file mode 100644 index 000000000000..1453d3e3a7e3 Binary files /dev/null and b/ui/public/plugin-art/nextcloud-talk.webp differ diff --git a/ui/public/plugin-art/nostr.webp b/ui/public/plugin-art/nostr.webp new file mode 100644 index 000000000000..32ddf715a67a Binary files /dev/null and b/ui/public/plugin-art/nostr.webp differ diff --git a/ui/public/plugin-art/notes.webp b/ui/public/plugin-art/notes.webp new file mode 100644 index 000000000000..417d15e0886e Binary files /dev/null and b/ui/public/plugin-art/notes.webp differ diff --git a/ui/public/plugin-art/notion.webp b/ui/public/plugin-art/notion.webp new file mode 100644 index 000000000000..82904870a72a Binary files /dev/null and b/ui/public/plugin-art/notion.webp differ diff --git a/ui/public/plugin-art/novita.webp b/ui/public/plugin-art/novita.webp new file mode 100644 index 000000000000..045520ef0e01 Binary files /dev/null and b/ui/public/plugin-art/novita.webp differ diff --git a/ui/public/plugin-art/nvidia.webp b/ui/public/plugin-art/nvidia.webp new file mode 100644 index 000000000000..f2e142c60b34 Binary files /dev/null and b/ui/public/plugin-art/nvidia.webp differ diff --git a/ui/public/plugin-art/oc-path.webp b/ui/public/plugin-art/oc-path.webp new file mode 100644 index 000000000000..a98ca8e58083 Binary files /dev/null and b/ui/public/plugin-art/oc-path.webp differ diff --git a/ui/public/plugin-art/ollama.webp b/ui/public/plugin-art/ollama.webp new file mode 100644 index 000000000000..cd3eefca3e02 Binary files /dev/null and b/ui/public/plugin-art/ollama.webp differ diff --git a/ui/public/plugin-art/open-prose.webp b/ui/public/plugin-art/open-prose.webp new file mode 100644 index 000000000000..a746df26f50b Binary files /dev/null and b/ui/public/plugin-art/open-prose.webp differ diff --git a/ui/public/plugin-art/openai.webp b/ui/public/plugin-art/openai.webp new file mode 100644 index 000000000000..6ced17f89e4e Binary files /dev/null and b/ui/public/plugin-art/openai.webp differ diff --git a/ui/public/plugin-art/opencode-go.webp b/ui/public/plugin-art/opencode-go.webp new file mode 100644 index 000000000000..8ed67d99c235 Binary files /dev/null and b/ui/public/plugin-art/opencode-go.webp differ diff --git a/ui/public/plugin-art/opencode.webp b/ui/public/plugin-art/opencode.webp new file mode 100644 index 000000000000..2330f6c239ef Binary files /dev/null and b/ui/public/plugin-art/opencode.webp differ diff --git a/ui/public/plugin-art/openrouter.webp b/ui/public/plugin-art/openrouter.webp new file mode 100644 index 000000000000..dbd9e935d38d Binary files /dev/null and b/ui/public/plugin-art/openrouter.webp differ diff --git a/ui/public/plugin-art/openshell.webp b/ui/public/plugin-art/openshell.webp new file mode 100644 index 000000000000..1af466ccb4ab Binary files /dev/null and b/ui/public/plugin-art/openshell.webp differ diff --git a/ui/public/plugin-art/parallel.webp b/ui/public/plugin-art/parallel.webp new file mode 100644 index 000000000000..f55b35d4c2e4 Binary files /dev/null and b/ui/public/plugin-art/parallel.webp differ diff --git a/ui/public/plugin-art/pdf-tools.webp b/ui/public/plugin-art/pdf-tools.webp new file mode 100644 index 000000000000..5aecb5737e27 Binary files /dev/null and b/ui/public/plugin-art/pdf-tools.webp differ diff --git a/ui/public/plugin-art/perplexity.webp b/ui/public/plugin-art/perplexity.webp new file mode 100644 index 000000000000..ba49b9ed4bad Binary files /dev/null and b/ui/public/plugin-art/perplexity.webp differ diff --git a/ui/public/plugin-art/philips-hue.webp b/ui/public/plugin-art/philips-hue.webp new file mode 100644 index 000000000000..d068caab9d64 Binary files /dev/null and b/ui/public/plugin-art/philips-hue.webp differ diff --git a/ui/public/plugin-art/phone-control.webp b/ui/public/plugin-art/phone-control.webp new file mode 100644 index 000000000000..b2b6e670ff29 Binary files /dev/null and b/ui/public/plugin-art/phone-control.webp differ diff --git a/ui/public/plugin-art/pixverse.webp b/ui/public/plugin-art/pixverse.webp new file mode 100644 index 000000000000..4ce56f463e31 Binary files /dev/null and b/ui/public/plugin-art/pixverse.webp differ diff --git a/ui/public/plugin-art/policy.webp b/ui/public/plugin-art/policy.webp new file mode 100644 index 000000000000..825ef53c9213 Binary files /dev/null and b/ui/public/plugin-art/policy.webp differ diff --git a/ui/public/plugin-art/portfolio-pulse.webp b/ui/public/plugin-art/portfolio-pulse.webp new file mode 100644 index 000000000000..0cd14e43c206 Binary files /dev/null and b/ui/public/plugin-art/portfolio-pulse.webp differ diff --git a/ui/public/plugin-art/qa-channel.webp b/ui/public/plugin-art/qa-channel.webp new file mode 100644 index 000000000000..d5258a43f074 Binary files /dev/null and b/ui/public/plugin-art/qa-channel.webp differ diff --git a/ui/public/plugin-art/qa-lab.webp b/ui/public/plugin-art/qa-lab.webp new file mode 100644 index 000000000000..56aaf37a5596 Binary files /dev/null and b/ui/public/plugin-art/qa-lab.webp differ diff --git a/ui/public/plugin-art/qa-matrix.webp b/ui/public/plugin-art/qa-matrix.webp new file mode 100644 index 000000000000..594bb938a35c Binary files /dev/null and b/ui/public/plugin-art/qa-matrix.webp differ diff --git a/ui/public/plugin-art/qianfan.webp b/ui/public/plugin-art/qianfan.webp new file mode 100644 index 000000000000..767aa19c7a68 Binary files /dev/null and b/ui/public/plugin-art/qianfan.webp differ diff --git a/ui/public/plugin-art/qqbot.webp b/ui/public/plugin-art/qqbot.webp new file mode 100644 index 000000000000..a21386a4f047 Binary files /dev/null and b/ui/public/plugin-art/qqbot.webp differ diff --git a/ui/public/plugin-art/qwen.webp b/ui/public/plugin-art/qwen.webp new file mode 100644 index 000000000000..01e5d80ce928 Binary files /dev/null and b/ui/public/plugin-art/qwen.webp differ diff --git a/ui/public/plugin-art/raft.webp b/ui/public/plugin-art/raft.webp new file mode 100644 index 000000000000..dfe408ca02cc Binary files /dev/null and b/ui/public/plugin-art/raft.webp differ diff --git a/ui/public/plugin-art/reddit.webp b/ui/public/plugin-art/reddit.webp new file mode 100644 index 000000000000..12881f6e1662 Binary files /dev/null and b/ui/public/plugin-art/reddit.webp differ diff --git a/ui/public/plugin-art/runway.webp b/ui/public/plugin-art/runway.webp new file mode 100644 index 000000000000..ec2cd545088c Binary files /dev/null and b/ui/public/plugin-art/runway.webp differ diff --git a/ui/public/plugin-art/searxng.webp b/ui/public/plugin-art/searxng.webp new file mode 100644 index 000000000000..978e4bb64df0 Binary files /dev/null and b/ui/public/plugin-art/searxng.webp differ diff --git a/ui/public/plugin-art/senseaudio.webp b/ui/public/plugin-art/senseaudio.webp new file mode 100644 index 000000000000..e7975999b438 Binary files /dev/null and b/ui/public/plugin-art/senseaudio.webp differ diff --git a/ui/public/plugin-art/sentry.webp b/ui/public/plugin-art/sentry.webp new file mode 100644 index 000000000000..755c9b5a4068 Binary files /dev/null and b/ui/public/plugin-art/sentry.webp differ diff --git a/ui/public/plugin-art/sglang.webp b/ui/public/plugin-art/sglang.webp new file mode 100644 index 000000000000..09101908a75a Binary files /dev/null and b/ui/public/plugin-art/sglang.webp differ diff --git a/ui/public/plugin-art/signal.webp b/ui/public/plugin-art/signal.webp new file mode 100644 index 000000000000..482a67c845bc Binary files /dev/null and b/ui/public/plugin-art/signal.webp differ diff --git a/ui/public/plugin-art/slack.webp b/ui/public/plugin-art/slack.webp new file mode 100644 index 000000000000..09dc75fdd697 Binary files /dev/null and b/ui/public/plugin-art/slack.webp differ diff --git a/ui/public/plugin-art/sms.webp b/ui/public/plugin-art/sms.webp new file mode 100644 index 000000000000..786d9801ef28 Binary files /dev/null and b/ui/public/plugin-art/sms.webp differ diff --git a/ui/public/plugin-art/sonos.webp b/ui/public/plugin-art/sonos.webp new file mode 100644 index 000000000000..e2a7d6739eb3 Binary files /dev/null and b/ui/public/plugin-art/sonos.webp differ diff --git a/ui/public/plugin-art/spotify.webp b/ui/public/plugin-art/spotify.webp new file mode 100644 index 000000000000..760b0a5ae377 Binary files /dev/null and b/ui/public/plugin-art/spotify.webp differ diff --git a/ui/public/plugin-art/stepfun.webp b/ui/public/plugin-art/stepfun.webp new file mode 100644 index 000000000000..00895956e303 Binary files /dev/null and b/ui/public/plugin-art/stepfun.webp differ diff --git a/ui/public/plugin-art/stripe.webp b/ui/public/plugin-art/stripe.webp new file mode 100644 index 000000000000..37d97161b781 Binary files /dev/null and b/ui/public/plugin-art/stripe.webp differ diff --git a/ui/public/plugin-art/synology-chat.webp b/ui/public/plugin-art/synology-chat.webp new file mode 100644 index 000000000000..ffa5b4b3de8b Binary files /dev/null and b/ui/public/plugin-art/synology-chat.webp differ diff --git a/ui/public/plugin-art/synthetic.webp b/ui/public/plugin-art/synthetic.webp new file mode 100644 index 000000000000..fe2f7de97f08 Binary files /dev/null and b/ui/public/plugin-art/synthetic.webp differ diff --git a/ui/public/plugin-art/talk-voice.webp b/ui/public/plugin-art/talk-voice.webp new file mode 100644 index 000000000000..e238c590b780 Binary files /dev/null and b/ui/public/plugin-art/talk-voice.webp differ diff --git a/ui/public/plugin-art/tavily.webp b/ui/public/plugin-art/tavily.webp new file mode 100644 index 000000000000..eaf64198c3f7 Binary files /dev/null and b/ui/public/plugin-art/tavily.webp differ diff --git a/ui/public/plugin-art/telegram.webp b/ui/public/plugin-art/telegram.webp new file mode 100644 index 000000000000..57c26e2cceb1 Binary files /dev/null and b/ui/public/plugin-art/telegram.webp differ diff --git a/ui/public/plugin-art/tencent.webp b/ui/public/plugin-art/tencent.webp new file mode 100644 index 000000000000..c2f49f1078af Binary files /dev/null and b/ui/public/plugin-art/tencent.webp differ diff --git a/ui/public/plugin-art/thread-ownership.webp b/ui/public/plugin-art/thread-ownership.webp new file mode 100644 index 000000000000..aef01a76e5bf Binary files /dev/null and b/ui/public/plugin-art/thread-ownership.webp differ diff --git a/ui/public/plugin-art/tlon.webp b/ui/public/plugin-art/tlon.webp new file mode 100644 index 000000000000..f6613ae6d8e9 Binary files /dev/null and b/ui/public/plugin-art/tlon.webp differ diff --git a/ui/public/plugin-art/todoist.webp b/ui/public/plugin-art/todoist.webp new file mode 100644 index 000000000000..846a996f0d9b Binary files /dev/null and b/ui/public/plugin-art/todoist.webp differ diff --git a/ui/public/plugin-art/together.webp b/ui/public/plugin-art/together.webp new file mode 100644 index 000000000000..fc8fb9ea6703 Binary files /dev/null and b/ui/public/plugin-art/together.webp differ diff --git a/ui/public/plugin-art/tokenjuice.webp b/ui/public/plugin-art/tokenjuice.webp new file mode 100644 index 000000000000..36007d53bf05 Binary files /dev/null and b/ui/public/plugin-art/tokenjuice.webp differ diff --git a/ui/public/plugin-art/transcription.webp b/ui/public/plugin-art/transcription.webp new file mode 100644 index 000000000000..56b34b341f00 Binary files /dev/null and b/ui/public/plugin-art/transcription.webp differ diff --git a/ui/public/plugin-art/translation.webp b/ui/public/plugin-art/translation.webp new file mode 100644 index 000000000000..d94cae477170 Binary files /dev/null and b/ui/public/plugin-art/translation.webp differ diff --git a/ui/public/plugin-art/trip-scout.webp b/ui/public/plugin-art/trip-scout.webp new file mode 100644 index 000000000000..069d107c770f Binary files /dev/null and b/ui/public/plugin-art/trip-scout.webp differ diff --git a/ui/public/plugin-art/tts-local-cli.webp b/ui/public/plugin-art/tts-local-cli.webp new file mode 100644 index 000000000000..7c3a3c2eaafe Binary files /dev/null and b/ui/public/plugin-art/tts-local-cli.webp differ diff --git a/ui/public/plugin-art/twitch.webp b/ui/public/plugin-art/twitch.webp new file mode 100644 index 000000000000..fb9e45871e6d Binary files /dev/null and b/ui/public/plugin-art/twitch.webp differ diff --git a/ui/public/plugin-art/vault.webp b/ui/public/plugin-art/vault.webp new file mode 100644 index 000000000000..be049c023d63 Binary files /dev/null and b/ui/public/plugin-art/vault.webp differ diff --git a/ui/public/plugin-art/venice.webp b/ui/public/plugin-art/venice.webp new file mode 100644 index 000000000000..fb304191f72f Binary files /dev/null and b/ui/public/plugin-art/venice.webp differ diff --git a/ui/public/plugin-art/vercel-ai-gateway.webp b/ui/public/plugin-art/vercel-ai-gateway.webp new file mode 100644 index 000000000000..0249394a71bd Binary files /dev/null and b/ui/public/plugin-art/vercel-ai-gateway.webp differ diff --git a/ui/public/plugin-art/vllm.webp b/ui/public/plugin-art/vllm.webp new file mode 100644 index 000000000000..2e6739e7eb0e Binary files /dev/null and b/ui/public/plugin-art/vllm.webp differ diff --git a/ui/public/plugin-art/voice-call.webp b/ui/public/plugin-art/voice-call.webp new file mode 100644 index 000000000000..28077c24ff8e Binary files /dev/null and b/ui/public/plugin-art/voice-call.webp differ diff --git a/ui/public/plugin-art/volcengine.webp b/ui/public/plugin-art/volcengine.webp new file mode 100644 index 000000000000..5169473f1313 Binary files /dev/null and b/ui/public/plugin-art/volcengine.webp differ diff --git a/ui/public/plugin-art/voyage.webp b/ui/public/plugin-art/voyage.webp new file mode 100644 index 000000000000..35f8923e57e9 Binary files /dev/null and b/ui/public/plugin-art/voyage.webp differ diff --git a/ui/public/plugin-art/vydra.webp b/ui/public/plugin-art/vydra.webp new file mode 100644 index 000000000000..6bc3b99918b3 Binary files /dev/null and b/ui/public/plugin-art/vydra.webp differ diff --git a/ui/public/plugin-art/web-readability.webp b/ui/public/plugin-art/web-readability.webp new file mode 100644 index 000000000000..706749e5f81a Binary files /dev/null and b/ui/public/plugin-art/web-readability.webp differ diff --git a/ui/public/plugin-art/webhooks.webp b/ui/public/plugin-art/webhooks.webp new file mode 100644 index 000000000000..96c0341e4ba9 Binary files /dev/null and b/ui/public/plugin-art/webhooks.webp differ diff --git a/ui/public/plugin-art/whatsapp.webp b/ui/public/plugin-art/whatsapp.webp new file mode 100644 index 000000000000..ebd2b3e19ff6 Binary files /dev/null and b/ui/public/plugin-art/whatsapp.webp differ diff --git a/ui/public/plugin-art/workboard.webp b/ui/public/plugin-art/workboard.webp new file mode 100644 index 000000000000..e420b399393a Binary files /dev/null and b/ui/public/plugin-art/workboard.webp differ diff --git a/ui/public/plugin-art/xai.webp b/ui/public/plugin-art/xai.webp new file mode 100644 index 000000000000..191c2ed38b0e Binary files /dev/null and b/ui/public/plugin-art/xai.webp differ diff --git a/ui/public/plugin-art/xiaomi.webp b/ui/public/plugin-art/xiaomi.webp new file mode 100644 index 000000000000..bb6a589f4057 Binary files /dev/null and b/ui/public/plugin-art/xiaomi.webp differ diff --git a/ui/public/plugin-art/youtube.webp b/ui/public/plugin-art/youtube.webp new file mode 100644 index 000000000000..51d8dde1378f Binary files /dev/null and b/ui/public/plugin-art/youtube.webp differ diff --git a/ui/public/plugin-art/zai.webp b/ui/public/plugin-art/zai.webp new file mode 100644 index 000000000000..1c012d291222 Binary files /dev/null and b/ui/public/plugin-art/zai.webp differ diff --git a/ui/public/plugin-art/zalo.webp b/ui/public/plugin-art/zalo.webp new file mode 100644 index 000000000000..9b9323fc1c35 Binary files /dev/null and b/ui/public/plugin-art/zalo.webp differ diff --git a/ui/public/plugin-art/zalouser.webp b/ui/public/plugin-art/zalouser.webp new file mode 100644 index 000000000000..9d1f2fd9f829 Binary files /dev/null and b/ui/public/plugin-art/zalouser.webp differ diff --git a/ui/src/app-navigation-groups.test.ts b/ui/src/app-navigation-groups.test.ts index 0fa5166e1fd2..0c17d9acd9f0 100644 --- a/ui/src/app-navigation-groups.test.ts +++ b/ui/src/app-navigation-groups.test.ts @@ -39,6 +39,15 @@ describe("sidebar pinned routes", () => { expect(normalizeSidebarPinnedRoutes([])).toEqual([]); }); + it("keeps the plugin manager in the customizable workspace routes", () => { + expect(normalizeSidebarPinnedRoutes(["plugins", "overview", "plugins"])).toEqual([ + "plugins", + "overview", + ]); + expect(sidebarMoreRoutes(["overview"])).toContain("plugins"); + expect(SETTINGS_NAVIGATION_ROUTES).not.toContain("plugins"); + }); + it("falls back to null for non-list values so callers use defaults", () => { expect(normalizeSidebarPinnedRoutes(undefined)).toBeNull(); expect(normalizeSidebarPinnedRoutes({ overview: true })).toBeNull(); diff --git a/ui/src/app-navigation.test.ts b/ui/src/app-navigation.test.ts index 893613a328d1..0b64c4521e82 100644 --- a/ui/src/app-navigation.test.ts +++ b/ui/src/app-navigation.test.ts @@ -68,6 +68,7 @@ describe("navigationIconForRoute", () => { tasks: "listChecks", agents: "bot", skills: "zap", + plugins: "puzzle", "skill-workshop": "wrench", nodes: "monitor", dreams: "moon", @@ -110,6 +111,7 @@ describe("titleForRoute", () => { tasks: "Tasks", agents: "Agents", skills: "Skills", + plugins: "Plugins", "skill-workshop": "Skill Workshop", nodes: "Nodes", dreams: "Dreaming", @@ -146,6 +148,7 @@ describe("subtitleForRoute", () => { tasks: "Background tasks: subagents, cron runs, CLI.", agents: "Workspaces, tools, identities.", skills: "Skills and API keys.", + plugins: "Install and manage optional capabilities.", "skill-workshop": "Review, refine, and apply proposals before they become live skills.", nodes: "Paired devices and commands.", dreams: "Memory dreaming, consolidation, and reflection.", @@ -208,6 +211,7 @@ describe("pathForRoute", () => { expect(pathForRoute("overview")).toBe("/overview"); expect(pathForRoute("debug")).toBe("/debug"); expect(pathForRoute("logs")).toBe("/logs"); + expect(pathForRoute("plugins")).toBe("/settings/plugins"); }); it("prepends base path", () => { @@ -226,6 +230,8 @@ describe("routeIdFromPath", () => { expect(routeIdFromPath("/logs")).toBe("logs"); expect(routeIdFromPath("/dreaming")).toBe("dreams"); expect(routeIdFromPath("/dreams")).toBe("dreams"); + expect(routeIdFromPath("/settings/plugins")).toBe("plugins"); + expect(routeIdFromPath("/plugins")).toBeNull(); expect(routeIdFromPath("/settings/about")).toBe("about"); expect(routeIdFromPath("/about")).toBeNull(); }); @@ -237,6 +243,7 @@ describe("routeIdFromPath", () => { it("handles base paths", () => { expect(routeIdFromPath("/ui/chat", "/ui")).toBe("chat"); expect(routeIdFromPath("/apps/openclaw/sessions", "/apps/openclaw")).toBe("sessions"); + expect(routeIdFromPath("/ui/settings/plugins", "/ui")).toBe("plugins"); }); it("rejects route-shaped paths outside the configured base path", () => { @@ -295,6 +302,7 @@ describe("inferBasePathFromPathname", () => { expect(inferBasePathFromPathname("/appearance")).toBe(""); expect(inferBasePathFromPathname("/dreaming")).toBe(""); expect(inferBasePathFromPathname("/dreams")).toBe(""); + expect(inferBasePathFromPathname("/settings/plugins")).toBe(""); }); it("infers base path from nested paths", () => { @@ -302,6 +310,7 @@ describe("inferBasePathFromPathname", () => { expect(inferBasePathFromPathname("/apps/openclaw/sessions")).toBe("/apps/openclaw"); expect(inferBasePathFromPathname("/ui/settings/general")).toBe("/ui"); expect(inferBasePathFromPathname("/ui/appearance")).toBe("/ui"); + expect(inferBasePathFromPathname("/ui/settings/plugins")).toBe("/ui"); }); it("preserves mount roots without a route suffix", () => { @@ -335,6 +344,9 @@ describe("plugin tabs route", () => { it("stays out of the customizable static sidebar routes", () => { expect(SIDEBAR_NAV_ROUTES).not.toContain("plugin"); + expect(SIDEBAR_NAV_ROUTES).toContain("plugins"); + expect(routeIdFromPath("/settings/plugins")).toBe("plugins"); + expect(routeIdFromPath("/plugins")).toBeNull(); }); }); diff --git a/ui/src/app-navigation.ts b/ui/src/app-navigation.ts index 69b7830a8b05..860f723def58 100644 --- a/ui/src/app-navigation.ts +++ b/ui/src/app-navigation.ts @@ -23,6 +23,7 @@ export const SIDEBAR_NAV_ROUTES = [ "tasks", "agents", "skills", + "plugins", "skill-workshop", "nodes", "dreams", @@ -95,6 +96,7 @@ const NAVIGATION_ICONS: NavigationItem = { cron: "calendarClock", tasks: "listChecks", skills: "zap", + plugins: "puzzle", "skill-workshop": "wrench", nodes: "monitor", chat: "messageSquare", @@ -182,6 +184,7 @@ const NAVIGATION_COPY: Record { expect(palette.textContent).toContain("Fresh chat"); expect(palette.textContent).not.toContain("Stale chat"); }); + + it("navigates to the plugin manager from search", async () => { + const { gateway } = createGateway(true); + const { palette } = await mountPalette( + createContext( + gateway, + vi.fn(async () => createSessionResult("agent:main:test", "Test")), + ), + ); + await enterQuery(palette, "plugins"); + + const item = palette.querySelector("#cmd-palette-option-nav-plugins"); + expect(item?.textContent).toContain("Plugins"); + item?.click(); + + expect(palette.onNavigate).toHaveBeenCalledWith("plugins"); + }); }); diff --git a/ui/src/components/command-palette.ts b/ui/src/components/command-palette.ts index bf569bf05c5b..6bc61574a6bc 100644 --- a/ui/src/components/command-palette.ts +++ b/ui/src/components/command-palette.ts @@ -66,6 +66,13 @@ function getPaletteBaseItems(): PaletteItem[] { category: "navigation", action: "nav:skills", }, + { + id: "nav-plugins", + label: t("overview.palette.items.plugins"), + icon: "puzzle", + category: "navigation", + action: "nav:plugins", + }, { id: "nav-config", label: t("overview.palette.items.settings"), diff --git a/ui/src/i18n/.i18n/ar.meta.json b/ui/src/i18n/.i18n/ar.meta.json index 677edf6527f4..2cb161e024ea 100644 --- a/ui/src/i18n/.i18n/ar.meta.json +++ b/ui/src/i18n/.i18n/ar.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:26.526Z", + "generatedAt": "2026-07-10T09:47:18.412Z", "locale": "ar", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/ar.tm.jsonl b/ui/src/i18n/.i18n/ar.tm.jsonl index b8b382856dc8..082338210e8c 100644 --- a/ui/src/i18n/.i18n/ar.tm.jsonl +++ b/ui/src/i18n/.i18n/ar.tm.jsonl @@ -1,85 +1,136 @@ {"cache_key":"0014c554430221ebf10e7d75d71a4d9e239e0cc5c262caa9bd87927bb1c263da","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"ar","translated":"إثبات مفقود","updated_at":"2026-06-17T14:15:04.326Z"} +{"cache_key":"01843fda87a5fb9cbc922e649eaa98a35ec5a5635989741da36e711d60507a4c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"ar","translated":"جارٍ الإزالة…","updated_at":"2026-07-10T02:26:07.453Z"} +{"cache_key":"02d35d81473eb069f6c571f22d43a387c452c42cd419b4c8900669089a5c196b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"ar","translated":"يوجد بالفعل خادم MCP باسم “{name}”.","updated_at":"2026-07-10T02:26:01.646Z"} +{"cache_key":"0303c9a6700716d8687abb591d7c12145ea5a5661456c72b3981ef5d97bbd672","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"ar","translated":"هل تريد إزالة هذا المكوّن الإضافي؟","updated_at":"2026-07-10T02:26:07.453Z"} {"cache_key":"03c31941f39433fd2da07cb37dd9488a3cf803e0e1080447d6ee04d763b1236f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"ar","translated":"متصل","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"049699fecf93abe67fd80ad614eb3cd8c72c3a2753969d8a9525bc159112f39f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"ar","translated":"لا توجد جلسات مؤرشفة على هذا المضيف.","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"055bad12703e800791015dd1c5d60adace41af271376120dab412b773b8c4704","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"ar","translated":"التبعيات","updated_at":"2026-06-16T14:15:34.787Z"} +{"cache_key":"078e5e0199b392e03675e922a649118bc76bdb2a276200caa1ec097d8d3d08ff","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"ar","translated":"إلغاء","updated_at":"2026-07-10T02:26:07.453Z"} {"cache_key":"07d0a18463d8e9dfe536b077fef07cf767e3ddcd5831c2a79d0fca7d4bf57fe6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"ar","translated":"ملاحظات المشغّل","updated_at":"2026-06-16T14:15:27.040Z"} +{"cache_key":"07e514c7d7366262d38a793a538a7c28dcbbb6bae49501079c8585f8da53a56f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"ar","translated":"إعدادات MCP","updated_at":"2026-07-10T02:26:01.646Z"} +{"cache_key":"0843af763716b66b9f753d59a3d00fd150923d7aa0351a90a5e367f4ae1e66f8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"ar","translated":"متاح","updated_at":"2026-07-10T02:26:07.453Z"} +{"cache_key":"0982f5f1fe8ff822fed697f512961c3ec22e0c63c84c963d63221228299851e0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"ar","translated":"العمل والإنتاجية","updated_at":"2026-07-10T05:22:20.584Z"} {"cache_key":"099530f3fb8a54c023a8bdbb9a0657d99354cbfaccc51094fa571ba0d9c5c572","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"ar","translated":"الميكروفون المحدد غير متاح. اختر مدخلاً آخر أو الإعداد الافتراضي للنظام.","updated_at":"2026-07-06T17:56:46.696Z"} {"cache_key":"09d7ed4188351ed43023fca4e13106acd55914e6a163313651659cf888056b44","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"ar","translated":"مهمة Gateway","updated_at":"2026-06-16T14:15:27.039Z"} {"cache_key":"0a5d98a9bee7a9d6db60c46636c0d95116c09a4a9af8cddc558b7346c7076381","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"ar","translated":"اليوم","updated_at":"2026-07-05T14:39:56.977Z"} {"cache_key":"0a9a55bf769e4b2d62de029b3969684137fcd75a0129d377e85aa3d645bc93fd","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"ar","translated":"7 أيام","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"0aca818cac2aea788d21e1a991e26cfadb5226097a22d75396c10e848e9d008f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"ar","translated":"Gateway غير متصل","updated_at":"2026-07-10T02:26:07.453Z"} {"cache_key":"0b298171ee36f89d998695f0c6072d800a9dd983636c58895331fdc246e70d24","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"ar","translated":"الجلسة","updated_at":"2026-06-16T14:15:34.787Z"} +{"cache_key":"0b626b48af29a4cfe80298d11317c4f149ca3eccd9606f7971cf7f7059f54827","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"ar","translated":"الأدوات","updated_at":"2026-07-10T02:26:01.646Z"} {"cache_key":"0d0be1d454a357163d91a53fcd2a03da23f5ed0b7da32e891cbcaeb276db38f1","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"ar","translated":"هل تريد أخذ لقطة وحذف {name}؟","updated_at":"2026-07-05T21:01:06.223Z"} {"cache_key":"0d3d4eea0f81666381e8fff87731b6efd3d80eb3401a53aad072d567cf3cafe3","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.restoreSession","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Restore session","text_hash":"35e4dc9befd3b3a29b50938839af0efb41b08051988dde53e1c1e73d1c2a039f","tgt_lang":"ar","translated":"استعادة الجلسة","updated_at":"2026-07-02T14:30:22.962Z"} {"cache_key":"0d463fccfe76feb7f60acd53245b1ee27ae00d224e8ff1de7e4c6ee2043eeb94","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"ar","translated":"الاتصالات","updated_at":"2026-07-09T08:08:00.664Z"} +{"cache_key":"0d87727680a000e8b8feb2e25c72cdb66dae7db3727d44ef0d56d6cdeb8c15a2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"ar","translated":"البحث في ClawHub","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"0e1f7c043920aac41c6322c43b05e6b7d1c27dd8ca100e92a11293680d0d10cf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"ar","translated":"تتطلب الإعدادات المتقدمة صلاحية المسؤول","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"0e2007d28bd5da2b51984fa900fcc37eb6c9192645ddd5bbf5a5db8c9708ca93","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"ar","translated":"نشطة","updated_at":"2026-07-09T10:01:43.759Z"} +{"cache_key":"0ec8f86253be47b0330ea17170399bfc828933eb93158f28b10137007f72bf43","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"ar","translated":"الفئة","updated_at":"2026-07-10T04:28:28.953Z"} +{"cache_key":"11c79ad6b706dd15e4ac33dbb3e3f13ecdd46d22f665fb2cc0bc73fbfa8b2854","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"ar","translated":"Commit","updated_at":"2026-07-10T09:47:18.408Z"} {"cache_key":"126240b9ebc7510e0b86ee22b6bf0c3a36bbe2f01315e01c578bd6f644de6e9f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"ar","translated":"البحث في جلسات Codex","updated_at":"2026-07-09T10:01:43.759Z"} +{"cache_key":"127aae18c5f937cb7ba51ab19348479ab7ed31bdbd439f0cd5b54df6334b620e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"ar","translated":"تمت إضافة خادم MCP {name}.","updated_at":"2026-07-10T02:26:01.646Z"} +{"cache_key":"129ab3413ef85d633c091feb0850963f7a9fd7627b4a332842a5a46648fcce30","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"ar","translated":"عرض التفاصيل","updated_at":"2026-06-16T14:15:27.039Z"} +{"cache_key":"12b652ee2f366ee09b792eefe031fd55493c60eefb365654a781afee575fc553","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"ar","translated":"ثبّت الإمكانات الاختيارية وأدرها.","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"13324123d2bdb34efcd7c54d0ce1af5a58d528c307ab36ef2ed45064d747e963","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"ar","translated":"آخر تحديث","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"15180164eeb8c004f2a57f8ea82ed48e83a706e86c87441a5d9987f01018d0f0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"ar","translated":"عرض التفاصيل","updated_at":"2026-06-16T14:15:27.039Z"} +{"cache_key":"153f6055417e63223ad24756ee37dd95c55a7d3a3aff41404eaa5953961d9773","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"ar","translated":"الكل","updated_at":"2026-07-10T02:25:55.175Z"} +{"cache_key":"16f1dfa078c74f4aaff401b3ebc9bde96051962e7818348e027178b2d02911d4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"ar","translated":"لم يتم العثور على خادم MCP “{name}” في التكوين.","updated_at":"2026-07-10T02:26:01.646Z"} +{"cache_key":"1734acdcd550fcb9ff689a3da015341c9f85f7139daeb83273db6e407f172ba8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"ar","translated":"تثبيت {name}","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"17b127a32da89bd85850283f1155f93d868b379bef690259f2eac2798970b1ed","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"ar","translated":"فئات التكلفة","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"1863ce5f87c213c923fc489c3361d74e118861d7e79068f3d6efc40eb81b18b9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"ar","translated":"لم يتم العثور على مكوّنات إضافية","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"1923fe7957e8d6056bbd77a390cd830c2240f1142e7ccb8c8f4aaefe8ec1545c","model":"gpt-5.5","provider":"openai","segment_id":"connection.offlineHint","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Live updates and actions are paused until the connection returns.","text_hash":"7a60105cdafb6aa95b9081a370308a9ccd495199c9bfb90d3e0f70af68680f26","tgt_lang":"ar","translated":"تم إيقاف التحديثات المباشرة والإجراءات مؤقتًا حتى يعود الاتصال.","updated_at":"2026-07-05T21:55:35.324Z"} {"cache_key":"19a201177031dd7d4f466864a03b0ea936df091e8495d1576a1a1521768c512c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"ar","translated":"فعّل مشاركة جلسات Codex على Gateway أو كمبيوتر مقترن، ثم حدّث هذا العرض.","updated_at":"2026-07-09T10:01:43.759Z"} -{"cache_key":"1af8e2dbeb21d2c0014c702e3b78056fb3ca80a82282ce9356f5d752db12795b","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"ar","translated":"تثبيت إلى اليمين","updated_at":"2026-07-10T06:08:20.257Z"} {"cache_key":"1b701a3f34630b2c5cf2026b3ca35588ad3a76f0999436f126779e39c51e420d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"ar","translated":"العناصر","updated_at":"2026-06-16T14:15:41.761Z"} {"cache_key":"1bb67bd03a5259003cb18979044f40ee96d0b50a449e65065f33ddb5ba15a1fa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"ar","translated":"البطاقات بدون وكيل محدد.","updated_at":"2026-06-17T14:14:58.728Z"} +{"cache_key":"1bca7c6526bf41f7b7cb1dea324f4c651a5d76425e040ba5117949759504b337","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"ar","translated":"المنزل والوسائط","updated_at":"2026-07-10T05:22:20.584Z"} {"cache_key":"1bd8f67f18826f980f39e9cd83bafa4c8e11fb79603071d334d8311ed446971a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"ar","translated":"مجموعة جديدة…","updated_at":"2026-07-05T14:39:56.977Z"} {"cache_key":"1ca31c085b829006f2c0713326907b2e728a9c62bc97911ac7a7bf41cfa36375","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"ar","translated":"لم يتم العثور على أي مضيف لـ Codex","updated_at":"2026-07-09T10:01:43.759Z"} -{"cache_key":"1cc8782a1cb51ca7f920ed8a1787dfa2f413e53f368b6c7fc2c44518057a3664","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"ar","translated":"صامت","updated_at":"2026-07-10T04:50:19.158Z"} {"cache_key":"1d61c0f2237a46a943f0ddf2ccdb77902dad701745e2822408ccde811c9e44de","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitDaily","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Daily limit","text_hash":"1e4ce9cd955f07b1b79cddb1bec9df28d4033d4238c0e54b0b766239133afc8c","tgt_lang":"ar","translated":"الحد اليومي","updated_at":"2026-07-09T11:49:31.150Z"} {"cache_key":"1de1f729171e18967f76a207f15eaca44b44fa087edb9eb78548516b09ff2197","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"ar","translated":"{count} عنصرًا","updated_at":"2026-06-16T14:15:41.761Z"} {"cache_key":"1e7ea327bf33ad8c6f3b51d23863e11c01e212250d19915511436339f4f46bbb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dragSessionHint","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Drag to move between groups","text_hash":"3e8692b1cd1c1f9a606a779f1037aa390c885fde224ddb841df9259e8aab03ae","tgt_lang":"ar","translated":"اسحب للنقل بين المجموعات","updated_at":"2026-07-05T14:39:56.977Z"} +{"cache_key":"1fb4199e525138491be1d2f66b61de99792458c1e443ace3fac0871b526a5814","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"ar","translated":"عنوان URL أو أمر","updated_at":"2026-07-10T02:26:01.646Z"} {"cache_key":"20b2e88b33793df99629daf65b657cb666cb9b4a71ea30e2c05f943939c49565","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"ar","translated":"التعليق","updated_at":"2026-07-01T01:07:19.841Z"} {"cache_key":"20f98bac595afb3715bf5acbd1e087d08570280150e8d7e0649e378a98ac0489","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"ar","translated":"لا توجد ملفات مطابقة.","updated_at":"2026-06-16T14:15:41.761Z"} +{"cache_key":"212f05422952b7a49a89b5214050778f84f00fe9b43d5d9e513e3af4e1fad46f","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"ar","translated":"Control UI","updated_at":"2026-07-10T09:47:18.408Z"} {"cache_key":"21e708bf2a649c6c85f13ae73d538beb322a208c4f1d8e61a03e691acd687948","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"ar","translated":"نسخ الرابط","updated_at":"2026-07-09T11:02:53.077Z"} {"cache_key":"222a52155c00d9125472c178e688a19fba317aa89a0fabcd3e6a77c0b930f30c","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"ar","translated":"انتهاك البروتوكول","updated_at":"2026-05-30T15:38:27.116Z"} {"cache_key":"2263bf3748d399ba08fa62c430fa83ebff303b5e44cd0de60e5f89cae3c5d5e8","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitWeekly","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Weekly · all models","text_hash":"144f0e5ca031e40c0cba8a53a9dcb4d9534c74edd976587231da2cd14b4944df","tgt_lang":"ar","translated":"أسبوعي · كل النماذج","updated_at":"2026-07-09T11:49:31.150Z"} +{"cache_key":"22a312dcbe546aa0d28e72c5e676763db53aae53ec45132b681bde0c104252ca","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"ar","translated":"المصدر","updated_at":"2026-07-10T04:28:28.953Z"} +{"cache_key":"23d4911ffe40a50ae9ac2ba84bc968d574ad1ab364b13a64c290fceaff17c219","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"ar","translated":"راجع تحذير ClawHub قبل تثبيت هذا المكوّن الإضافي.","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"240cd908be616bcfb10d98fe41913fa9b82ada7d176dfb173c13031d1ad7d6d2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"ar","translated":"النموذج","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"2590e6156d15750c8d1c351a538d574a8e0402772b3f3a31e0d6b259e7c8f706","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"ar","translated":"إصدار Gateway المتصل","updated_at":"2026-07-10T09:47:18.408Z"} {"cache_key":"25a056bd4b886ccb8f4654ecd699dbf97c57eb061d3a00d912a4ac5394a5f4b0","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"ar","translated":"{count} طلبات","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"25fb434c4859d9333235890db97d7b3568a95d07485fea34393128c75196a55c","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"ar","translated":"الحالة","updated_at":"2026-07-05T21:01:06.223Z"} +{"cache_key":"28281f3d0807c48dd34ff5079ced17029c8fefafa0e3a263d82dd84a7592c1ef","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"ar","translated":"إضافة","updated_at":"2026-07-10T02:25:55.174Z"} {"cache_key":"28628884bf42001bb1106e9a421a05631fa1606a126aa1769ff909067eb3dfd8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"ar","translated":"كثافة بطاقات مريحة","updated_at":"2026-06-17T14:14:58.728Z"} {"cache_key":"2b403b1fcffdd4ea08a6bc5f1dc8c12d59e8e8a293b20ea542cdbb020259a01d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnly","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Archived only","text_hash":"da7ebd8c482f38dc2a5b693a0ec25aaa04ea7b5fa3713cce9fa41a28f2201a6b","tgt_lang":"ar","translated":"المؤرشفة فقط","updated_at":"2026-07-02T14:30:22.961Z"} {"cache_key":"2b786815301e6972a6a9ef192e5fbc61483dc68c1860dd5c75df2d9f3a695e11","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"ar","translated":"{agent} (غير مُهيّأ)","updated_at":"2026-06-17T14:14:58.728Z"} {"cache_key":"2bd4768c9e0e058bef59d2b4ea3d35b956a47e523aab1232806d96c158f553e2","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"ar","translated":"لا يزور أبدًا","updated_at":"2026-07-09T20:51:37.244Z"} +{"cache_key":"2d4cd929aedf74e3c0115f149408b73b01b05808deeaa21d9bbe414915f8f197","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"ar","translated":"تستخدم أسماء الخوادم أحرفًا وأرقامًا ونقاطًا وشرطات أو شرطات سفلية.","updated_at":"2026-07-10T02:26:01.646Z"} {"cache_key":"2db23dc5db0199a24416b0fe590cac915fa36c9bd4b3586b7c6098575bf73fb3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"ar","translated":"فشل التحديث","updated_at":"2026-06-17T14:15:04.326Z"} +{"cache_key":"2e8fdb87d9921cf905ed3278e27d16474e02ae1bab88f6edf76f1c169a11d8af","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"ar","translated":"معرّف المكوّن الإضافي","updated_at":"2026-07-10T04:28:28.953Z"} +{"cache_key":"2f16d6f653de8355084fe9c8b9eb3b4479475cebf0120dcad12acbd92d4235f4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"ar","translated":"أدخل عنوان URL بنظام http(s) أو سطر أوامر.","updated_at":"2026-07-10T02:26:01.646Z"} {"cache_key":"30e6e7267a04dbe556f45fef9edb3af633ab75546a2d011c75f38f2fbd5317c1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.badge","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Expired","text_hash":"424a2551d356754c882d04ac16c63e6b50b80b159549d23231001f629455756e","tgt_lang":"ar","translated":"منتهي الصلاحية","updated_at":"2026-07-01T10:32:31.521Z"} +{"cache_key":"31a5578f8ea91c11176f6c7c5d44d8b99744f3e4ec4beb9071d6190ffb2526a0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"ar","translated":"اكتشف مكونًا إضافيًا مميزًا أو ابحث في ClawHub لتوسيع OpenClaw.","updated_at":"2026-07-10T02:25:55.175Z"} {"cache_key":"31baf5b9e4f804c6e3a61e02532c991cbb3d27c24b36ad51b9505cdc8bdf9f97","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"ar","translated":"ملاحظة الهدف","updated_at":"2026-05-29T21:01:05.556Z"} {"cache_key":"32bb33e694d9600daf879d9de557ac18f7114621a965d13947acef47bed0f87f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"ar","translated":"Skills: {skills}","updated_at":"2026-06-16T14:15:27.039Z"} +{"cache_key":"33832bfef06fb75f95d11e80baee99b5a2976fe0361e9ca96be238d0b2b4ca41","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"ar","translated":"جارٍ التثبيت…","updated_at":"2026-07-10T02:26:13.890Z"} +{"cache_key":"3407ee61b038ef0e8e49de9e496cbb0448d0d1a32166b190faac25bfe5e1e85b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"ar","translated":"تمت إضافة {name}. صادِق باستخدام “{command}”، ثم أعد تشغيل Gateway.","updated_at":"2026-07-10T02:25:55.174Z"} {"cache_key":"344eb5fc143a6257bad30043dd1e5276992506d337a40e890cc68c7827de15eb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"ar","translated":"ملخص مساحة عمل الجلسة","updated_at":"2026-06-16T14:15:41.761Z"} {"cache_key":"3515f034c8cb91215ff250241e5e237534a1179950249389bdfb384779b1727e","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"ar","translated":"{count} رموز إدخال","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"3585f4cfb4490280c49d96db741eba593632f230bc109caba956ac1b59d079ee","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"ar","translated":"إزالة","updated_at":"2026-07-10T02:26:07.453Z"} +{"cache_key":"3751ceb26e9d57254fd1a684bfc0020ea6ff3ec07f9f6ee2678e031af3bc12e0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"ar","translated":"تمت إزالة {name}. يلزم إعادة تشغيل Gateway لتطبيق التغيير.","updated_at":"2026-07-10T02:26:07.453Z"} {"cache_key":"38d65b9265e825fb4e4d866593792c1abdda80934818a0b9aecf22306d48a86f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"ar","translated":"إدخال الميكروفون","updated_at":"2026-07-06T17:33:50.709Z"} +{"cache_key":"3a54895f7ee2056faa597cf8e237c88f02113817851ef95d30794c41d8da3705","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"ar","translated":"هوية بناء Control UI وGateway المتصل.","updated_at":"2026-07-10T09:47:18.408Z"} {"cache_key":"3b5a4d5bde77f68a213cc7fe8fa99301db21f7abfec8869f1c0289416583907b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"ar","translated":"لم يتم التعامل مع أي ملفات في هذه الجلسة بعد","updated_at":"2026-06-16T14:15:34.787Z"} {"cache_key":"3b6787543beee7694de71aa8d49d6e2eea6fe0536e54447f6fd6eb436cea5854","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.openUsage","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Open usage dashboard","text_hash":"bae5e40b055c195a780a0dc06042d60353da51ab582610096c5cb0d269484c00","tgt_lang":"ar","translated":"فتح لوحة معلومات الاستخدام","updated_at":"2026-07-09T11:49:31.150Z"} {"cache_key":"3ca80b331543f04c445a8ce07de0f9a1c090b9e3fbe1764aa3b634b1603735fa","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"ar","translated":"متصل","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"3ce657cfb652d75a1f4f23ecb7bf00ef63fd1515a859e36e485d84752a73f9e4","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"ar","translated":"ترتيب حسب","updated_at":"2026-07-06T23:41:03.547Z"} {"cache_key":"3d6682af16bb417d5a1877053f7bd3f74da5a314c36c848003e9b306e0c3d41e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"ar","translated":"لا توجد ملفات في هذا المجلد.","updated_at":"2026-06-16T14:15:41.761Z"} +{"cache_key":"3dc866435755fc498a135387eecd8161c9c650d7c25f60b5a8ead059aa96b170","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"ar","translated":"المشكلات","updated_at":"2026-07-10T02:25:55.175Z"} +{"cache_key":"3de74457254ffbf61101119f5d81712f244c92641a9d9f8a55da33d7043f8999","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"ar","translated":"كتالوج المكوّنات الإضافية","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"3e8c3ea6c3806eee880fd7047a747d93025a592a34bfda7838d5f999b58edd39","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"ar","translated":"رموز التشغيل الأخير","updated_at":"2026-07-05T10:16:14.365Z"} +{"cache_key":"3fc55c990380432e0139ca427037491a2b940abf522f8d0e4f3e5f54392a86c8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"ar","translated":"تم تثبيت {name}.","updated_at":"2026-07-10T02:26:13.890Z"} +{"cache_key":"40c58d2bd4b21bf435d81bb1a90925e307565e3d4ad6bff4117b62484131f7c8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"ar","translated":"تصفّح فقط. لا يسمح هذا Gateway بتغييرات المكوّنات الإضافية.","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"41c103a08f5a327446e04ebae794357e17495c4e250132819b10e7936f06790d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"ar","translated":"ملخص جلسات Codex","updated_at":"2026-07-09T10:01:43.759Z"} +{"cache_key":"41ce8118f27387e1e83e7cba2930174c8178e988cdc70b8ec8bced12bdeaa8dc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"ar","translated":"مفعّل","updated_at":"2026-07-10T02:26:07.453Z"} {"cache_key":"423a8ec9bb2af0c14259060fbe22f72db99edc2e7ea13db7d21a1cf212cf5cd0","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.planUsage","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Plan usage","text_hash":"eb55e9232d2a7503c819491be60761e99458daf4947df9676c5cc86b653f59f4","tgt_lang":"ar","translated":"استخدام الخطة","updated_at":"2026-07-09T11:49:31.150Z"} {"cache_key":"42c03e1e3e3005a2e468c0aeeba4ccecedd2f571bacc359b4b6d2a0ec096247c","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"ar","translated":"مدخلات الميكروفون مشغولة أو غير متاحة للمتصفح.","updated_at":"2026-07-06T17:56:46.696Z"} +{"cache_key":"42cf99668b1c7b2f7b1970ac1b405bdd9898fcb6acde16a58dcba9a65033a48a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"ar","translated":"إزالة {name}","updated_at":"2026-07-10T02:26:07.453Z"} +{"cache_key":"437aa3b26d19579e204b0cb699aee27e055bb1bb1053c82844674054e1d770ca","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"ar","translated":"خوادم MCP","updated_at":"2026-07-10T02:26:01.646Z"} +{"cache_key":"438e7fec1cc8a74c2e48132529b7654331f2d5adfddca8bedb0b9d58dbd02f87","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"ar","translated":"معطّل","updated_at":"2026-07-10T02:26:07.453Z"} {"cache_key":"4415183ca5d503c746da2130e2417c474c438a474ec03e1b2603f1222109239e","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"ar","translated":"فشل أخذ اللقطة: {error}\n\nهل تريد الحذف دون لقطة؟","updated_at":"2026-07-05T21:01:06.223Z"} {"cache_key":"4426f55144297880b6ce87734b56bfeb86339200fa7cd76544e89a5d0a1c447b","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"ar","translated":"المستودع","updated_at":"2026-07-05T21:01:06.223Z"} {"cache_key":"447c131c2bd2e343b3fb792a75f1fb4409801716aad5201157df74715f1b23a9","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"ar","translated":"العامل {state}","updated_at":"2026-05-30T15:38:27.116Z"} {"cache_key":"4487895a6ff1556cc654e8fe2b974b41dd5ebb529f47d18eeabdea042fb5ba6c","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"ar","translated":"أفضل النماذج","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"44fd166425934408ba9075bed2774e88aec2a8cb95b08bae3a4a0895b0330cbe","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"ar","translated":"{count} يومًا","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"45941f35c42594eb9a4850095631d25e68dc547b835f1fd62ee675b60aa34e61","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"ar","translated":"الذاكرة","updated_at":"2026-07-10T02:26:01.646Z"} {"cache_key":"47ab6e01b98ce057c1bcfe512bc5ea433b5a5858bb36734495995e843dea5a4c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"ar","translated":"المضيفون","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"487aec3e36a031895c932149e153d8bdd582f360e0e2613d56ccdc2b1eef4117","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"ar","translated":"الميكروفون {number}","updated_at":"2026-07-06T17:56:46.696Z"} -{"cache_key":"4b8b58418d539b6f31aa0417952bb7464bf681aad07e36a175c085e3fa3fdc81","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"ar","translated":"فقاعات صغيرة عند اللمس","updated_at":"2026-07-10T04:50:19.158Z"} +{"cache_key":"4a470534d109e05912dfe7a6d1bef6295fbff1fc0eccb9b86f67026d663916c1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"ar","translated":"مضمّن","updated_at":"2026-07-10T02:26:07.453Z"} {"cache_key":"4bb28e9afda63bf46e4182639fb9b725c1cba5013470c24ada19c394ab1cbe1b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"ar","translated":"مسار مساحة العمل","updated_at":"2026-06-16T14:15:41.761Z"} {"cache_key":"4be427737e937eebb61b9821fbfec2f031dfc33120e00fe9e9076c9f7c2ba26d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changed","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Changed","text_hash":"2a6141e43be0c2125e3b5d9f74b4ff1261a0b320ff927c83d4d9b1b65585bad7","tgt_lang":"ar","translated":"تم التغيير","updated_at":"2026-06-16T14:15:41.761Z"} {"cache_key":"4c03c8a1dc5d7941392b63316a4565a4c29b83592881c5700a8c46eeb684e41c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"ar","translated":"الافتراضي","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"4c361b11b5115bc32ba38b3a6a888d3f79d4f63ea408847514e7f4719e840264","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"ar","translated":"فتح الدردشة","updated_at":"2026-07-09T08:27:20.342Z"} +{"cache_key":"4c66fd8e7dbda6da6d07bfd92bb6802e1b3351c287650133d1d842d3b790751d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"ar","translated":"لا توجد في ClawHub نتائج عن “{query}”.","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"4de60b635c8d318ef96812b307db0266b5a0b974433b3a475da7058c642d50c1","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"ar","translated":"مساحات العمل","updated_at":"2026-07-05T21:01:06.223Z"} {"cache_key":"4f59bc6df25e2495ede201a5cd831658d42000f5f645df19553afc9be514e0b2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"ar","translated":"أرشفة الجلسة","updated_at":"2026-07-02T14:30:22.962Z"} {"cache_key":"4f5df68126b4a7506e392871313afb6007b65be723d33e6f1dd1c395d43635c7","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"ar","translated":"نافذة السياق","updated_at":"2026-07-05T10:16:14.365Z"} +{"cache_key":"4fdace57ab90d000ec4bfbe8c13866d3870784369f2912334e453cb7d6a549df","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"ar","translated":"يتطلب الانتباه","updated_at":"2026-07-10T02:26:07.453Z"} +{"cache_key":"51b83ec13eda7ae8d5bc77803d52a64841f6f986a249cce85ee76b7cb9b89a12","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"ar","translated":"إضافة خادم","updated_at":"2026-07-10T02:26:01.646Z"} {"cache_key":"51c230ab687ba027ff013718b13ce69541910ed472bd5a11f23a58bcc61c3fba","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"ar","translated":"تقسيم","updated_at":"2026-07-06T22:56:27.100Z"} {"cache_key":"5377d70b50292ec6d0fc885eb6f3d7f1efb8161fa360c6d28887da2b48b0477a","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"ar","translated":"أحدث المهام المكتملة والفاشلة والملغاة.","updated_at":"2026-07-09T21:53:23.244Z"} {"cache_key":"53e198dd40fa26c62fced943845107d4b96229b043fd9f523e571a4b62d77a1f","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"ar","translated":"إجراءات الرابط","updated_at":"2026-07-09T11:02:53.077Z"} {"cache_key":"541a93bf518e064a9d0a79ea654c4cd71be771dd6471b4ec3c8fd33041577938","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"ar","translated":"تعذّر الوصول إلى مدخلات الميكروفون.","updated_at":"2026-07-06T17:56:46.696Z"} {"cache_key":"547b89dca9e5b3ebf9c7726b684d138b5efab147428299756e9c884d45a5247b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"ar","translated":"غير معروف","updated_at":"2026-06-16T14:15:34.787Z"} +{"cache_key":"55dba5a996f1d34208cd5a0cf7aa5771fe72f1089ebb1066e9f258a64ef6391a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"ar","translated":"المثبّتة","updated_at":"2026-07-10T02:25:47.877Z"} +{"cache_key":"55e68b82fc6dcacfd893f65f22f605e356b5be3c169ea350d69bf447a99cbf55","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"ar","translated":"الإصدار","updated_at":"2026-07-10T09:47:18.408Z"} {"cache_key":"56d2b9f7ed6b2bcefdfae9336946b14a96da27c781baf9d405b7100ab4930169","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"ar","translated":"آخر تحديث","updated_at":"2026-06-16T14:15:27.039Z"} +{"cache_key":"56f1385f986384c2ca72c11217c3b0f9a26e8bb0f048c1539457c1d35c6af269","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"ar","translated":"جارٍ الإضافة…","updated_at":"2026-07-10T02:26:01.646Z"} {"cache_key":"571f1918b7f3976555081141e7c5e24cb588d8f0eca873af458c47400334f664","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"ar","translated":"البحث في الملفات","updated_at":"2026-06-16T14:15:41.761Z"} +{"cache_key":"5723cc482d32f1182a79b88c9ea7f03a15c1c0dacdb183259e9d2c76452e1b3d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"ar","translated":"البحث في ClawHub","updated_at":"2026-07-10T02:25:55.174Z"} +{"cache_key":"576794b989f29bcae82090f3276372040b29cb0e73db78ccc18848fbd8da41ab","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"ar","translated":"خوادم MCP","updated_at":"2026-07-10T02:26:01.646Z"} {"cache_key":"5851f67e3dae9e0c7e2d72780cb979e0cb0502d9a114b688758755c72ff01e4a","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"ar","translated":"محادثة جديدة في worktree","updated_at":"2026-07-06T04:56:17.671Z"} {"cache_key":"58de05c37a6b12f66900e1c6b39522a13cb59901dd8e02b1909ea180aaa4f3dd","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"ar","translated":"خطأ في النظام","updated_at":"2026-07-09T10:01:43.759Z"} +{"cache_key":"5a9dcd9f0783cba25048770c81a0b96e3559c54961880b239f53f29b60c129bb","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"ar","translated":"المكوّنات الإضافية","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"5be2af97d4fc9f52c0956cc26b1128ffcbce3c1aef8fa72a1fc1f0f0e116776c","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"ar","translated":"تم حظر الوصول إلى الميكروفون. اسمح به في إعدادات موقع المتصفح لعرض المدخلات.","updated_at":"2026-07-06T17:56:46.696Z"} {"cache_key":"5c8aabd59beb6ef77a79452f2e5ac60a0de8c8eef5a71c273f2825d91ef664fc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"ar","translated":"قديم","updated_at":"2026-06-17T14:15:04.326Z"} {"cache_key":"5dd083fdd8c988e3d8609c064085ed8eec0c654d9525e6da311b1a0708f340d7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"ar","translated":"تم إنجاز {count} من التبعيات.","updated_at":"2026-06-16T14:15:34.787Z"} @@ -88,58 +139,75 @@ {"cache_key":"5e1c28292b2898d94932e5718fb3d37621dc4265799a64deeacd94968469e6e6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"ar","translated":"مؤرشف","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"5e340c95aecd7f2f8e669ad660cef4fb81702d415fead27e96599b1ac09284f2","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"ar","translated":"الإعداد الافتراضي للنظام","updated_at":"2026-07-06T17:33:50.709Z"} {"cache_key":"5e9293196f44e9f7f04c7f551495fd97cc3c1c54c7e5f1f24361c372b420efc3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"ar","translated":"مساحة عمل الجلسة","updated_at":"2026-06-16T14:15:34.787Z"} +{"cache_key":"5f07fc98ef3e5d4bd49ef014869dcf62141ae51620796f6373e8b9f8cc978668","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"ar","translated":"تمت الإضافة","updated_at":"2026-07-10T02:25:55.174Z"} +{"cache_key":"6085c52212f3b54a368dcd0966f0de01dd72eb653a58534f3c30c374336188d8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"ar","translated":"البحث في المكوّنات الإضافية","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"6112261c8a4a8994aa9707fbc83d7e4651fb5b1a3cb60a9ad1fbbd8056627d30","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"ar","translated":"ترتيب الجلسات","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"6225e7b448449478c03baede071625ac669120857e67c99007e8ed9075e98cb2","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"ar","translated":"لم يتم العثور على أي مدخلات ميكروفون.","updated_at":"2026-07-06T17:56:46.696Z"} +{"cache_key":"62b63455238e594d9f5b9e5de7694b1ed87393adce8ce63af2d33a0b21647be2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"ar","translated":"مثبتة","updated_at":"2026-07-10T02:25:55.175Z"} {"cache_key":"62c4c89fa49729ff4dada6ea4801a2704f07e5b9faaa7c4068cd505810894218","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"ar","translated":"استخدام المحادثة الحالية لطلبات المراجعة","updated_at":"2026-06-16T14:15:27.039Z"} +{"cache_key":"6346777d37f955763447151845d96c40c44059af5c85b1c397390bef1764893b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"ar","translated":"الاسم","updated_at":"2026-07-05T21:01:06.223Z"} {"cache_key":"635be634ba2bd735ced8cd50c8e429267e8b7c9b8882f0d28bd033de13b3a8e7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"ar","translated":"{count} تمت قراءتها","updated_at":"2026-06-16T14:15:41.761Z"} {"cache_key":"637e6f3ee169540b9f4f0cec15963b8d49e11256b0851d52df99b2710c608d4b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"ar","translated":"جاهز","updated_at":"2026-06-17T14:14:58.728Z"} {"cache_key":"63b4734cc4661b6f07bf1670a417a6ae036091973f229928faf0c94d2645b90b","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"ar","translated":"النظام","updated_at":"2026-07-09T08:08:00.664Z"} +{"cache_key":"6465a89628f13489f162ecd0d2e8bdd36e266517f48e76fbc832b5a3ede9d9fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"ar","translated":"اربط خوادم Model Context Protocol لمنح وكيلك أدوات إضافية. تنطبق التغييرات على جلسات الوكيل الجديدة.","updated_at":"2026-07-10T02:26:01.646Z"} {"cache_key":"65a0f420d82a92ad7b5e3dd052c81658addc3a197ed95f3a5de6c117aa3fd827","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"ar","translated":"مرتفعة","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"66878bb84bebc59072d2eb263b25d711dd5df8efad750a5d09b80c6b81764f74","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"ar","translated":"قابل للاستعادة","updated_at":"2026-07-05T21:01:06.223Z"} +{"cache_key":"66b841a4f8e546c4bf5aa0ee8044b15519eb8a44da409a3939ecf85c2381ab1f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"ar","translated":"التكوين","updated_at":"2026-07-10T02:26:07.453Z"} +{"cache_key":"672b17d9c6bf615426eaa733c7b46fb1d7076ebebf1adde73d0c4f7853e3020c","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"ar","translated":"تفاصيل بناء Control UI","updated_at":"2026-07-10T09:47:18.408Z"} {"cache_key":"67705efc36f4fd59149aaf0e64e0a77c76b6cc38c6fe7a51fcf48bd778d9e80c","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"ar","translated":"الروسية (Russian)","updated_at":"2026-06-26T21:43:32.403Z"} {"cache_key":"685580078c464cffb01fba647ae14db5d572c570d640c230842de054c1cf2585","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"ar","translated":"كل الجلسات","updated_at":"2026-07-03T07:38:39.676Z"} {"cache_key":"69febdd4f0d2bd27da0c3d1b40c234a16264866e1a9047c43bdba454fb1d75d7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"ar","translated":"بروتوكول العامل","updated_at":"2026-06-16T14:15:27.039Z"} +{"cache_key":"6afa219080c99caea26912546e1ba0dae627bc5d18f589ce714fbb7093e887c8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"ar","translated":"عام","updated_at":"2026-07-10T02:26:07.453Z"} {"cache_key":"6b4f662a6f7efaadb325f4a851b02ff15583c7e7346bdf1ef517895fc670f9a9","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"ar","translated":"تنظيف الآن","updated_at":"2026-07-05T21:01:06.223Z"} -{"cache_key":"6df83691429f9f7b66eafe850df405fdcb92bf6f0f0258492ace5a80a0bb4778","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"ar","translated":"{name} · أول زيارة في {date}","updated_at":"2026-07-10T04:20:34.755Z"} {"cache_key":"6e72b3484a4b260082596e6a561cf0a45364fbe344b4b7ec098cc234ffbf9987","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"ar","translated":"إعادة تسمية الجلسة","updated_at":"2026-07-02T14:30:22.961Z"} +{"cache_key":"6f2c655f74c446bd28f84adb9877f546950c48e13f2df07c7e27c578d430720c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"ar","translated":"الإقرار بالمخاطر والتثبيت","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"708f7fa69eda584e6034ed3fd424c90e0c1d8c6f3bc0899754aa0a9685a0b78e","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"ar","translated":"خوادم MCP، والمصادقة، والأدوات، والتشخيصات.","updated_at":"2026-05-31T05:36:42.114Z"} {"cache_key":"70a218e2172f80df8964fec614441ac780584802ca8d9e02134d666459aaf709","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"ar","translated":"إظهار الجلسات المؤرشفة فقط.","updated_at":"2026-07-02T14:30:22.961Z"} {"cache_key":"7144d8fb48cfb1d3a292955b61e8ae0b3bbbbd35b6e639205f4d88c7cce14272","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"ar","translated":"لا توجد جلسات على هذا المضيف تطابق بحثك.","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"7171731fdc606f54bcffcf226ceb013e82b0869f2df180bd9d00f686589697c4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"ar","translated":"طي مساحة عمل الجلسة","updated_at":"2026-06-16T14:15:34.787Z"} +{"cache_key":"722647acad22688efcaab5fd267b07cc1e13d1f4ab17c5696e407b927072173d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"ar","translated":"تعطيل {name}","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"72504fe3ece2f85beda1168b6c560191fb716e84101f74e582d91568d80089a9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"ar","translated":"النوع","updated_at":"2026-07-05T14:39:56.977Z"} {"cache_key":"732ca472029046ca18ebf8398747ced1c60994e3c2a0555b164aa3a52730691b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewBlocked","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Blocked","text_hash":"18f2a0947f9d6523991b29b450307f22773f57d65f7efb98d48a167df04d6b1d","tgt_lang":"ar","translated":"محظور","updated_at":"2026-06-17T14:14:58.728Z"} {"cache_key":"738bb1b09f84bd01b5a3eacd158f0d8a272957838c6b8ee0b4bad02a9b991cff","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"ar","translated":"استعِد هذه الجلسة لإرسال الرسائل.","updated_at":"2026-07-02T14:30:22.962Z"} {"cache_key":"73a457b2179107dd5d1426e0fec360f1cf9f00ec5ed7b3e77594575ef9660ad0","model":"gpt-5.5","provider":"openai","segment_id":"languages.hi","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"हिन्दी (Hindi)","text_hash":"fab2abfce45382f3031c59477017700a8cb5dfaf8d15379dc24304809b97c7d5","tgt_lang":"ar","translated":"الهندية (Hindi)","updated_at":"2026-06-26T21:43:32.403Z"} {"cache_key":"73f8ce976b388f73c4d280c14603580bde423aa7afb518b7e9f673f8521edb68","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"ar","translated":"لا يوجد نشاط","updated_at":"2026-07-05T14:39:56.977Z"} {"cache_key":"74cc623b957f70b35f6fa003d2b2f6cf8343bfa56087b0a673520cc111d226b6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewAll","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"All cards","text_hash":"2306120917506b5998ec702f3661068b102dac538ba4c9e4634d65fe33eea98a","tgt_lang":"ar","translated":"جميع البطاقات","updated_at":"2026-06-17T14:14:58.728Z"} +{"cache_key":"764692245024497c968fb303e28764e137fa2bc764257d5e016739712e776590","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"ar","translated":"اتصل بـ Gateway لتغيير المكوّنات الإضافية.","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"767f1bcb85fa5ceff8b831c743ff92ae57391350801be66a20a7aa57380aa9a3","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"ar","translated":"نسخ معزولة لمهام الوكلاء ولقطات استرداد.","updated_at":"2026-07-05T21:01:06.223Z"} -{"cache_key":"76b0fb3db0e9313051c0ac342b4300b5e9963f4ad8e813e445d76be06b7e7d27","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"ar","translated":"تثبيت إلى الأسفل","updated_at":"2026-07-10T06:08:20.257Z"} {"cache_key":"7861b489b6754a2b4e68f72ce2d3c1c3a539bb8e2181026222020d021f025c72","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"ar","translated":"الاحتفاظ بالتعليق بعد الإجابة النهائية","updated_at":"2026-07-01T01:07:19.841Z"} {"cache_key":"791b4517c5c115ab96e92259a98f6ce843e044870f661024c0aed5a71408de17","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"ar","translated":"بدون","updated_at":"2026-07-05T14:39:56.977Z"} +{"cache_key":"79c0510b8ca7c7526d036ce1f651671ef5ac6e8c77f8f7ad183b68871269b8d5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"ar","translated":"جارٍ البحث في ClawHub…","updated_at":"2026-07-10T02:25:47.877Z"} +{"cache_key":"7abfd4ab021b616630a1841e8499ade403105a8344dd19476f86d6f52f2e1f7e","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"ar","translated":"تعذّر نسخ تجزئة Commit","updated_at":"2026-07-10T09:47:18.408Z"} {"cache_key":"7c069f97387b64a31fd8a22283a380d238191fbb5064e26bbfb69656e67c2f66","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"ar","translated":"عقدة","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"7d60d8554dcfb8d41137e8314ecceeffee430377085a746514a22d59c6140240","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"ar","translated":"مساحة العمل: {workspace}","updated_at":"2026-06-16T14:15:27.039Z"} {"cache_key":"7d612b873db5a734d7bf65bb5f9614c720c2de713e89091e753cd04f8df45e06","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"ar","translated":"Gateway","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"7e044004d8cce1e8fd0122556a521aa760fe712e2c33164c9e8ca17cbbcc2d25","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"ar","translated":"{count} بطاقة","updated_at":"2026-06-17T14:14:58.728Z"} {"cache_key":"7e8c0e2fec7a5f653398dbe21d64265f4448fc19d5e09ed2b76e392d06b5c646","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.sessionSelect","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Pane session","text_hash":"0deb0759c3643f2659c0838326276513c119e7923672a118c4ed13c012c4b628","tgt_lang":"ar","translated":"جلسة الجزء","updated_at":"2026-07-06T07:23:44.872Z"} {"cache_key":"7f4bc10589146ec18ab97233184abe2b6e5b31524437faf90919e5196a962ae4","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"ar","translated":"{count} سجلات العامل","updated_at":"2026-05-30T15:38:27.116Z"} +{"cache_key":"7f6e2855939ce1e7c978ed4cf420444ed55ee121fdb08d30a6afe69b09d4b0f0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"ar","translated":"تمكين {name}","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"7fdb8695e6f2dcd443aeb46794157c79ed1caad2e1d8713999572b80831bcf31","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"ar","translated":"استعادة","updated_at":"2026-07-05T21:01:06.223Z"} {"cache_key":"80da683b433076cbdc9ef632952601c62a6b00adf9c0209ab23b1abf93747d6c","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"ar","translated":"يتطلب الإدخال الصوتي في الوقت الفعلي الوصول إلى ميكروفون المتصفح.","updated_at":"2026-07-06T22:42:12.115Z"} {"cache_key":"8145ea7d9fbcef1474e8c8a748952c943186611f9e88317e7e1170a04dee76f9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"ar","translated":"جارٍ تحميل مساحة عمل الجلسة…","updated_at":"2026-06-16T14:15:34.787Z"} +{"cache_key":"81ee5c6d617860cdb0ca368ccbd943891381ce542e7e224e850690fd1df314d0","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"ar","translated":"يتم الإبلاغ عنه بواسطة اتصال Gateway النشط؛ وهو منفصل عن بناء Control UI هذا.","updated_at":"2026-07-10T09:47:18.408Z"} +{"cache_key":"8222bc35c10bfcb3a1a10ea6c18d085c8deb06c6293f6a854469017d896599b7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"ar","translated":"مصدر موثّق","updated_at":"2026-07-10T02:26:07.453Z"} {"cache_key":"831124e495854c05912c4ccde13a92a3374ba33bda93a18e987f22451aefdee4","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"ar","translated":"السلسلة","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"842ab7d6442cfa0102041918ec64214067e9704ff23695c6c4e8f0b2c4e94880","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"ar","translated":"المزيد في الإعدادات","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"84a2fadc42c992f68516d79fb4514dea80e5af0e81c719d53558cef444d9385a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"ar","translated":"آخر تحديث: {time}","updated_at":"2026-06-16T14:15:27.039Z"} -{"cache_key":"850c4495ebadba9ce0263879918014e8fea1ef13072a466be472670d27ea4582","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"ar","translated":"أصوات الكركند","updated_at":"2026-07-10T04:50:19.158Z"} {"cache_key":"851b92a6a0439f8ce4e883a1efe9c5e48a7638b01ad25fe0b9e64c022a81e60a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"ar","translated":"عرض أول الملفات المطابقة. حسّن البحث لتضييق النتائج.","updated_at":"2026-06-16T14:15:41.761Z"} +{"cache_key":"8589470dc80ff4c7b1011eec68216364f1a5f35faf76ba6169cb0301d5fcd110","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"ar","translated":"تم تمكين {name}. يلزم إعادة تشغيل Gateway لتطبيق التغيير.","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"85f9845a46b761f3837c5859206e9352531ea123593f434b738dd4a2ffd973ff","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.title","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Context usage details","text_hash":"0e04e44654b5a2abf769dcd2f82a32e0501a41689d6635d7f718978c160958f0","tgt_lang":"ar","translated":"تفاصيل استخدام السياق","updated_at":"2026-07-05T10:16:14.365Z"} {"cache_key":"86008dbce11bda2a2a89254d39ae9a7216bd85537fb66b1c4fffc524ee9164c3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"ar","translated":"تجاهل خطأ Talk","updated_at":"2026-06-16T14:15:34.787Z"} {"cache_key":"865aa508e19d35af685467b7c20cc07370e370d77fa3f21d06e08f4df0730706","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"ar","translated":"الوكيل","updated_at":"2026-07-05T14:39:56.977Z"} +{"cache_key":"86c2e89384d126ecf15a041bcbf08ee46e422942e38581e70b59ea5c1b9a85fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"ar","translated":"مكوّن إضافي برمجي","updated_at":"2026-07-10T02:26:07.453Z"} {"cache_key":"876923af7d377608d821b7c7b0691342811e911e7121bbeed79531eb3dc1a258","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"ar","translated":"الأمر","updated_at":"2026-06-16T14:15:44.085Z"} {"cache_key":"87bcea3aecfb48fec055fac26369a502ea5597a11a225f626d32a2e9dad32176","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"ar","translated":"{count} محظورة","updated_at":"2026-06-16T14:15:34.787Z"} {"cache_key":"895b917091e6eece827df197801f63360d6fd43dd0993f06b8670dcda79967f3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"ar","translated":"{parent} (مفقودة)","updated_at":"2026-06-16T14:15:34.787Z"} {"cache_key":"89ce47e25e2f2777ac23495fcc9a78c43c6d03d0e929a0b0cf293d9f63da6c99","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"ar","translated":"إرسال طلبات المراجعة إلى جلسة المحادثة الحالية بدلاً من جلسة workshop الخاصة بالمقترح.","updated_at":"2026-06-16T14:15:27.039Z"} {"cache_key":"8a5728258a7094921061a00171e530a7c48e06780879172c03746b4ef8484b79","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"ar","translated":"نسخ المسار","updated_at":"2026-06-16T14:15:44.085Z"} {"cache_key":"8aa9be62d06416debf808b5a16099db2ec36a373ec0f4fe9f51dbba548527738","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"ar","translated":"أُنجز مؤخراً","updated_at":"2026-06-17T14:14:58.728Z"} +{"cache_key":"8ad194bc26b41676892f6558530dd8b28b1d1c842f7edfe99ef8618b67a3e2fb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"ar","translated":"تعطيل","updated_at":"2026-07-10T04:28:28.953Z"} {"cache_key":"8b320832e4155dc7640707a745d599f45e57da0b3a4f6862be66743770184e15","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"ar","translated":"CWD","updated_at":"2026-06-16T14:15:44.085Z"} +{"cache_key":"8b7a8c45ad4666dcf603505b10228bfa85bfceecf317e6b50c056b4d16f26f31","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"ar","translated":"تمكين","updated_at":"2026-07-10T04:28:28.953Z"} {"cache_key":"8b8e47cf3aae6fe7d317289990cce4006c2083b32731e7ecfd4a3cd20e555104","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"ar","translated":"قيد التشغيل","updated_at":"2026-06-17T14:14:58.728Z"} {"cache_key":"8cb8d98c004a0a134a4f382cf8bc0f93d8e91762cabdb881a81b08fe1d525d53","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"ar","translated":"إيقاف","updated_at":"2026-06-17T14:14:58.728Z"} {"cache_key":"8d2c08b2bf9c16e47209d387928b348e61f7e13e7fe59a75f37a422d3f671407","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.open","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Open split view","text_hash":"51e50f7be73433216ae62f58fdbc586372f5a6063ee9978cec96793ef75fa554","tgt_lang":"ar","translated":"فتح العرض المقسّم","updated_at":"2026-07-06T07:23:44.872Z"} @@ -148,6 +216,7 @@ {"cache_key":"8f8c03713dda3267667702d44d233cf8b52a531cf66105aee3d9df400d835f93","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"ar","translated":"مؤرشفة","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"8fabd65dda7dc62323f0a34ff9bd7b686e0d4b20b9294cc9b8c82b955966345c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"ar","translated":"سجلات العامل","updated_at":"2026-06-16T14:15:27.039Z"} {"cache_key":"90a1a748f056d352639608b9c6417c9c89fcfe6f449b682e98ad1b15600c45e8","model":"gpt-5.5","provider":"openai","segment_id":"connection.reconnecting","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Reconnecting…","text_hash":"27b80374e1151af6df7824a358606c77502548bff4d467e4ae2e146801f601ce","tgt_lang":"ar","translated":"جارٍ إعادة الاتصال…","updated_at":"2026-07-05T21:55:35.324Z"} +{"cache_key":"90e056a7ed25333a47b8d5a2f1d7f0e63bde9ab5723f052a95b4a8972556a055","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"ar","translated":"غير متاح","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"913a6b78b218deff06f9ccd0df59033cf8870d95e607ee14caf0b858bc8d3446","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"ar","translated":"لا توجد ملاحظات للمشغّل بعد.","updated_at":"2026-06-16T14:15:34.787Z"} {"cache_key":"9171af81050dcc50f8fb794dcf05b2f6ac02598d4d17a8c42b6e880bbe177809","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"ar","translated":"الصوت","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"9203ef68fd5c43879016ef1a4560de37314266b20f559317c1d3abe2770ab71d","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"ar","translated":"مدخلات الميكروفون غير متاحة أثناء عدم نشاط هذه الصفحة.","updated_at":"2026-07-06T17:56:46.696Z"} @@ -156,23 +225,33 @@ {"cache_key":"93d711e20bc256368454d5f7f237378bfa6645ee87ec006f1339260f8ba38aa2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"ar","translated":"أمس","updated_at":"2026-07-05T14:39:56.977Z"} {"cache_key":"943994434b0be021e44bbdbe663cdb7ce01774b0bf1f7006cb0da2748fb08c52","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"ar","translated":"لا توجد بطاقات تطابق هذا العرض","updated_at":"2026-06-17T14:15:04.326Z"} {"cache_key":"947f5522672bd922f9bc9f46ba10fcc9885a74bd8164905d0084a7046b197360","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"ar","translated":"حالة لوحة العمل","updated_at":"2026-06-17T14:15:04.326Z"} +{"cache_key":"96c27a08be659580adea555f1ebd791ce75bd0a4430dd58b7625f7bdb0a5950b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"ar","translated":"اتصل لتصفّح المكوّنات الإضافية المثبّتة والموصى بها.","updated_at":"2026-07-10T02:26:07.453Z"} +{"cache_key":"96efc8eff682809d2e56eda8545217c1e5b4ad6424b58522f5bf0bff19fca3d7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"ar","translated":"البحث في المكوّنات الإضافية","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"977c628419aff69238ae35e54fae6bdead66b5fc0afdbd6a7b1325b1ce656f6e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"ar","translated":"اللوحة: {board}","updated_at":"2026-06-16T14:15:27.039Z"} {"cache_key":"97c8194ec517dca6ce86789d7788021a6e4e9528bde1ba7eec256b070a052c58","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"ar","translated":"الملخص: {summary}","updated_at":"2026-06-16T14:15:27.039Z"} +{"cache_key":"97f10399ef156315ebecdf5491ac9343dccd6f98bd2224a5bf32c1f2df898751","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"ar","translated":"جارٍ تحميل المكوّنات الإضافية…","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"982419eff9958b8cd6ad5d8bddede615f91aa2199cedfb19ce70d88f9c7aeb2e","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"ar","translated":"{count} رموز إخراج","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"9885bd9b9d0ac3048e7a0dab110454b5c55fddcb5de71726e1aad6a2488d0d76","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"ar","translated":"مساحة العمل","updated_at":"2026-06-16T14:15:34.787Z"} {"cache_key":"98e803b5073791c5adc4a9eb82249b8813686ee8deeb396cebf6e3446e4d3a75","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"ar","translated":"خيارات المجموعة لـ {group}","updated_at":"2026-07-06T23:41:03.547Z"} +{"cache_key":"997d4281916b09eaacdd5471173360197cad0052f38aeb196db080df096b2732","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"ar","translated":"جرّب بحثًا مختلفًا.","updated_at":"2026-07-10T02:25:55.175Z"} {"cache_key":"9ce51334d5d69a29aeb7bab6ec21e0453796212f124e44336a88652fe8283441","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"ar","translated":"عرض للقراءة فقط لجلسات Codex على بوابة Gateway هذه وعلى كل كمبيوتر متصل يشاركها.","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"9ce80b7e5e8342aa6625f14c30985daf9367256485a8234d3524bf1e87e381e6","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortCreated","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"ar","translated":"تاريخ الإنشاء","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"9d21a4f3049d62d9376453d1cd7bc825fa508f73d2aaf191bcff38396f5fe319","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"ar","translated":"اسم المجموعة الجديدة","updated_at":"2026-07-05T14:39:56.977Z"} {"cache_key":"9d760b6f3a4062b9d47dce430073f483f2ef77205bc1d507afc42cca94e27f29","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"ar","translated":"توسيع مساحة عمل الجلسة","updated_at":"2026-06-16T14:15:34.787Z"} +{"cache_key":"9ea8bb515b795d2ae535edc61685f3180a7ee7ad3d8173c92c3ed683e88bebd6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"ar","translated":"مكونات إضافية مجتمعية على ClawHub","updated_at":"2026-07-10T02:25:55.174Z"} +{"cache_key":"9f372f23d28fe54f35da3fbd55dcded1cdffcca4758564c222314146c0483fba","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"ar","translated":"مميّزة","updated_at":"2026-07-10T02:25:47.877Z"} +{"cache_key":"9fc03c3b3c9aa57726fd769fbfebd3697efdad3fc5e472cd65d9f1e13a969573","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"ar","translated":"التكوين غير متاح؛ حدّث الصفحة وحاول مرة أخرى.","updated_at":"2026-07-10T02:26:07.453Z"} {"cache_key":"a02637acc571f1e2f867f37f9ac97ef2f7133c3b5928dc78cddbeab639b4acef","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"ar","translated":"تلقائي","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"a0d5e8eab5f576324a3d449acee6832c4bab1577fa40cb282a83b2d9a8ae2b7c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"ar","translated":"هذا الأسبوع","updated_at":"2026-07-05T14:39:56.977Z"} {"cache_key":"a102c927a75fe299419ff82c1897ac1cd059802dc84366a6019901c4094d6208","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"ar","translated":"60 ث","updated_at":"2026-06-17T14:15:04.326Z"} +{"cache_key":"a15cc591e19911effefde7e170c9ebcf7cff34f53ecdb0d1d26a7beec99948ea","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"ar","translated":"أدخل حرفين على الأقل للعثور على مكوّنات التعليمات البرمجية والحِزم الإضافية.","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"a1885dbab8aa55629dea7d25ca4906cf03a391c02d4a2b094bced8f6b4df111f","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"ar","translated":"فتح في الشريط الجانبي","updated_at":"2026-07-09T11:02:53.077Z"} -{"cache_key":"a202b44cbc5314a4d17b6ac96719cbcb251115f13613bdd421e9177c55a41ed9","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"ar","translated":"Lobsterdex","updated_at":"2026-07-09T23:55:55.921Z"} +{"cache_key":"a3b51b01d3cc23fda79a3cb89db1ae7b4f554a533cf1abd5a97079fa7617b66c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"ar","translated":"البرمجة والبنية التحتية","updated_at":"2026-07-10T05:22:20.584Z"} {"cache_key":"a45d50099a270e5883cad841617d2f1ad135bb8b5abbf5f156bccee521e25c2b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"ar","translated":"تجميع حسب","updated_at":"2026-07-05T14:39:56.977Z"} {"cache_key":"a4d2c83b7e32f2e369ffa4480f4fcbdf5787eca9b705f756734944e8d87810d2","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"ar","translated":"استخدام سياق الجلسة: {used} من {limit} ({pct}%)","updated_at":"2026-07-05T10:16:14.365Z"} {"cache_key":"a5363bd580f1134d91755567157bb206180cbac872649544b61363ff9cf28f66","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"ar","translated":"التكلفة اليومية لمزوّد الخدمة","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"a5a4ba161bad6ade64a8a96e5e439f92da436743f6b79eebc47e1915e2cffe63","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"ar","translated":"العودة إلى التطبيق","updated_at":"2026-07-09T08:08:00.664Z"} +{"cache_key":"a6fcce904be41568dfc4a088df980f9e21fd67f8b511f83cfb52bf5e8a758724","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"ar","translated":"البحث في ClawHub","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"a799f78fb8d8cab2a44a19ba1f2614b952c22172817b269f0e8316856ef95dd5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"ar","translated":"{count} جاهزة","updated_at":"2026-06-16T14:15:34.787Z"} {"cache_key":"a83ab279144ada713cc8a851440e5e205b83efdaf280d23c033494b9f7f914d0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"ar","translated":"أقدم","updated_at":"2026-07-05T14:39:56.977Z"} {"cache_key":"a87670d94be192fb5a79a15fbd43b3ec4e6f4b5cff08ba0a9e81f309c8221ae8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"ar","translated":"نتائج البحث","updated_at":"2026-06-16T14:15:41.761Z"} @@ -182,6 +261,7 @@ {"cache_key":"ac81d0f4da372a1dfec5bc4eb1ee59c19b725019bb6bd6bde56033a0b19bd0cb","model":"gpt-5.5","provider":"openai","segment_id":"connection.lostTitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Gateway connection lost","text_hash":"ec6cd265976239ff6fc4f227bb25e8e6286fe38c3d1c64326dcdbb76c28b515e","tgt_lang":"ar","translated":"فُقد الاتصال بـ Gateway","updated_at":"2026-07-05T21:55:35.324Z"} {"cache_key":"ac82e383456f6f0fba9393822bc8a4a02428b118c1bb76d17e582cba064e206c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"ar","translated":"أعد الاتصال بـ Gateway لتحديث جلسات Codex.","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"ad347383ad8b4c8e1a1ee03b01dbacfbf7aecd8fdbad6c330572a8c2d8178b9c","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"ar","translated":"لا يمكن لهذا المتصفح عرض مدخلات الميكروفون.","updated_at":"2026-07-06T17:56:46.696Z"} +{"cache_key":"ad7f5d4019e80e695081bf3b9edc61a9e65e4bf837fce30abb47e149ce38cfdd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"ar","translated":"تم تمكين {name}.","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"afa5a9edc17af85b1208a48df54da9be84e951b058067504ebbdce7fa8b539a2","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropOpenHere","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Open here","text_hash":"b08e2fd2e872adcb575b305187b9db8482369325806953ce80190fc2dc1ab9fb","tgt_lang":"ar","translated":"افتح هنا","updated_at":"2026-07-06T22:56:27.100Z"} {"cache_key":"b0475f9cbf7b5f2f0fbd766e3d999ff95a64591f2d1eda580fb23bfaa75d8548","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.closePane","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Close pane","text_hash":"7fa0f9613d919e167b0f9aa03c22809d446af293eb6c3bac6866bae66d2656c9","tgt_lang":"ar","translated":"إغلاق الجزء","updated_at":"2026-07-06T07:23:44.872Z"} {"cache_key":"b0b45f77a8a2f9de94ffd0d0a299b834fc8f69ce291878ed6471e1abe86fcd8c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"ar","translated":"غير مجمّع","updated_at":"2026-07-05T14:39:56.977Z"} @@ -192,9 +272,10 @@ {"cache_key":"b2c5e959e65a2e801276e872c2bbc68198205e6d95aa6e410db7e157a65a0db7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"ar","translated":"~{percent}% من السياق مستخدم ({used} / {context} رموز، تقريبي)","updated_at":"2026-07-09T07:40:39.905Z"} {"cache_key":"b2e5905a66b6e1d0937b7acbbff5968bd206bdcbdfc24d4b894949ee2bffe0a1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"ar","translated":"غيّر العرض أو البحث أو الأولوية أو الوكيل أو فلتر الأرشيف.","updated_at":"2026-06-17T14:15:04.326Z"} {"cache_key":"b309694f44e2b0afebb62af6aec30b2815ae6588b5dc435836abcdcc67b2b8a4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"ar","translated":"مفقودة","updated_at":"2026-06-16T14:15:34.787Z"} -{"cache_key":"b382f7da3dbd93d483d7c3a480810fa7f4514bcfed145170e2b77413d6353581","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"ar","translated":"تمت زيارة {seen}/{total}","updated_at":"2026-07-09T23:55:55.921Z"} {"cache_key":"b3d797c3884a888f9f6d0cebacc92c89b622e3866c5a0b0d83a58611797f812e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"ar","translated":"عرض لوحة العمل","updated_at":"2026-06-17T14:14:58.728Z"} +{"cache_key":"b409de224ce79d83d845d2ba4b59c6b3c9e06a793961dc2b31d881139e06bdb7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"ar","translated":"تصفية المكونات الإضافية المثبتة","updated_at":"2026-07-10T02:25:55.175Z"} {"cache_key":"b44c67c0630d91fdc32ce58f8a847eaf61a544626d3a5a5b88a48005f30a16fd","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"ar","translated":"زيارات الكركند","updated_at":"2026-07-09T20:51:37.244Z"} +{"cache_key":"b45fc24b95aefcf661fc2a7563834b6bc094c1c1a103e4aa8af06558533f2c2a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"ar","translated":"اكتشاف","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"b4b1ab1ea79d135f573643a56873f70d8bbbd923fecfdb74b0f5c786bfdd57ea","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"ar","translated":"خامل","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"b4de1a88e60969240d9ef9a9d7a855ef37e0fb3d10cba4cc7879af7db6e32268","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"ar","translated":"الفرع","updated_at":"2026-07-05T21:01:06.223Z"} {"cache_key":"b4e59a3fa03774da1ccfd8944e32d4ba014cb8da77d384b6933dfff2ecbac0bd","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"ar","translated":"تتطلب Realtime Talk الوصول إلى ميكروفون المتصفح.","updated_at":"2026-07-06T17:56:46.696Z"} @@ -212,53 +293,78 @@ {"cache_key":"bb70868b0cc71bb35afbe7aa2ee6f6ccf7b7e5a0501350b5ceb427724b5dff8e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"ar","translated":"التاريخ","updated_at":"2026-07-05T14:39:56.977Z"} {"cache_key":"bcdc18bc7ba90848e3221dc5b890aefb28aeecb4bbc9e40d7fbc1bd313b02523","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"ar","translated":"مساحات العمل المُدارة","updated_at":"2026-07-05T21:01:06.223Z"} {"cache_key":"bce073f362e6f3bcf6e9ab20df099ef3158f516f51d81b56e61df5a72e6206b4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"ar","translated":"قديم","updated_at":"2026-06-17T14:14:58.728Z"} +{"cache_key":"bcfd4655ca496946e98589de567c91eab93273c35b674cac74c576bc4da24f11","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"ar","translated":"الهوية المضمّنة عند بناء هذا الأثر للمتصفح.","updated_at":"2026-07-10T09:47:18.408Z"} +{"cache_key":"bd4fa923dc6a3ac56ba8d46a014bcc7a669bd629627e627b6666c8b740c39e1f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"ar","translated":"{enabled} مفعّل، {disabled} معطّل، {issues} به مشكلات","updated_at":"2026-07-10T06:08:53.336Z"} +{"cache_key":"bd665169a8900b0df556584ab38b0a5f2f4ef7a324b711d7c923000312d21b5c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"ar","translated":"تمت إضافة {name}. يمكن لجلسات الوكيل الجديدة استخدامه فورًا.","updated_at":"2026-07-10T05:22:20.584Z"} {"cache_key":"bd91083b860fca9e7b7c865dc565e5d33577aedb51444e69b9c1879431081c65","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"ar","translated":"الأتمتة","updated_at":"2026-06-16T14:15:27.039Z"} +{"cache_key":"be252a3707e5891b22374d0032ebee3e9ee89512db789a98196e52b7ee22382c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"ar","translated":"القنوات","updated_at":"2026-07-10T02:26:01.646Z"} +{"cache_key":"be3057940e5c772cf040089656882316d635556f0307d42a76132dd7d1b4811c","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"ar","translated":"جارٍ نسخ تجزئة Commit","updated_at":"2026-07-10T09:47:18.408Z"} {"cache_key":"bec530c0a9068647a532b6a254087f85828e5ae39650d4eef351d756934eb07a","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"ar","translated":"يزور من حين لآخر","updated_at":"2026-07-09T20:51:37.244Z"} +{"cache_key":"bf51c5656036e020c8fb354a1ed8251cbb2d32c888f2394846ca1f2b5d8ec967","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"ar","translated":"الحياة اليومية","updated_at":"2026-07-10T05:22:20.584Z"} +{"cache_key":"bf8280ae398d5ab0c91fb5499571b04f4ae753d7ffb2d7cb4848b534e54348aa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"ar","translated":"المكونات الإضافية الرسمية","updated_at":"2026-07-10T02:25:55.174Z"} {"cache_key":"c005360fbda0d931c7b39fe4c4fe18b3c5d457ac3e23d6a0ac8f4b6cf1bdcda3","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"ar","translated":"منبّه الموزّع","updated_at":"2026-05-30T15:38:27.116Z"} {"cache_key":"c05bb7c1f5bbceeaab7d8e36c991a98e1be5f36df8cb86876c56cbb96f90d1fe","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"ar","translated":"إضافة ملاحظة","updated_at":"2026-06-16T14:15:34.787Z"} {"cache_key":"c0d6d9e62ebcede762e0b8d9b52f4c3b03579bcbd0a4779d7afef36cd13338fe","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"ar","translated":"إعادة تسمية الجلسة","updated_at":"2026-07-02T14:30:22.961Z"} {"cache_key":"c15d871f391d624fb995c412b179552d6527a469a4513537e2fbf79516bdebd0","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"ar","translated":"الإجراءات","updated_at":"2026-07-05T21:01:06.223Z"} {"cache_key":"c19dc4c22c3fa18ea0719010644e229be1ac61e4a44be75d2376e2cfcc7cc647","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"ar","translated":"قيد التشغيل","updated_at":"2026-06-17T14:15:04.326Z"} {"cache_key":"c233241cc23d7d2177c4d793589327b8469616ba77558d39e5dde23793e6e497","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"ar","translated":"التشخيصات","updated_at":"2026-06-16T14:15:27.039Z"} +{"cache_key":"c3c279ac1d5906a337913b1b0091b603cc868fd479dc5a7ffae88404b97060ec","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"ar","translated":"تثبيت","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"c47db2bbef13e9c6cea5ccfce9edc7d0d4ddd749672c836d0c9460e5b59b04a9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"ar","translated":"انتهت صلاحية رمز الاقتران QR","updated_at":"2026-07-01T10:32:31.521Z"} +{"cache_key":"c60014ef2060339b1ec67bd056b6bf1af49756a8992e8f45a31bb57975bab369","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"ar","translated":"إغلاق","updated_at":"2026-07-10T04:28:28.953Z"} {"cache_key":"c647df64675118a6f95afb0d6c604eb34370ac9895f051fd541efb570fd772d9","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"ar","translated":"لم يتم العثور على ميكروفونات إضافية","updated_at":"2026-07-06T17:33:50.709Z"} {"cache_key":"c66e333041dd78a30ea334bf41f336b382ca987d9046eac027b5dbb70f669589","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"ar","translated":"مراجعة","updated_at":"2026-06-17T14:14:58.728Z"} {"cache_key":"c73a7f9738dd5e4cf7605bc8ffc20edfa5d4bf0f29c41a616be26a8df670328e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"ar","translated":"مفقود","updated_at":"2026-06-16T14:15:41.761Z"} {"cache_key":"c7faabb0db2a4f591070d4c27e5225b7b4af1e917e2eef73a3b236b9e46b6e14","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"ar","translated":"تفاصيل البطاقة","updated_at":"2026-06-16T14:15:27.039Z"} +{"cache_key":"c813117222ddc796c3fc3f077819bccb15974820a29a94c7ab0f9665b8db3fe6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"ar","translated":"لا توجد مكونات إضافية اختيارية مثبتة","updated_at":"2026-07-10T02:25:55.174Z"} {"cache_key":"c82a4e007a5bf555bebb162a45e7257994a353dd5b8392236fc8243f09df9c13","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"ar","translated":"المجموعة","updated_at":"2026-07-05T14:39:56.977Z"} {"cache_key":"c9112d97c990d658116524f83fc676e37626ff70a1f3598a4d2dea2fbcd54525","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"ar","translated":"مخزّن","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"c969b7a19ac1bfb93bbfdd50f3302005c00eeab256ebd025d0c5baadb2265fcf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"ar","translated":"غير معيّن (يستخدم {agent})","updated_at":"2026-06-17T14:14:58.728Z"} +{"cache_key":"ca0e3d491302091f0d4df0fcc20fe5aea2484e029da3b368e328a068f92fe2ef","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"ar","translated":"تم تعطيل {name}. يلزم إعادة تشغيل Gateway لتطبيق التغيير.","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"ca2a9966dfcf4e861a69c55ebbc769e8a62bee97344e05bbb0708d3354418ef4","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"ar","translated":"البحث في عناوين الجلسات","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"cae4ad9f67fd5c9b012ebcc60daa9c054034202fc1b16b52bbc8cf2c596f915b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"ar","translated":"جلسة Codex بلا عنوان","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"cb027c3b7b40982e1c19f27aea229931596d26cf19d6c7b184eca0f1f6abef80","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"ar","translated":"المستأجر: {tenant}","updated_at":"2026-06-16T14:15:27.039Z"} {"cache_key":"cbccc644117431c6e2727d379ab4fd8ab1932f7d59ff1d1662fd3c0efcd3885a","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"ar","translated":"لا توجد مساحات عمل مُدارة.","updated_at":"2026-07-05T21:01:06.223Z"} {"cache_key":"cc1def9b8e3b5c8267ddc57487d07249d6c7a8224b59fbe84f0b66507551fabc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"ar","translated":"الجلسة","updated_at":"2026-06-16T14:15:41.761Z"} {"cache_key":"cc8abbe8cced621195e97149d20613a755345a1b2f1e54922dc44771aff0ba68","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"ar","translated":"الحساسية","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"ccc21f339138e8d7d7112819f42f26ed1f4ec9a844fbb66e71df124ef91120cf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"ar","translated":"الحزمة","updated_at":"2026-07-10T04:28:28.953Z"} {"cache_key":"ccea217988ec699f307d9cdbe67d67522db5a55bf260f86e0a38776211177a55","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"ar","translated":"الاسم","updated_at":"2026-07-05T21:01:06.223Z"} {"cache_key":"cd084b20fe0560e5862e27aa436cc30d8cb8921f7dddf7931263cf0dc2156f4e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"ar","translated":"{agent} (افتراضي)","updated_at":"2026-06-17T14:14:58.728Z"} +{"cache_key":"cd0f475914621f53916751a63a87ab2df40ae722459c65460b0793892d7d9d6b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"ar","translated":"تعذّر تحديث تكوين Control UI: {error}","updated_at":"2026-07-10T02:26:13.890Z"} +{"cache_key":"cd11e5c4199290c417728b9a31fbd995ed7c3608ffa3628d5c873f70c5aa361b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"ar","translated":"تم تعطيل {name}.","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"cd8eaebe82bca366a33579ca710ac5697ad6e9d443f6b88151aed6d76eaf572e","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"ar","translated":"فتح في المتصفح الافتراضي","updated_at":"2026-07-09T11:02:53.077Z"} {"cache_key":"cdbbd4457bcc9e07450a6d7e0d7e3ad6957776bb7a2b3ba4623d522dd556523e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"ar","translated":"محاولات فاشلة","updated_at":"2026-06-17T14:15:04.326Z"} {"cache_key":"ce4f953ca30562add25d39724fbd5b7265cff565e2f1919602bbcf28c4cb2c7f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"ar","translated":"محظور","updated_at":"2026-06-17T14:15:04.326Z"} {"cache_key":"d0a595e1edec376075e2b2c00d0b406b5d5ea2d8ddb0ce6eb5c4ea8ea0595a2f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.budgetValue","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{used} of {limit}","text_hash":"e191398f92416f35cb6279f7206d2b67cdee04ce46932a1ece17c8c18ca3636e","tgt_lang":"ar","translated":"{used} من {limit}","updated_at":"2026-07-09T11:49:31.150Z"} {"cache_key":"d16acabba16394e70e0cf025699227a9d237b67aaee2d60af30b738af02be8b3","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"ar","translated":"الجلسات على جميع أجهزتك","updated_at":"2026-07-09T10:01:43.759Z"} +{"cache_key":"d16d221b2140ca58741b68919e3c87daed5e5f82ac85b119aba9509c6facedf5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"ar","translated":"تمت إزالة خادم MCP {name}.","updated_at":"2026-07-10T02:26:01.646Z"} +{"cache_key":"d171ac282e929fdde9f19763f82bd352f061c532e2c8694ff6cab7c57d329dd2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"ar","translated":"إمكانية اختيارية في OpenClaw.","updated_at":"2026-07-10T02:26:07.453Z"} {"cache_key":"d1c88b87eb9d246da3b4bd8b72ab2f2c953a8354fd17b57343ca057d076d93d5","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"ar","translated":"خطأ في الأداة","updated_at":"2026-05-31T06:43:57.803Z"} -{"cache_key":"d2060ff5f41ad501aa9fee5640762a3d285cfefa31355b18b0d43491e1b6fda9","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"ar","translated":"بحث","updated_at":"2026-07-10T06:08:20.257Z"} +{"cache_key":"d28ebbb1eff864b9f71c3ea813fbf17f537ee287805d904e5fa99fc55679e1f6","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"ar","translated":"غير متاح","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"d3f65bc2f28d2a47a2803589105f2532f2fecd3041a92822a0450147c672c170","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlockedTitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Waiting on dependencies: {parents}.","text_hash":"50fb8f9b1326b69bd67d25583ddb4f70b9d75ae6e3ff8a9056a9361daa4b7d8b","tgt_lang":"ar","translated":"في انتظار التبعيات: {parents}.","updated_at":"2026-06-16T14:15:34.787Z"} {"cache_key":"d4e0bc5c467fc21d2c95ac7ea68f9e90c4d978660b840906dcc701e73106cfd8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"ar","translated":"لا توجد جلسات نشطة على هذا المضيف.","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"d62f0d36f678aa4b3430a8108f75ad5af9539734cba60b9da0e0739e65b98c54","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"ar","translated":"المجلد الأصلي","updated_at":"2026-06-16T14:15:41.761Z"} {"cache_key":"d6a6fd89a6ca52fb4de8c081a3b21b323ceb980fe5a3f341b5b629b547a491b3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"ar","translated":"جاهز غير مُعيَّن","updated_at":"2026-06-17T14:15:04.326Z"} {"cache_key":"d715f47a8efcba7ae3a21d64cf9a567b64563b4c435069518b8fd2d07371b92c","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitRight","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Split right","text_hash":"aa9997bb1d8c23d0b88521c4093fc8c3ee01b187f78635ae4d3e16d27e8a8475","tgt_lang":"ar","translated":"تقسيم إلى اليمين","updated_at":"2026-07-06T07:23:44.872Z"} +{"cache_key":"d735342018ee21718583b67060034f5b42a8558632a0c9fbda20bcb051186fc9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"ar","translated":"لم يتم تكوين أي خوادم MCP بعد. أضف واحدًا هنا أو اختر موصّلًا من Discover.","updated_at":"2026-07-10T02:26:01.646Z"} {"cache_key":"d7671b71106ef678397cd463be9d84a2dcf3f422967f61b871552493a067ec34","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"ar","translated":"إثبات مفقود","updated_at":"2026-06-17T14:14:58.728Z"} +{"cache_key":"d886c31148eccc29bef8ebd69b054a1a1f4991290ce71c73932d9e79c3d7375c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"ar","translated":"تصفّح ClawHub","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"d888626b4e48fe0ac8250fcb29e7ccdda0a697dadcc2825a1a83e5c67a81d4f1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"ar","translated":"متوسطة","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"d98a78c3076e150d463213309fab37a606168c3fae02a7d42779502d0b6ad9eb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"ar","translated":"مجموعات مخصصة","updated_at":"2026-07-05T14:39:56.977Z"} +{"cache_key":"da43a086f9c3b8b2bffe2b4b7802208316eaf3d40b0ae086f3846a6a42655b73","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"ar","translated":"حاول مرة أخرى","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"dac4aa199d3b6e8b364499cd91adc775def2c7b3f9572aa1bef60e352abd0898","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"ar","translated":"جارٍ تحميل الميكروفونات…","updated_at":"2026-07-06T17:33:50.709Z"} +{"cache_key":"db1e2cef61af71ea5cdf8ec9bdaf4e4380f41e046796a5b256d18ace5801282b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"ar","translated":"إجراءات {name}","updated_at":"2026-07-10T04:28:28.953Z"} {"cache_key":"db848099464ca02f0d6941a55267884c2a626bff5fadd98e3688e7847ed6de8b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"ar","translated":"معاينة","updated_at":"2026-06-16T14:15:44.085Z"} {"cache_key":"dcc4c42dbe17c9d68db52cc246d2088cee67b217c9a3c6cd7cf4e0f51f97eaba","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"ar","translated":"إعادة تسمية المجموعة","updated_at":"2026-07-06T23:41:03.547Z"} +{"cache_key":"dccad1f5e50646948a65fab0b23f1e8e84f4d0a3a1fdff0acfdb487d57ee9dd0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"ar","translated":"لا توجد مكونات إضافية مثبتة مطابقة","updated_at":"2026-07-10T02:25:55.175Z"} +{"cache_key":"dd54e26de67ecffdb029a069d3e767a945a3feee427b8c2a5b0d60c0f9736523","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"ar","translated":"تم تثبيت {name}. يلزم إعادة تشغيل Gateway لتطبيق التغيير.","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"dd7b7c593f44286f87ad6ec40ee4e6f7473eb1b9e2ee3c94e11ad7b437632be4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"ar","translated":"البطاقات المعيّنة صراحةً للوكيل الافتراضي المُهيّأ.","updated_at":"2026-06-17T14:14:58.728Z"} {"cache_key":"dd91daeca04bb82d249aa3c4e37d428abea62442b176b84e6e38e38fce450cc4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"ar","translated":"استخدام المحادثة الحالية","updated_at":"2026-06-16T14:15:27.039Z"} {"cache_key":"dd91de2fa327547c02aa43bd3b4c2d75146d09cc6e1abce547b01b1cc9ed618b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"ar","translated":"تمت القراءة","updated_at":"2026-06-16T14:15:41.761Z"} {"cache_key":"ddb169dfbfdcf91ad52b810c9e72d18dae6e2e7444b3f676a3254cd01dde0161","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"ar","translated":"{count} معروضة","updated_at":"2026-06-16T14:15:41.761Z"} +{"cache_key":"ddbb3670f0c9e2225ecf02d1922a178b24378d35b9b7bb6d8db99dba3a493441","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"ar","translated":"موفرو النماذج","updated_at":"2026-07-10T02:26:01.646Z"} +{"cache_key":"ddc66baf95ee06b34212f792d20e551e7ff969e0ca05e40103874ac9e3ae6350","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"ar","translated":"تحديث","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"dfd14bbfa82b66d62ce789a464bcac2e67ce94cb5608d6f9d12295bb5414c942","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.resets","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Resets {time}","text_hash":"5a0f8c1b2755ee505e02e19fadc7377ad48df63cc7d3399c20228fe3edc37cb1","tgt_lang":"ar","translated":"تتم إعادة التعيين {time}","updated_at":"2026-07-09T11:49:31.150Z"} +{"cache_key":"e1420da59cc36d04ed3466b686c082775abe1b6d704023884d3353e7cf00de80","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"ar","translated":"ممكّنة","updated_at":"2026-07-10T02:25:55.175Z"} {"cache_key":"e23352876d234513223dd70fcd8f259938027b9a17c307142be450528006f6fe","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"ar","translated":"مساحة العمل","updated_at":"2026-06-16T14:15:34.787Z"} {"cache_key":"e2b798d7bec27d887656b055ab8643d959d1f5201d9aa70ead44f9f0450a442b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"ar","translated":"مثبّتة","updated_at":"2026-07-02T14:30:22.961Z"} {"cache_key":"e3470e18bb46c41816c59f479ddf89b0cf0f27e8e7537347d052c34f1358cf14","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"ar","translated":"تم استخدام {percent}% من السياق ({used} / {context} رموز)","updated_at":"2026-07-09T07:06:24.564Z"} @@ -267,7 +373,7 @@ {"cache_key":"e5ef7ee167c900480e24a40dbe824eb49ef82c33d580aa53b59f102d4a271b7d","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"ar","translated":"الوكلاء والأدوات","updated_at":"2026-07-09T08:08:00.664Z"} {"cache_key":"e6524eced9d1d75aba4b448b6d634ed4c879c1b5a10965d3e81db152b56b14eb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"ar","translated":"5 ث","updated_at":"2026-06-17T14:15:04.326Z"} {"cache_key":"e6ff36b1903ea711a2f59eb13565feec60b05a020fe9e671cd951b0cf8f72fb3","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"ar","translated":"نشط","updated_at":"2026-07-09T10:01:43.759Z"} -{"cache_key":"e8257996638b908d914e34e166bd21a42ddcf703b91c1080c22f3e7bf254c7b7","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"ar","translated":"عرض ملفات الجلسة","updated_at":"2026-07-10T06:08:20.257Z"} +{"cache_key":"e7e4d5e56da236ae50650f7c85b70e46ace0cb52de5a84b94ddfc4b20a54ec33","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"ar","translated":"محركات السياق","updated_at":"2026-07-10T02:26:01.646Z"} {"cache_key":"e8594ae1216efdeb8b5d4c8b11f101b2cf40f7f5d8c72fc127db3772b2917ded","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"ar","translated":"تتطلب إعدادات Talk المتقدمة صلاحية operator.admin.","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"e939a79038d1554b14789344422e8b6793ec9b92e709c1a6a194fb9b1cd5720a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"ar","translated":"الوكيل الافتراضي","updated_at":"2026-06-17T14:14:58.728Z"} {"cache_key":"e9cb068cd1a94066a144d34441487719ad779c59fb6d17a2b85bb8156cf84bfe","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"ar","translated":"نبض {age}","updated_at":"2026-06-17T14:15:04.326Z"} @@ -276,32 +382,50 @@ {"cache_key":"eb309dcd4a9b33da9eaf81b9a442ee344f3f2c94d55ffcac1aaf71cfc4d7239b","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"ar","translated":"وضع اللون: {mode}","updated_at":"2026-07-07T08:47:32.652Z"} {"cache_key":"eba4c95b26b65f610116dc374592e0f392fc07534e00cbbf8619b1b689b979af","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"ar","translated":"إثبات","updated_at":"2026-06-16T14:15:27.039Z"} {"cache_key":"ebdf8ce566b260d8d88efd6250bef2cd4183d441c2093939d67cf0ce396b8a7a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"ar","translated":"الجلسات","updated_at":"2026-07-09T10:01:43.759Z"} +{"cache_key":"ec5618e37bb6957c63141b429abee8296fc78a5b8ee9cd9983d3a690d81adf71","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"ar","translated":"ClawHub","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"ec6a4e2eede0729a7d1c3f96bf1d640916db3d15365d01c708924fa384bf804f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"ar","translated":"15 ث","updated_at":"2026-06-17T14:15:04.326Z"} +{"cache_key":"ed3f5e38688538f4936a81255ac542f2e4e5ec9b9a7776794a81c29cf9a8a21f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"ar","translated":"تمت إضافة {name}. حدّث نقطة النهاية وبيانات الاعتماد في إعدادات MCP قبل الاستخدام.","updated_at":"2026-07-10T02:25:55.174Z"} {"cache_key":"ed4cc5cbce34a303630df5de1a46fc57b9b1375e7023f68b0156db0ae9b4cc12","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"ar","translated":"تثبيت الجلسة","updated_at":"2026-07-02T14:30:22.961Z"} {"cache_key":"ed5fe2073ec30c7509c5ecd30a07f651adcc6108c1f7f34a174126e60fe5db80","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"ar","translated":"كثافة بطاقات مدمجة","updated_at":"2026-06-17T14:14:58.728Z"} {"cache_key":"eda32d5a2e43607eebfb01c0b5a8321f7729f5fadae7c6b6ad72b7d700bd58eb","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"ar","translated":"راجع المقترحات وحسّنها وطبّقها قبل أن تصبح مهارات نشطة.","updated_at":"2026-05-31T21:48:26.917Z"} +{"cache_key":"edf690ef2074d039fbeb391a42e84fcd6db8b46b86d9ec1c215c0b45aa3dbfd3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"ar","translated":"موصلات MCP بنقرة واحدة وعمليات بحث منتقاة بعناية في ClawHub للخدمات الشائعة.","updated_at":"2026-07-10T02:25:55.174Z"} +{"cache_key":"eed1967f94a86d2c990a528f27f0c6657e5935dc0fc9021a186ce595201148f4","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"ar","translated":"نسخ تجزئة Commit الكاملة","updated_at":"2026-07-10T09:47:18.408Z"} {"cache_key":"ef1a3af954643de28b50947b690c7bb7b308c116f51ef4c645916a1545b8baf0","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"ar","translated":"MCP","updated_at":"2026-05-31T05:36:42.114Z"} {"cache_key":"ef3e5981bdbd2e6163cd3bfbee2adb51a5c4f87afb3f843c557df70e13a0b408","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"ar","translated":"جارٍ تحميل جلسات Codex…","updated_at":"2026-07-09T10:01:43.759Z"} +{"cache_key":"f0a7dc5258b6408234ee2d96057d94cbcd5c81a656499f806e4031224f1d1959","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"ar","translated":"حول","updated_at":"2026-07-10T09:47:18.408Z"} {"cache_key":"f0c85949a0dfb9bbe709a434c78221cf347010057c382f53766689dc9a39efd0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"ar","translated":"غير متصل","updated_at":"2026-07-09T10:01:43.759Z"} +{"cache_key":"f1bd19901d0457e144a589f894d9994866588daf29df6caec336120cb4e87690","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"ar","translated":"اربط عالمك","updated_at":"2026-07-10T02:25:55.174Z"} {"cache_key":"f20dc0bab783ad6666e8debdbcb775f5c5f4151fa75824a7b6e146ad35f3bbe9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"ar","translated":"{count} تم تغييرها","updated_at":"2026-06-16T14:15:41.761Z"} -{"cache_key":"f29da8cbaefc666c976da193d4b656e3de3e90ad64325fb895b302d97a18acb1","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"ar","translated":"اسحب للتثبيت إلى اليمين أو الأسفل","updated_at":"2026-07-10T06:08:20.257Z"} {"cache_key":"f2c5a2c91669ee94e6a3ab6dca1527347ff49319e7b9b167f40755fcb9611b23","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"ar","translated":"حذف المجموعة…","updated_at":"2026-07-06T23:41:03.547Z"} +{"cache_key":"f2e8b64cc2707baa83d6b4fe6b72947cd45d925ceea0952e32546bedd81df79f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"ar","translated":"رسمي","updated_at":"2026-07-10T02:26:07.453Z"} {"cache_key":"f3448931536f68baff29aaa1be9a74c597bcce288662db1061a74d015586f5c9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"ar","translated":"{count} جلسات","updated_at":"2026-07-05T14:39:56.977Z"} {"cache_key":"f372bc2fef186c869f626902adc6c97223d152e78e7bbf5f79944deedcb52c6e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"ar","translated":"تحميل المزيد","updated_at":"2026-07-09T10:01:43.759Z"} {"cache_key":"f3c58c5476fcc120fbee5bbe697442b9d617065d471bee6b35cffd853d7b4b34","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"ar","translated":"شغّل ‎/pair qr‎ مرة أخرى لإنشاء رمز إعداد جديد.","updated_at":"2026-07-01T10:32:31.521Z"} +{"cache_key":"f4150b079b523608e2e3c5302e7d971e8d3af77c98d5cff76ad0b911c15f4674","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"ar","translated":"تحتاج إلى انتباه","updated_at":"2026-07-10T02:25:55.175Z"} {"cache_key":"f49b25305df17d43d513ee2d7b88711e61dfb9eb3c69f9a91ebdf26944afd096","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"ar","translated":"فتح تفاصيل استخدام السياق","updated_at":"2026-07-05T10:16:14.365Z"} {"cache_key":"f4ac00d519c812ca6aee67bb3ff6737d6130e02187c343b6efa70733049645cb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"ar","translated":"غير معروف","updated_at":"2026-06-16T14:15:34.787Z"} +{"cache_key":"f52f2f85039f072c0c97d314796a142e486227b261768d5a0dd78b5db20a12d7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"ar","translated":"تصفّح فقط. تتطلب تغييرات المكوّنات الإضافية صلاحية operator.admin.","updated_at":"2026-07-10T02:26:13.890Z"} {"cache_key":"f55994fff11b7bd2579094af9cc82e05db12ad10559ed6879bce8d5e200f81c5","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"ar","translated":"تمت إضافة المرفق","updated_at":"2026-05-30T15:38:27.116Z"} {"cache_key":"f5dd1a3dceb24158d410cf98ac8e3cbaa855655d0588bde767fe2b74f5279abe","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"ar","translated":"التنسيق","updated_at":"2026-05-30T15:38:27.116Z"} {"cache_key":"f6e208c4875c4f745d210802e23c81ffc2c9d33acb3cfbf422015884d0a8a3a3","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"ar","translated":"آخر نشاط","updated_at":"2026-07-05T21:01:06.223Z"} {"cache_key":"f6fe419ae2712a554f73fb1889c0b515903386943d583835f9a66f9267f53181","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"ar","translated":"{count} معروضة","updated_at":"2026-06-16T14:15:41.761Z"} +{"cache_key":"f7633597ed4581ef40328de2b12a59966df3caf29699ca062d9e8e9a88f6398d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"ar","translated":"من ClawHub","updated_at":"2026-07-10T04:28:28.953Z"} {"cache_key":"f805d3687a1005ce56362ac06a7f825158f5c37bc9c09824ffd13fe53f4ee994","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"ar","translated":"إلغاء تثبيت الجلسة","updated_at":"2026-07-02T14:30:22.961Z"} {"cache_key":"f80d48c067997b32a0b19f57523975353676569d3a18d15299b73a707e3cd81d","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"ar","translated":"اليوم","updated_at":"2026-07-05T14:39:56.977Z"} +{"cache_key":"f8231aefffb6e7042b7585192801120381cbf72117bdc998274f1e01f54474e4","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"ar","translated":"تم البناء","updated_at":"2026-07-10T09:47:18.408Z"} +{"cache_key":"f9aefa6fea1933b0e69d863149d4c0edb1ef335b40fcc5a8230e42171aa43467","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"ar","translated":"جارٍ العمل…","updated_at":"2026-07-10T04:28:28.953Z"} +{"cache_key":"f9d7372a206d9d2a22d8dae0f253e82fa3b7b01a3e762584469733cdc2debd08","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"ar","translated":"جارٍ تحضير البحث…","updated_at":"2026-07-10T02:25:47.877Z"} {"cache_key":"f9eedc106a641d38e6448ae7fa906c55f90fa6e62c9cec090275c7ce8ac9d317","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"ar","translated":"ورشة Skills","updated_at":"2026-05-31T21:48:26.917Z"} {"cache_key":"fa4192cdf1097010a8035ef1d2f282666a7b655b50dff4180004fde53eb609a2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"ar","translated":"القناة","updated_at":"2026-07-05T14:39:56.977Z"} {"cache_key":"facb678991931b3ad169c22e96e1e00416ef6280e8822170dc2b75e6b070fa58","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"ar","translated":"{count} مرفقات","updated_at":"2026-05-30T15:38:27.116Z"} +{"cache_key":"fb4c6739c5ad923d95597f95683184b4e6a2804bdab4329e906ed3c37cb630a5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"ar","translated":"حزمة المكوّن الإضافي","updated_at":"2026-07-10T02:26:13.890Z"} +{"cache_key":"fb91dade6c968f14b02865f314b1a6d9f886dfbfadaa4ac8923a969c7608f064","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"ar","translated":"تم نسخ تجزئة Commit","updated_at":"2026-07-10T09:47:18.408Z"} {"cache_key":"fbbebeaeb00675160d3e6b43b349ca1b0348f60d6ae9d6af656971a6a55a950e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"ar","translated":"تشغيل","updated_at":"2026-06-16T14:15:27.039Z"} {"cache_key":"fd62fbf939e7fcff810d10222fa51cf501598d19c82bb8028a3923f3a2220557","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"ar","translated":"{count} س","updated_at":"2026-06-17T14:15:04.326Z"} +{"cache_key":"fdc43142a3e249de642bfb7f07bee0ea47bcd1ff94e3eba374cf53dc78c23deb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"ar","translated":"خادم MCP بنقرة واحدة","updated_at":"2026-07-10T02:25:55.174Z"} {"cache_key":"fea1ecd677ce74afaa252fe48f1cf0808ae7d7b74fb139cdf0a690e020503927","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"ar","translated":"نسخ مستودعات معزولة مملوكة لـ OpenClaw.","updated_at":"2026-07-05T21:01:06.223Z"} +{"cache_key":"fead52433ccad442b926275aa452c9413d5228be3202cb431b276c36676f0f8d","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"ar","translated":"المكوّنات الإضافية","updated_at":"2026-07-10T02:25:47.877Z"} +{"cache_key":"fefda0b620558e932ff0aa831fba7f79c987c6b700be5b9a54b1faa15ce30a57","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"ar","translated":"أخرى","updated_at":"2026-07-10T02:26:01.646Z"} {"cache_key":"ff61993016d180fd76c563cc1c99c68e824a81fec3d4e0a58badff530dad1771","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitFiveHour","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"5-hour limit","text_hash":"26d04fad786b1e3a08fd957ec893b0457b72a2926da0ee63847aea9037951d24","tgt_lang":"ar","translated":"حد 5 ساعات","updated_at":"2026-07-09T11:49:31.150Z"} {"cache_key":"ffd3b3070e0971009df2808f9393e0e51e488f06d7581cd8709c40486de8d9eb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"ar","translated":"نقل الجلسة إلى مجموعة","updated_at":"2026-07-05T14:39:56.977Z"} +{"cache_key":"ffea29343ffda0188121b3bb078fcf1aeec5e54e7b690356165e73a4ccbce0be","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/ar.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"ar","translated":"لا يوجد ما يطابق في الاكتشاف","updated_at":"2026-07-10T02:25:47.877Z"} diff --git a/ui/src/i18n/.i18n/de.meta.json b/ui/src/i18n/.i18n/de.meta.json index cfea003ae144..b42343ce6152 100644 --- a/ui/src/i18n/.i18n/de.meta.json +++ b/ui/src/i18n/.i18n/de.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:25.833Z", + "generatedAt": "2026-07-10T09:46:52.975Z", "locale": "de", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/de.tm.jsonl b/ui/src/i18n/.i18n/de.tm.jsonl index 0b729785df73..b343b4c36e3c 100644 --- a/ui/src/i18n/.i18n/de.tm.jsonl +++ b/ui/src/i18n/.i18n/de.tm.jsonl @@ -1,17 +1,23 @@ {"cache_key":"00b1798e788bdc4d471f49d7e1cc70dd74c26398ba4d8a83335e552db0994fcf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"de","translated":"läuft","updated_at":"2026-06-17T14:13:12.251Z"} {"cache_key":"010aa654e161d8565fb9f17aa2444074a086adcb81908a5a4eb6ea3dfb0e1fb1","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"de","translated":"Auf Mikrofoneingänge kann nicht zugegriffen werden.","updated_at":"2026-07-06T17:56:14.727Z"} +{"cache_key":"02a30623ef41cca50cc291105a3544a3a997fa72404efbec90552990e82405af","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"de","translated":"{name} aktivieren","updated_at":"2026-07-10T02:23:38.518Z"} {"cache_key":"04a00ddcfa194207a1c8899b4cbe890451fa6950cabe24cef4848a19d2095680","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"de","translated":"Aktualisierung fehlgeschlagen","updated_at":"2026-06-17T14:13:12.251Z"} +{"cache_key":"04f70ba6102cb1dba5c017b4f40dcecd446b6d05f210a2604cfb3b1df0f2652d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"de","translated":"ClawHub suchen","updated_at":"2026-07-10T02:23:23.316Z"} +{"cache_key":"06157251c26cd3868edf6913bcd5e0a19db8c4a80e4eb222d52949eb2989bd3e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"de","translated":"Speicher","updated_at":"2026-07-10T02:23:31.507Z"} +{"cache_key":"06aed5681d0dbd5a26585cf365e06d91cd7410cd1b70f96fb115d987c0310673","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"de","translated":"MCP-Server","updated_at":"2026-07-10T02:23:31.507Z"} +{"cache_key":"076817a36bdc3f33ba1e7cbc51b04100ab0d4402f7a40b47a80ddef7ea3d9561","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"de","translated":"{name} deaktivieren","updated_at":"2026-07-10T02:23:38.518Z"} {"cache_key":"094ad092497c6b7f9ca5a2dc2825d5d975663d11d4590cb607e9e8b2f9e14e66","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changed","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Changed","text_hash":"2a6141e43be0c2125e3b5d9f74b4ff1261a0b320ff927c83d4d9b1b65585bad7","tgt_lang":"de","translated":"Geändert","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"09abd5fb8ddb238faed68da94e0955949098603566f206a91d936c3b27832da0","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"de","translated":"7 Tage","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"0a313ab60c98d3e6524d35da71d5e012b59a1ad041404760d2ae39cb83fc0493","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"de","translated":"Mikrofoneingänge sind belegt oder für den Browser nicht verfügbar.","updated_at":"2026-07-06T17:56:14.727Z"} {"cache_key":"0a8a51257ec5f97159ae69026327602a984873fd507864a38e79681c3105607e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"de","translated":"Board: {board}","updated_at":"2026-06-16T14:12:53.111Z"} {"cache_key":"0ba1ed78c7b4806b729ca4a2d02aa50bcc534d81a86d2201e2b3afa55af69258","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitDown","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Split down","text_hash":"8730b89df7caaf5b5090f9b7365a0a03e0a13d9682dc6418f556b8a676d9e98f","tgt_lang":"de","translated":"Nach unten teilen","updated_at":"2026-07-06T07:23:18.013Z"} +{"cache_key":"0c46e244d7f64b9a9d0f1814e7031b2e31725c891f4410c111c2e76632a071ec","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"de","translated":"{name} hinzugefügt. Aktualisiere vor der Verwendung den Endpunkt und die Zugangsdaten in den MCP-Einstellungen.","updated_at":"2026-07-10T02:23:27.522Z"} {"cache_key":"0c6110524735793eb0d968c8eea1001ba46146debc8c841129ebe66f816a6664","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"de","translated":"Isolierte Checkouts für Agentenaufgaben und Wiederherstellungs-Snapshots.","updated_at":"2026-07-05T21:00:37.724Z"} {"cache_key":"0d1435902852800b9114465c09d4320dafe33f4a77d3431173c110ed06b3236b","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"de","translated":"Sitzungen sortieren","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"0d6045b622ead40e12d888071bbc7d6f5fe7ea960b228a75019661bd94eac297","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"de","translated":"Sitzungsarbeitsbereich aktualisieren","updated_at":"2026-06-16T14:12:59.821Z"} -{"cache_key":"0db52dafb4e1c4409a90f318d2a92dafb6161dfaf9d1f786a7582e7815aa17ad","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"de","translated":"Suchen","updated_at":"2026-07-10T06:07:51.892Z"} {"cache_key":"0db560f641a68b9bcbbf58d04022d6c5325c38af531d6ca2cd74b94f52f36d80","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"de","translated":"Kostenkategorien","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"0e6eb15314cdf90f85fa2fe08239884bfb175619247825159387cbf0ef9c3e53","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"de","translated":"Farbmodus: {mode}","updated_at":"2026-07-07T08:47:24.976Z"} +{"cache_key":"0ecd531141fe5416e8bc027c1ae4640b80a9fe06acf015645a0d09f03af430de","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"de","translated":"Erfordert Aufmerksamkeit","updated_at":"2026-07-10T02:23:34.826Z"} {"cache_key":"0f8a126810b4bbe26a95652a111d4ab63166418dfbb798d20ab474d9d356baac","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"de","translated":"Kontextfenster","updated_at":"2026-07-05T10:16:00.515Z"} {"cache_key":"11538761c680ba4c7cea452bf3984e03bed8d220a89e6b9277a933e21188ec9c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"de","translated":"{count} Sitzung","updated_at":"2026-07-05T14:39:38.809Z"} {"cache_key":"13209abdd76d5bd4f3692e6ae25e8b1cc32e35eff2e36c8eb1681fb79dee0bb3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"de","translated":"Überarbeitungsanfragen an die aktuelle Chat-Sitzung statt an die Workshop-Sitzung des Vorschlags senden.","updated_at":"2026-06-16T14:12:53.111Z"} @@ -20,13 +26,17 @@ {"cache_key":"15794c3615bcfc57208f237c781c4012d7f3f6208b565699e32f05e1d50af7e2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"de","translated":"Worker-Protokolle","updated_at":"2026-06-16T14:12:53.111Z"} {"cache_key":"167ace856862c782b3dc9dad34349a19fe2e1a840b9e337d430a4603e4defdcf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"de","translated":"Sitzungsarbeitsbereich","updated_at":"2026-06-16T14:12:59.821Z"} {"cache_key":"16b424782c32f77d8e1356870eab671bbc5941211c082d6b16ad881b404023a3","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"de","translated":"Name","updated_at":"2026-07-05T21:00:37.724Z"} +{"cache_key":"172e4ad85bd78e0a0e9608088cbd43ef0ff6c5585b5eee9d463b58b9a2b74f77","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"de","translated":"Gemeldet von der aktiven Gateway-Verbindung; getrennt von diesem Control UI-Build.","updated_at":"2026-07-10T09:46:52.972Z"} {"cache_key":"177f95dc4d572d4cecc57f7f7475ffa471d3793188ba2fcc01fc93d868187eb2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dragSessionHint","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Drag to move between groups","text_hash":"3e8692b1cd1c1f9a606a779f1037aa390c885fde224ddb841df9259e8aab03ae","tgt_lang":"de","translated":"Ziehen, um zwischen Gruppen zu verschieben","updated_at":"2026-07-05T14:39:38.809Z"} {"cache_key":"1804499f983dbdc0d91cd34f39458c5e439dee2d71a407974cc05c4f9cba7d7b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"de","translated":"Gruppe löschen…","updated_at":"2026-07-06T23:40:48.838Z"} {"cache_key":"181665fcb0f4b339a06f80616b06f736765b8a46fd4d2483d733f4dac57ec9e0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"de","translated":"Fehlt","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"1892489a346763803afe57eb699ea209867574a0959a39641ad81406710cb844","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"de","translated":"Benutzerdefinierte Gruppen","updated_at":"2026-07-05T14:39:38.809Z"} {"cache_key":"1a1ff88c753da1e0b553d1ee4be8bb037a254c4a942b60ea839bd775774c26df","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"de","translated":"Kommentar","updated_at":"2026-07-01T01:06:02.805Z"} +{"cache_key":"1a38560981302b48004943981d615120dc8522aaf0ebb6c993a72a17f0604550","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"de","translated":"Von ClawHub","updated_at":"2026-07-10T04:28:12.658Z"} {"cache_key":"1b2a8d28defa2a445b54fde09adb8e7647cd5fa790d833f050b5c21386730c71","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"de","translated":"{count} Artefakte","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"1b3542cf8637a85411b39b8d9ccbc3d5cc57af5bce2957e82335178f3806aae5","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"de","translated":"Tokens des letzten Laufs","updated_at":"2026-07-05T10:16:00.515Z"} +{"cache_key":"1b696d9c8d849f6e20976000f4b2db04d06796eb5160b9080650040f33c03405","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"de","translated":"Modellanbieter","updated_at":"2026-07-10T02:23:31.507Z"} +{"cache_key":"1c2737810c44bec8efdac20664e262c0510068829605b7fe58a3aae52adf9e6f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"de","translated":"ClawHub durchsuchen","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"1c537bcdf469b441f8ca7b78631f0ac4e5d4ba0dd84de93236a133b22269f8b0","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"de","translated":"Zurück zur App","updated_at":"2026-07-09T08:07:49.045Z"} {"cache_key":"1c7afb0aee383f6b8f80af02651590ddb6bac259c889fc6dd7223be04b8749cf","model":"gpt-5","provider":"openai","segment_id":"usage.overview.costShare","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{percent}% of cost","text_hash":"1d0533da07d6ee21af9d1d02f4636bd9f70df239ad62388b0a415e550ee2de8b","tgt_lang":"de","translated":"{percent}% der Kosten","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"1c82ca39da775845e64b2f5b070e585f546b5e7efde353619e132019c389ea3b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"de","translated":"Kanal","updated_at":"2026-07-05T14:39:38.809Z"} @@ -35,18 +45,26 @@ {"cache_key":"1d436a34053a627ef0be7f151d5c1a8cd9083e60198f0b6079a8b9c8d3ed8eb1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"de","translated":"Offline","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"1d4bb403c759a82cef8ee1177c6d355e076966e1a95b8e6661e10f43e826e827","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"de","translated":"In dieser Sitzung wurden noch keine Dateien bearbeitet","updated_at":"2026-06-16T14:12:59.821Z"} {"cache_key":"1d9a4877504f1fa0218779ff26c43cf16734138e73e01df52a22eb2733c8f0d2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"de","translated":"Läuft","updated_at":"2026-06-17T14:13:07.391Z"} +{"cache_key":"1ddeeb48ebe54d75e3ca805b4adb03620137c2739ec38828c451e7959a8d1181","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"de","translated":"Nur Durchsuchen. Dieses Gateway lässt keine Plugin-Änderungen zu.","updated_at":"2026-07-10T02:23:38.518Z"} +{"cache_key":"1fa2fcecc291c44bd377b4f7f1332d99ff7bbf7332912a7f8f36ea864f6ffb94","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"de","translated":"Geben Sie mindestens zwei Zeichen ein, um Code- und Bundle-Plugins zu finden.","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"1fe2cee62c0e93c0e97afb586c95185c7a13ac8e29163e706b50e4b168c2082a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"de","translated":"Name der neuen Gruppe","updated_at":"2026-07-05T14:39:38.809Z"} {"cache_key":"20b3f903479e0b6d222eee1584eef833126bce914356070761f944835c0a81e8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"de","translated":"Gespeichert","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"215bfdcd203a162a4270c5eafabeef308b0a0f52349714b3ea45395cd8f4814f","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"de","translated":"Anhang hinzugefügt","updated_at":"2026-05-30T15:38:11.508Z"} {"cache_key":"222981f3dabff8f006dd110acf52ee80162d3e8d00d35cc3937c86baa8fab05f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"de","translated":"Nicht zugewiesen (verwendet {agent})","updated_at":"2026-06-17T14:13:07.390Z"} {"cache_key":"23a98d848479c9a7a6f4f006588ce8b12b77ba405961be20416a2b9365a8c4a2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"de","translated":"Fehlender Nachweis","updated_at":"2026-06-17T14:13:07.391Z"} {"cache_key":"23e7748c690ef6f54d24a63928923ad99a041a8aa3a9113a6ae2de11697405de","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"de","translated":"Worktrees","updated_at":"2026-07-05T21:00:37.724Z"} +{"cache_key":"249926abb75ba91c310a0acd36645b6b646d6cff13f027f4b4aef804898c3cf5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"de","translated":"Arbeitsbereich","updated_at":"2026-06-16T14:12:59.821Z"} {"cache_key":"259584b0bcce88cc9e550fdc4cea7bee7a0f53743696c01f05cc94c64fdc6bfe","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"de","translated":"Wiederherstellen","updated_at":"2026-07-05T21:00:37.724Z"} +{"cache_key":"25b851e738c8b5e77ef74deae49b9ea5dcd44993737cac931ecd83d3658084ae","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"de","translated":"Programmierung & Infrastruktur","updated_at":"2026-07-10T05:22:01.177Z"} {"cache_key":"25c9c907c49759296c85732c239fdd0ec26e5887ab4bd3ce67b7bfe4de5dca70","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"de","translated":"Link-Aktionen","updated_at":"2026-07-09T11:02:41.562Z"} {"cache_key":"2788a3df115c76bcb8d9f0a0bd36f52a28c827de34fdedda81344e9f5fc3fbdd","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"de","translated":"Neue Gruppe…","updated_at":"2026-07-05T14:39:38.809Z"} {"cache_key":"28152bb7d38ab154772a8512ce05f83f873bfc2de448f5b28887b04c41637176","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"de","translated":"Keine archivierten Sitzungen auf diesem Host.","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"2900527ff2d4abaeeec053f1f95ffb1428b549fa05462f4238d7eb31c0b01f3d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"de","translated":"Gruppieren nach","updated_at":"2026-07-05T14:39:38.809Z"} {"cache_key":"29be66e77cb30fd6a98d6766164c9afbe015638d2949c640cab3c2ba2ab31a10","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"de","translated":"Stellen Sie diese Sitzung wieder her, um Nachrichten zu senden.","updated_at":"2026-07-02T14:30:04.036Z"} +{"cache_key":"29ca24cd2bc563260f83d0cc74104614f6211a3571bf501ff3328278b29043a5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"de","translated":"Konfiguration","updated_at":"2026-07-10T02:23:34.826Z"} +{"cache_key":"2a4b3f72b3c744717bf0d13fccc6b9a354f2c7ad4d3983fcf029f53b953a583c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"de","translated":"Offiziell","updated_at":"2026-07-10T02:23:34.826Z"} +{"cache_key":"2ae4d8e8eedb3daa817f5c13b7520e933a6a91298a531beb732fc1367b64a6c8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"de","translated":"Zuhause & Medien","updated_at":"2026-07-10T05:22:01.177Z"} +{"cache_key":"2b740f51ce84e2d75d8f3318395480d636d74769a4ae699bfe4e0351b9997de9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"de","translated":"Risiko bestätigen und installieren","updated_at":"2026-07-10T02:23:38.518Z"} {"cache_key":"2b9d1af0d015e80d3f6801086c957b49c37e3c6f12955494376638da668d2b96","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"de","translated":"Zusammenfassung: {summary}","updated_at":"2026-06-16T14:12:53.111Z"} {"cache_key":"2c2ece6f95fad589f09f4a93431c584cd31e3df4537b1211ce6f0572f6a34b4f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"de","translated":"Aktuellen Chat für Überarbeitungsanfragen verwenden","updated_at":"2026-06-16T14:12:53.111Z"} {"cache_key":"2da2a27afcf23e2ccd1f1bfed7d2f4cd36b3012680ef436976b58e454915c375","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"de","translated":"Unbekannt","updated_at":"2026-06-16T14:12:59.821Z"} @@ -64,19 +82,26 @@ {"cache_key":"3312a3da58a3994073e34abe289964c51799f686300758745775e22da3f5aa70","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityLow","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Low","text_hash":"f793de205ead5ac302c4a1627829dea41f176b1068b993a32373fc869918374b","tgt_lang":"de","translated":"Niedrig","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"3370e1d00f22cfdaceffac5de196a27c9b29c7819554bd695abdf03e239885cc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlockedTitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Waiting on dependencies: {parents}.","text_hash":"50fb8f9b1326b69bd67d25583ddb4f70b9d75ae6e3ff8a9056a9361daa4b7d8b","tgt_lang":"de","translated":"Warten auf Abhängigkeiten: {parents}.","updated_at":"2026-06-16T14:12:59.821Z"} {"cache_key":"33e8316ed3f105834e2d783ab819b39a6937433244142b909de5f196b173e223","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"de","translated":"{count} angezeigt","updated_at":"2026-06-16T14:13:06.672Z"} +{"cache_key":"3481006a28214d0f155b0aea4f199ab5a666a5baca97ef14e127156392c4afbc","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"de","translated":"Vollständigen Commit-Hash kopieren","updated_at":"2026-07-10T09:46:52.972Z"} +{"cache_key":"3485de61c97d3fbc1a5ae401fe0c4a117f6105b9257fb903f76482e11d10ea90","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"de","translated":"{name} installiert.","updated_at":"2026-07-10T02:23:38.518Z"} +{"cache_key":"353be247fac0ae5c85b29a83e6467bd7a8e99245348dd05a3a18b8ede9acfafc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"de","translated":"{name} deaktiviert.","updated_at":"2026-07-10T02:23:38.518Z"} {"cache_key":"36b416be4647f168bf4eb02f72dc439a31a5d1366b5bd97cfde6bcb9e9fc8bdb","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"de","translated":"In der Seitenleiste öffnen","updated_at":"2026-07-09T11:02:41.562Z"} -{"cache_key":"376d5b79817d4d39da91742adfe8d4521853c058291c1724151ae776be2940a3","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"de","translated":"Unten andocken","updated_at":"2026-07-10T06:07:51.892Z"} {"cache_key":"37e2f81c18e65f78cd2588a49884ceb7ac3fed308edfe5c557d42a371baccbb0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"de","translated":"Älter","updated_at":"2026-07-05T14:39:38.809Z"} +{"cache_key":"37e39a26a6521faebcc66574be99fdf2c3e78e2e32d40b3184e78791fc88c563","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"de","translated":"{name} hinzugefügt. Authentifiziere dich mit „{command}“ und starte anschließend das Gateway neu.","updated_at":"2026-07-10T02:23:27.522Z"} {"cache_key":"38e90629c5ab653eb98c51b46a96cd32b666c4df22f51e52491b54bf55937b4f","model":"gpt-5.5","provider":"openai","segment_id":"languages.hi","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"हिन्दी (Hindi)","text_hash":"fab2abfce45382f3031c59477017700a8cb5dfaf8d15379dc24304809b97c7d5","tgt_lang":"de","translated":"हिन्दी (Hindi)","updated_at":"2026-06-26T21:43:23.990Z"} {"cache_key":"393e05f4f87ff8aeec1f5c0e35dc15c59806036ff7ce7e5f37b6c2719851ca74","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"de","translated":"Archiviert","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"3cac7757683c4ca9fcf12c3f70f783d1ae4108c8657514a1261cf62d164a1253","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"de","translated":"{count} geändert","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"3d2cf57b5c53bbfb394245677d806a93358a500f039a740fe47a94b85b83c94a","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"de","translated":"MCP","updated_at":"2026-05-31T05:36:35.020Z"} +{"cache_key":"3d3e9bfe38cc2c9780f7ca2115d0aa496d9f6bcf7d62ab6ffb0944eeae74066f","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"de","translated":"Nicht verfügbar","updated_at":"2026-07-10T02:23:38.518Z"} {"cache_key":"3e5cbd636bef68c7fae2d517646a5c0d993630ded3825851ee46fbf2667fa6d8","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.sessionSelect","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Pane session","text_hash":"0deb0759c3643f2659c0838326276513c119e7923672a118c4ed13c012c4b628","tgt_lang":"de","translated":"Bereichssitzung","updated_at":"2026-07-06T07:23:18.013Z"} +{"cache_key":"3fec2c3ca72cee374a345b3bf54a67bb135bc3cffc897dd115fbc4ba7638c7ab","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"de","translated":"Nur Durchsuchen. Plugin-Änderungen erfordern operator.admin-Zugriff.","updated_at":"2026-07-10T02:23:38.518Z"} {"cache_key":"4043ed348b4840425dccd7a9e44513361a363a84b21aec350c0543d37c896a75","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"de","translated":"Bedienernotizen","updated_at":"2026-06-16T14:12:53.111Z"} {"cache_key":"4107de58f899b88aaddcc334fc8d98e1062ffad108c2e83125b40665338b92f1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"de","translated":"Befehl","updated_at":"2026-06-16T14:13:08.672Z"} +{"cache_key":"43b16fe885c15f0747ceab29007250bd976b4ff4dbe106f56d771e7d2b57d0da","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"de","translated":"MCP-Server mit einem Klick","updated_at":"2026-07-10T02:23:27.522Z"} {"cache_key":"43e25d0fc332e0ed6e2da0484718951dfff9efac9ab623f59298b0454d37cb1f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"de","translated":"Sitzung","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"43ee477a1b4c43276ea910d02a07dd11e95b8f3071921efb72fdca94305b4ad5","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"de","translated":"Zeitplaner","updated_at":"2026-07-09T21:53:09.196Z"} -{"cache_key":"44da6def6585a4f5432c52c606b9881e7dcbc70d914b111fbdb79c2f8f144b28","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"de","translated":"{name} · zuerst besucht am {date}","updated_at":"2026-07-10T04:20:26.529Z"} +{"cache_key":"44981d5750b37f8b556f9c8b8355ad59a1ca34cb19fa1f96ddc875efa8e7e2e5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"de","translated":"{name} aktiviert. Ein Neustart des Gateway ist erforderlich, um die Änderung anzuwenden.","updated_at":"2026-07-10T02:23:38.518Z"} +{"cache_key":"44aa4d43c1a5f452ae1e43841f14442ac4631bfab089d6a57ae4519b21226d0f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"de","translated":"Sonstiges","updated_at":"2026-07-10T02:23:31.507Z"} {"cache_key":"465b52f4dba10316acc93a8fa26da0a7ff904dc43f105d601e11bfa2842c4d39","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"de","translated":"Aktiv","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"468a51899a45b7f8613e7db21e5ca5712253419a9911ed7a57fc1040cddd25bd","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.perDay","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"/ day","text_hash":"122faff7033fbaa4fac55b95788a16f370e13ab272d734f33bfcf15021170fe7","tgt_lang":"de","translated":"/ Tag","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"47545fc886536f8fbf74932dd9c172a99996c2ae64913f57f3521300cac25864","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"de","translated":"{count} blockiert","updated_at":"2026-06-16T14:12:59.821Z"} @@ -90,36 +115,53 @@ {"cache_key":"4ebf745cc2315636a9fe6b4aa41b941705089a811d0fb3bca976114c0525102c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"de","translated":"Worker-Protokoll","updated_at":"2026-06-16T14:12:53.111Z"} {"cache_key":"4effebd1aaac8a0588f229497bfeb16f3ac3f6dc34bcd867d0b6771464423b68","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"de","translated":"Bereit","updated_at":"2026-06-17T14:13:07.391Z"} {"cache_key":"4f18f03bd40d55c90bcf5527863ffea0d4e21e1398bf34b8b9645e265cb3a82e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"de","translated":"Workboard-Status","updated_at":"2026-06-17T14:13:12.251Z"} +{"cache_key":"4f78210684305e7794ab3d7c10be56dd1a7ed6af73cc333a56f7252ad4f1e707","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"de","translated":"ClawHub","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"50d1d8c5d8f82866649d151ed41e62ea2cf3c97327fc46067f8c892f3d6eb88d","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"de","translated":"Echtzeit-Spracheingabe erfordert Zugriff auf das Browser-Mikrofon.","updated_at":"2026-07-06T22:41:56.758Z"} {"cache_key":"5104ab4c0cb266e8e9fc9dc289c5d8a24304848da551995de521d98214fad4e8","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"de","translated":"Mikrofoneingang","updated_at":"2026-07-06T17:33:36.716Z"} {"cache_key":"51a04cef539b3328516dfc9101a46f5cce2e2921f8b19549b4144c763758400f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"de","translated":"30s","updated_at":"2026-06-17T14:13:12.251Z"} {"cache_key":"52b1304c25377a40595939d0d51a287d0f44b7b7ea853de88865448832b26dc3","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"de","translated":"Archiviert","updated_at":"2026-07-09T10:01:43.726Z"} -{"cache_key":"531562c5551bb459575c7e6913aa9244ed90946d70f4f63276ebbaaef9ce15b3","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"de","translated":"Sitzungsdateien anzeigen","updated_at":"2026-07-10T06:07:51.892Z"} +{"cache_key":"531348904a2db55346ff64af9327a3dba3d9ba4c9b40d6d414a92b3eabde21fe","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"de","translated":"Kanäle","updated_at":"2026-07-10T02:23:31.507Z"} {"cache_key":"534e0905e9bd6ea745c2c638354dcbbe9ecdee7e59889bbbcae83761556a6842","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"de","translated":"Codex-Flotte","updated_at":"2026-07-09T10:01:43.726Z"} +{"cache_key":"5415d833c8ff446c8c234d7537ee52042bf38403dcaa1dda126f785d4356ad63","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"de","translated":"Installiert","updated_at":"2026-07-10T02:23:27.522Z"} {"cache_key":"555797a869800fe5bbd48323276e0559980a1b3bb69c1d68310c4a902051cc5c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"de","translated":"Systemfehler","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"557aa579ebe429c27dc39a744d8ea95e062b2724d9c899e4845231b55314a13a","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"de","translated":"Sortieren nach","updated_at":"2026-07-06T23:40:48.838Z"} +{"cache_key":"56323468da1c0f214532216582501d4fe03540c1568013479401cedad0aa74a4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"de","translated":"Verbinden Sie Model Context Protocol-Server, um Ihrem Agenten zusätzliche Tools bereitzustellen. Änderungen gelten für neue Agentensitzungen.","updated_at":"2026-07-10T02:23:31.507Z"} {"cache_key":"563460816d3948dc9e063429950fd02b7f97ccd41ea95b4f82aef2639ca3c805","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"de","translated":"Skills: {skills}","updated_at":"2026-06-16T14:12:53.111Z"} {"cache_key":"57473c8a09374714eceaf4b6a43a37ce1d388c4b12e5d78f1d569698095651fb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"de","translated":"Es werden die ersten passenden Dateien angezeigt. Verfeinern Sie die Suche, um die Ergebnisse einzugrenzen.","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"5786703813168994fba14e4dff988d5692e5e29a64cf341eb483932fe9d3e06e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"de","translated":"Kommentar nach der endgültigen Antwort behalten","updated_at":"2026-07-01T01:06:02.805Z"} +{"cache_key":"5883501277e5d37faf46cc4bd54705f76e351b4533177d4299de9e44702e41cb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"de","translated":"Kontext-Engines","updated_at":"2026-07-10T02:23:31.507Z"} +{"cache_key":"58c81db172ac2636033bcc3fe7d7a794b4fb066d875ee89cf6ecda20531af3f3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"de","translated":"Aktiviert","updated_at":"2026-07-10T02:23:34.826Z"} {"cache_key":"595a2bc0419491adf3174e4a49cb1303005277ea35e7a5eccd1035ff8f55be0d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"de","translated":"Sitzung umbenennen","updated_at":"2026-07-02T14:30:04.036Z"} {"cache_key":"59a3e874dc9b1299daf4a2644ec2659a6e9c50587c91ac357f24215c16b94169","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"de","translated":"CWD","updated_at":"2026-06-16T14:13:08.672Z"} +{"cache_key":"59e81daa8ef882f4ab282b63c7ef9bf216ef51dc9c6485f83884dde325b5f34f","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"de","translated":"Optionale Funktionen installieren und verwalten.","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"5b0ab59138fd65f7f3a236db3c04458d74c99539c8ab736086c9637395c06d55","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"de","translated":"Sitzungsarbeitsbereich aufklappen","updated_at":"2026-06-16T14:12:59.821Z"} +{"cache_key":"5b1868b92cc29a728d935e790de753c37cadbc9ad1af7810f1181827d55f3304","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"de","translated":"{name} installieren","updated_at":"2026-07-10T02:23:38.518Z"} +{"cache_key":"5ceea9023cba8674b8e36d1eedb8be359406b9431da28b351b6a9c6a03d6a9c1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"de","translated":"Auf ClawHub suchen","updated_at":"2026-07-10T02:23:27.522Z"} +{"cache_key":"5df37439e76551bf4b6a2fbbe86e17708db7f22e9b479588a0c41b9c75b53692","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"de","translated":"Versuche es mit einer anderen Suche.","updated_at":"2026-07-10T02:23:27.522Z"} {"cache_key":"5ececc63e9826d838193ef14ce70f2a3205483bc21dcc131e08a9f399fd7e1a3","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropOpenHere","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Open here","text_hash":"b08e2fd2e872adcb575b305187b9db8482369325806953ce80190fc2dc1ab9fb","tgt_lang":"de","translated":"Hier öffnen","updated_at":"2026-07-06T22:56:17.559Z"} {"cache_key":"5f1f2104d573498016492a32bf5bab9cda32beb4b00961488f01579a0acf6ead","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.lastDays","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Last {count} days","text_hash":"4aa456a0fa9b73dcc14766740b19fc52c452950ccb7bc892499c3c29a4122162","tgt_lang":"de","translated":"Letzte {count} Tage","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"5f60d04e50be0e22c14d761f808667c2dfd5623e67247c367c1d280613bcffca","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"de","translated":"{count} Worker-Protokolle","updated_at":"2026-05-30T15:38:11.508Z"} {"cache_key":"607f6579fe326db8118df72dd6e3998b53f573ecb54e243e59f7231f93a4b828","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"de","translated":"{percent}% des Kontexts verwendet ({used} / {context} Token)","updated_at":"2026-07-09T07:06:14.874Z"} {"cache_key":"619a6d19fa8353908ccc6666ae1fb62f5fba13a7b58ab0e6416c0114477d067f","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.selectedRange","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Selected Range","text_hash":"95917ae71066a19c266cd4530068f4bf775ed2401951ebf37ab0c91daa1a67d3","tgt_lang":"de","translated":"Ausgewählter Zeitraum","updated_at":"2026-07-05T20:24:32.108Z"} +{"cache_key":"61a20d1c116f204f41bd128a83c03879581057d4657f19c8392a624a7603a967","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"de","translated":"Suche wird vorbereitet…","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"61fb0d5b03ac229c73083a5fb27e33af8257602d3697b4ed136aa23b7e587e59","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"de","translated":"Gruppe „{group}“ löschen? Die zugehörigen Sitzungen werden nach „Nicht gruppiert“ verschoben.","updated_at":"2026-07-06T23:40:48.838Z"} {"cache_key":"6210929636bb0466f9eed2b38004ca6eaba51083b43fe2975f2d5120d5758c45","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"de","translated":"getrennt","updated_at":"2026-07-04T21:23:50.364Z"} +{"cache_key":"6282c83e20f022bef3287eab7a1a43fda6f58eda90e9068f29cd20f11630acad","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"de","translated":"Entdecken","updated_at":"2026-07-10T02:23:23.316Z"} +{"cache_key":"628e5458a39cdd7096ab3f3772a18dcc1058bb93953d8314f9ab602ef063880f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"de","translated":"{name} hinzugefügt. Neue Agent-Sitzungen können es sofort verwenden.","updated_at":"2026-07-10T05:22:01.177Z"} +{"cache_key":"631afd20484471063291198cb0b051d3b43275d81bbc97f2ef2473feed5246e9","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"de","translated":"Control UI und verbundene Gateway-Build-Identität.","updated_at":"2026-07-10T09:46:52.972Z"} {"cache_key":"641a335e1800b8846a4307792782e3b6972506b7662cca548bcd3aaa60bb798d","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"de","translated":"Zuletzt aktualisiert","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"64aaf0c62a4206948ec81ee348583208774e28daf8740500b3400e8b0935cd89","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"de","translated":"Enthalten","updated_at":"2026-07-10T02:23:34.826Z"} {"cache_key":"65b2c60078bd2b9a95b88120f6f61bddde0d3cedbf987d55cc86f901b8b71048","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"de","translated":"blockiert","updated_at":"2026-06-17T14:13:12.251Z"} {"cache_key":"65ec45064d98a423756386409aeeeb90f8b8ff01646ab9ba6ea869871cc3173d","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"de","translated":"Details zur Kontextnutzung öffnen","updated_at":"2026-07-05T10:16:00.515Z"} +{"cache_key":"6617c3e82374927f8b588e04e7c787d877ae5d51cdd760b9647e8701603a4b2c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"de","translated":"Hinzugefügt","updated_at":"2026-07-10T02:23:27.522Z"} {"cache_key":"662c0a0db1957a8728cd0bcd89587358048e14991f4fb5e9f29704d0ba429a30","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"de","translated":"Mikrofon {number}","updated_at":"2026-07-06T17:56:14.727Z"} +{"cache_key":"6638243e7668c51dc1afb9922b4d8dc83e5321731c9d19376da25fd71735ce65","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"de","translated":"Konfiguration ist nicht verfügbar; aktualisieren Sie und versuchen Sie es erneut.","updated_at":"2026-07-10T02:23:34.826Z"} {"cache_key":"66c574a754f3fbc20d2dd209ffedc7a8e2c0e860c6d0fc402f1bb402bd59c3d2","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"de","translated":"Keine zusätzlichen Mikrofone gefunden","updated_at":"2026-07-06T17:33:36.716Z"} {"cache_key":"67afbf7c19366b8d3945d6cf9263e8f822020d78203ddc2055dd230abf728d64","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"de","translated":"Suchergebnisse","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"6881be17b998358e89638da4ad251f15baef625af7251f8e756dda4f52d42161","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"de","translated":"{count} gelesen","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"68b6aafe6c75b6205bdeb1b62600b4e2d232b9f0bc1c775f3f42f67bf23913b4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"de","translated":"Führen Sie /pair qr erneut aus, um einen neuen Einrichtungscode zu generieren.","updated_at":"2026-07-01T10:30:56.717Z"} {"cache_key":"68c3ba39177301e8e84f0c5d6be74d1d71d827361e7f7ba6fb3312210658b5f9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"de","translated":"online","updated_at":"2026-07-09T10:01:43.726Z"} +{"cache_key":"69c320749d274be40fde90918b0464d6efcb990cd590ea39db0939ddf463b512","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"de","translated":"MCP-Server {name} hinzugefügt.","updated_at":"2026-07-10T02:23:31.507Z"} {"cache_key":"69f31f16f0c0dbc41bdbe47210ab00683e5bd8da10f2991354e7eba0b2dd66e0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"de","translated":"Thread","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"6a93f1e03c824aa1b6f5e52390b126fe4253721b69eea2f468ca6e3b8dae2147","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"de","translated":"Projektdateien","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"6b16c393f4aba8aa0c9bca7002325ca7c31ba9ac3e43f5f53caa46dd9dcd0cc1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"de","translated":"Standardagent","updated_at":"2026-06-17T14:13:07.391Z"} @@ -127,33 +169,49 @@ {"cache_key":"6b5c6ae561cc0384d4799d478bf4426d33d8226a8bf6a5f6803464d1913b9d9d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"de","translated":"Keine aktiven Sitzungen auf diesem Host.","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"6b821806237bc3930a7e9ef888fb40e356f6be77e69889a0c6f8af75a33d491f","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortCreated","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"de","translated":"Erstellt","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"6ba0cfe3f845b6c864df0fd546aec64354717af1651ad7b0aa75dec004a77a75","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"de","translated":"Eine schreibgeschützte Ansicht der Codex-Sitzungen auf diesem Gateway und allen verbundenen Computern, die sie freigeben.","updated_at":"2026-07-09T10:01:43.726Z"} +{"cache_key":"6c9af7f75c3463db5982ef74648ad3a84c6e5f44349025a3679a4abbce65570e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"de","translated":"ClawHub wird durchsucht…","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"6cdcd04cff08f31e6968e0874474f397c04a51d8bbb7c59fe7ee520ea7d11851","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"de","translated":"Keine Karten entsprechen dieser Ansicht","updated_at":"2026-06-17T14:13:12.251Z"} +{"cache_key":"6e44045c8912e73b330687a79573e2007657e1faf81ea3e6aa5e03244ffbcf4f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"de","translated":"Deaktiviert","updated_at":"2026-07-10T02:23:34.826Z"} +{"cache_key":"6e4e9d95e7da81a622b0cb9e7892aa569fe4541a3a1a8629fd4b835bd63a7744","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"de","translated":"Details anzeigen","updated_at":"2026-06-16T14:12:53.111Z"} +{"cache_key":"6efd332e1772eb877a9e290676f994323e70f198cf86fd0982cfc0961bcb4573","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"de","translated":"{name} installiert. Ein Neustart des Gateway ist erforderlich, um die Änderung anzuwenden.","updated_at":"2026-07-10T02:23:38.518Z"} {"cache_key":"6f1dc6a5c7bcdc586c12df1c1909d43a4b4153bd4780c878501d432248a3660f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"de","translated":"Sitzung archivieren","updated_at":"2026-07-02T14:30:04.036Z"} {"cache_key":"6fbe8630ff058e35c9030e2dd3a54afe2e05808b52767e8570ee3d48f6666e83","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"de","translated":"Art","updated_at":"2026-07-05T14:39:38.809Z"} +{"cache_key":"6fc1010d7c570b45c6b722aabe4dbb489580a411520c282ed0615464dc15c6f9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"de","translated":"Plugins suchen","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"7022e9e9ca26d36041e667cac62404055a68d58b765b19338b0cf26d0895acdb","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"de","translated":"In der Warteschlange befindliche und laufende Hintergrundaufgaben.","updated_at":"2026-07-09T21:53:09.196Z"} {"cache_key":"70c6b22eafd0d2d4666281739a7ec6dadd93ff2f6c641a853990747323411272","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"de","translated":"Hoch","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"713e281048dce15dcceabc3d3b71a4d02ad0c78bff98e219681266d035cf88a9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"de","translated":"Angeheftet","updated_at":"2026-07-02T14:30:04.036Z"} {"cache_key":"7210b4cceb59f87af330d99beead698b678a410857dafee4f4ee36ce95c0fcaf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"de","translated":"Automatisch","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"730cb8da5507ec8f4dbae29677ca0be92119fc69d4a960bf5bbfb6b3c06388ea","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.open","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Open split view","text_hash":"51e50f7be73433216ae62f58fdbc586372f5a6063ee9978cec96793ef75fa554","tgt_lang":"de","translated":"Geteilte Ansicht öffnen","updated_at":"2026-07-06T07:23:18.013Z"} +{"cache_key":"733a5e120b0ef0c90140cbd2b8f6fddb0d590b09c32a46b07628283145e8c53d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"de","translated":"Schließen","updated_at":"2026-07-10T04:28:12.658Z"} {"cache_key":"73449109c5955c8ce9989be0e6137902483cc0d00e634cafbeb22479d0eb43de","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"de","translated":"System","updated_at":"2026-07-09T08:07:49.045Z"} {"cache_key":"7396a5b4343048cfb536321f308d573c700d794397c1f253106b1af5f070fcba","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.title","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Cost Windows","text_hash":"d085ca9b7dffb14e13dd359e697260f29a1201cc065356abc06b7e3ed3fafd64","tgt_lang":"de","translated":"Kostenzeiträume","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"7431ce4c8c6fda32a44e65f3881f395281632b9c2af979b87d2326db8b9b7a5c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"de","translated":"Workspace: {workspace}","updated_at":"2026-06-16T14:12:53.111Z"} {"cache_key":"75507443ba20151f010fb8087682336e30d411531b090a32c6e45685756c0576","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.subtitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Calendar windows ending {date}","text_hash":"f01adb920b86724f393ee7bca5ea4a90bd5a777d39f6191ed9c13530ceb7851d","tgt_lang":"de","translated":"Kalenderzeiträume bis {date}","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"755ef78b266144d69d20ea8c053c82561d665276a5514ff01198ba3b6421cc51","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"de","translated":"Mehr laden","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"760fc4f7b396b0efd5f1ae1c33e55fb06fdb74a1a5f34f2050d433138f6207d7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"de","translated":"Keine Codex-Hosts gefunden","updated_at":"2026-07-09T10:01:43.726Z"} +{"cache_key":"778ba8d7d0dddba191b2b1a8370fecd68b61576fc6c30fafef6cf6fe7370674c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"de","translated":"{name} entfernen","updated_at":"2026-07-10T02:23:34.826Z"} +{"cache_key":"78ad145e54799b1800272e9a7c67390ebb53fd66b3212349bd0b5d93f7cc2b66","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"de","translated":"Empfohlen","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"78eaa36a1b10e636319863a7baaf6c2cbfa539ea277f2f849d15f216e345ee14","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"de","translated":"Agents & Tools","updated_at":"2026-07-09T08:07:49.045Z"} +{"cache_key":"7963120c62d90a0815d8ea939799ae8e6de8eefe3d914984c3cecee6dd5daa1c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"de","translated":"Plugin-ID","updated_at":"2026-07-10T04:28:12.658Z"} +{"cache_key":"79b4720df8ebf8be264d349a8a3e238be80e9d4d5791ea33995dfd40d300a5a6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"de","translated":"ClawHub hat keine Ergebnisse für „{query}“.","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"79e67b9e2ccc8d716f813154abf8bc817461f00ab8fc0daf3da7bab5a5ce1752","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"de","translated":"Teilen","updated_at":"2026-07-06T22:56:17.559Z"} {"cache_key":"7a8f93ecfc4045545dd27474b1163e402cea16c1f59237fd0da8f9799894c858","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"de","translated":"Sitzungsarbeitsbereich wird geladen…","updated_at":"2026-06-16T14:12:59.821Z"} {"cache_key":"7a914bc3ff11171804b4dd619808328e0548527e3164a6bb9cb262496c687e98","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"de","translated":"Diese Woche","updated_at":"2026-07-05T14:39:38.809Z"} {"cache_key":"7b28f67720f0e5da93623c47a444ff0f232d241bfdeb8f0088c7ff7b42475153","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"de","translated":"Der Mikrofonzugriff ist blockiert. Erlaube ihn in den Website-Einstellungen des Browsers, um Eingänge aufzulisten.","updated_at":"2026-07-06T17:56:14.727Z"} +{"cache_key":"7bd59e49767ad1d2b001909b574fcdeef21ffe6ba37d9c68afab84ccb42cf664","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"de","translated":"Control UI-Konfiguration konnte nicht aktualisiert werden: {error}","updated_at":"2026-07-10T02:23:38.518Z"} +{"cache_key":"7c0b0563d09230871dcb2efcf75c19175807decc35e30b4296f52d3b00b5bece","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"de","translated":"Installiert","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"7c487658d1333c0af906ea1e9829964a34be7c7ff142fe79b6de18c62df4def4","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"de","translated":"Skill Workshop","updated_at":"2026-05-31T21:48:18.221Z"} {"cache_key":"7c542f028ebfcd1ee4752119908bf0b2530a11baca08896e516d5e85a575430a","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"de","translated":"Das ausgewählte Mikrofon ist nicht verfügbar. Wähle einen anderen Eingang oder die Systemvorgabe.","updated_at":"2026-07-06T17:56:14.727Z"} {"cache_key":"7c58ca2293eaf447f1ce2d3fe3a30c7ec2fb1e954866b495b5b54530c859e2ac","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"de","translated":"Mikrofone werden geladen…","updated_at":"2026-07-06T17:33:36.716Z"} {"cache_key":"7e1d9a4dd60f4d2ca91763a1c9ce2f8d4361afbcea8924c2309c116a5cdddcae","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"de","translated":"Diagnose","updated_at":"2026-06-16T14:12:53.111Z"} {"cache_key":"800cb409d203327f7dbe5c07ddc79c9968649038e87523bb512a54292ee11343","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"de","translated":"Workboard-Ansicht","updated_at":"2026-06-17T14:13:07.391Z"} {"cache_key":"8012eb6c8ee6a9f0c46ca461c091d0e387e7183839b9a9f4f2f3902e657f892b","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"de","translated":"Schaut gelegentlich vorbei","updated_at":"2026-07-09T20:51:25.542Z"} -{"cache_key":"814e6f9140efd417475ac42218d2b30bd7a7d7da96a3daf41c1d30b03152c1c0","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"de","translated":"Lobsterdex","updated_at":"2026-07-09T23:55:46.923Z"} +{"cache_key":"801da659863c7425e50a60a21f0a56c5606beffbd03b2ed1fa8963b8735c7932","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"de","translated":"Identität, die beim Erstellen dieses Browser-Artefakts eingebettet wurde.","updated_at":"2026-07-10T09:46:52.972Z"} +{"cache_key":"802025b2988940620d322dec4004070c1be7166d9b89da4a65fbd15a5d119bf6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"de","translated":"Plugins werden geladen…","updated_at":"2026-07-10T02:23:23.316Z"} +{"cache_key":"828006e8dd266e40441b80b20340195f6bc67edbb7e94becd927ebca0b962ed5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"de","translated":"Gateway offline","updated_at":"2026-07-10T02:23:34.826Z"} {"cache_key":"82a2c4a838d1e2e0c38ea411d037e3a407db3163b96cc2079d8a73f4ee3fc892","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"de","translated":"Aktualisiert {time}","updated_at":"2026-06-17T14:13:12.251Z"} +{"cache_key":"82e9e5e2c3d0f6849ac728ac165a145895c59c3cb9cc27fb1a6038c280ee8e6a","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"de","translated":"Plugins","updated_at":"2026-07-10T02:23:38.518Z"} +{"cache_key":"832dab257cd3e8dae8a49a1e7b91841d55a6bf8d52a360cfc4d0c197b6cf7b90","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"de","translated":"Plugin bündeln","updated_at":"2026-07-10T02:23:38.518Z"} {"cache_key":"8497047ccf1bb5bdba729f5be73627fd99b951ed18c36b94165ddd034d23e54c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"de","translated":"Gelesen","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"8576de84f79dcf2f42bf8d1317c3077a9723c8615665c2f68be5c7d22bf30848","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"de","translated":"Details anzeigen","updated_at":"2026-06-16T14:12:53.111Z"} {"cache_key":"85d619d86696656edaaed6116ea685a722870d484055301d2ae2a434c94fdee8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"de","translated":"Ändern Sie die Ansicht, Suche, Priorität, den Agenten oder den Archivfilter.","updated_at":"2026-06-17T14:13:12.251Z"} @@ -162,14 +220,19 @@ {"cache_key":"880c024dc4051159ab818d92c92e89ed90bada4dc3acf0e8dc282c06534d6c8c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"de","translated":"Zusammenfassung der Codex-Sitzungen","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"88cb3c131cf937211dd7de347b8031dac54e11224211b3bae8d8d7cbd42c0197","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"de","translated":"Orchestrierung","updated_at":"2026-05-30T15:38:11.508Z"} {"cache_key":"895f4f5fa8526de5f14cd61ff1905ccafcabc4060b8057e19b63500dafe45785","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"de","translated":"Sitzung in eine Gruppe verschieben","updated_at":"2026-07-05T14:39:38.809Z"} +{"cache_key":"89e6e2ffac09d60418b62a74970b03cb1c485a41eaac0fd29c212fc0ff61009c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"de","translated":"Wird entfernt…","updated_at":"2026-07-10T02:23:34.826Z"} +{"cache_key":"8a3d821e7bc3fb0f3543dda042ee5c1cd984150102ceeefb6ccf1b8d8aa43b5b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"de","translated":"{name}-Aktionen","updated_at":"2026-07-10T04:28:12.658Z"} {"cache_key":"8a47fe2a64c6d086435a52ad0abd8668cfc0a01c463abc3806a3cfbde739e892","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"de","translated":"Snapshot erstellen und {name} löschen?","updated_at":"2026-07-05T21:00:37.724Z"} +{"cache_key":"8abc4d9f2ec3814f0e3ce79377b52eb993553ec5758669db87e7ede8957dae84","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"de","translated":"Verifizierte Quelle","updated_at":"2026-07-10T02:23:34.826Z"} {"cache_key":"8b1c1eda411ab2416305f6c9ba0cc166e3490f1063510c2d9e5fcd8562da1581","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"de","translated":"Ausführung","updated_at":"2026-06-16T14:12:53.111Z"} +{"cache_key":"8b3cf66d85e76634032d7cedbeb0f23eaa9bcbdb6ce60b2daf2c13e99d06a060","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"de","translated":"Paket","updated_at":"2026-07-10T04:28:12.658Z"} {"cache_key":"8d8bee4267ec378ae0371bdd8deeb6a54c511cfe21e49e1135ea89d35dc44d41","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"de","translated":"Worker {state}","updated_at":"2026-05-30T15:38:11.508Z"} {"cache_key":"8e6e700ed5967e363855bbcc83f6be2eab783b3d7955961f297e537c380c6dba","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"de","translated":"Unbekannt","updated_at":"2026-06-16T14:12:59.821Z"} {"cache_key":"8edc057821b82acc9965e21ee87afdbb0192f72fc3091423b1d1405dab4ea193","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"de","translated":"Inaktiv","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"8f9e6fbe70d4a2bdf14fcf3060c1b346f9c0dc71f6efd2ad99dcaaf4fe117739","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"de","translated":"Vorschau","updated_at":"2026-06-16T14:13:08.672Z"} {"cache_key":"8fac9eb935bc659318a8f2b618675e4bde9b72fd1e3c808af178904190fad6c2","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"de","translated":"{count} Anhänge","updated_at":"2026-05-30T15:38:11.508Z"} {"cache_key":"8fcd339edd96fc44a5551b0ecfc2082c5450aa678ae7c5a8f9fad41954f560c9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"de","translated":"Notiz hinzufügen","updated_at":"2026-06-16T14:12:59.821Z"} +{"cache_key":"8fd7c4a33be4f3e6b12bc8fd109c8de244d7890b9d5646a89f65515eab79bd78","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"de","translated":"Keine installierten Plugins gefunden","updated_at":"2026-07-10T02:23:27.522Z"} {"cache_key":"908b411a083d4600fb56427c4affaa1c360ea61d23315e4ed8691f5ba88cc8d7","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"de","translated":"Dispatcher anstoßen","updated_at":"2026-05-30T15:38:11.508Z"} {"cache_key":"90d09971dfba518c58c02772ae2ae71eb2396ac1c831235640d2ecf26a423492","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"de","translated":"Allgemein","updated_at":"2026-07-09T08:07:49.045Z"} {"cache_key":"91f443ba5b7ba09906868e6df706c499e0bf1f8768a2a9b45b2ee2397cc007f0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"de","translated":"5s","updated_at":"2026-06-17T14:13:12.251Z"} @@ -177,20 +240,31 @@ {"cache_key":"955ba0ca3d287e97bb5b48070236eb5ee6ed7ac30f0b243af50800b75efb5ee6","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"de","translated":"Keine verwalteten Worktrees.","updated_at":"2026-07-05T21:00:37.724Z"} {"cache_key":"9594c5c94f477d67e4dbb185c761d7183095416c4b1c7960302ca43d4f8058b5","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"de","translated":"Realtime Talk erfordert Mikrofonzugriff im Browser.","updated_at":"2026-07-06T17:56:14.727Z"} {"cache_key":"96979aa2dfef07be7f5a1ce9fe1b70e07ef429c7fad4cad5c61266814c72b71f","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"de","translated":"Branch","updated_at":"2026-07-05T21:00:37.724Z"} +{"cache_key":"96d55b3ec994b727058d6ebc740927309fc6b26ad29c59a07e11c60dbf273cc1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"de","translated":"Arbeit & Produktivität","updated_at":"2026-07-10T05:22:01.177Z"} +{"cache_key":"96fd818606c145fbed6454440918bd7ec6d1833d6419e2f9a3310578ea854913","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"de","translated":"URL oder Befehl","updated_at":"2026-07-10T02:23:31.507Z"} {"cache_key":"9723b8341a0df036b41349c9a9e77980bee890eb7b8cd45aed48487c274995fd","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"de","translated":"{count} Anfragen","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"978d9ed425e8bf0fb0b095a17436ff0c52619be0a408c3ef71384776142d2b9e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"de","translated":"Nicht verfügbare Hosts: {count}. Andere Hosts bleiben verfügbar.","updated_at":"2026-07-09T10:01:43.726Z"} +{"cache_key":"979622ae22e8f4534294db388e8ad8aefbec9fb0618c905434c4c82f5bf4d72a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"de","translated":"ClawHub durchsuchen","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"97b76947e97aaa2a5b8850bc347ee67f11ef4c832165d1c89ade21fae9296e66","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"de","translated":"Gateway-Aufgabe","updated_at":"2026-06-16T14:12:53.111Z"} +{"cache_key":"98ad0ea479f163dccca9ba1b00843e70971d761d2a85d06f097d7138b42af49a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"de","translated":"Noch keine MCP-Server konfiguriert. Fügen Sie hier einen hinzu oder wählen Sie einen Connector in Discover aus.","updated_at":"2026-07-10T02:23:31.507Z"} +{"cache_key":"9944e8b8868892012a2415bf62c80d74c74bc50e38a53175484daf7e0d1b6541","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"de","translated":"Global","updated_at":"2026-07-10T02:23:34.826Z"} +{"cache_key":"995ee7d5efeac0f0ee885f111e8816246472374770faa1b346b4d7465088c9ec","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"de","translated":"Abbrechen","updated_at":"2026-07-10T02:23:34.826Z"} +{"cache_key":"9a725211787c985b785f554768e2083a8967422d064903ad29af07b7bbf84381","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"de","translated":"Dieses Plugin entfernen?","updated_at":"2026-07-10T02:23:34.826Z"} +{"cache_key":"9b6494f09af9f0e46601af94edfd157bdab349090d43055adb2379c794d3131b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"de","translated":"Tools","updated_at":"2026-07-10T02:23:31.507Z"} {"cache_key":"9bcb1fb9dd98cc8afe7e07293615e056bc79e9eda22bbeb4a9831e13530d9ffb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"de","translated":"60s","updated_at":"2026-06-17T14:13:12.251Z"} {"cache_key":"9c6ff815eb64db69d37024942d9cdb63c3efd4f583c7fa5b031017bf7870ce03","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"de","translated":"Gruppe","updated_at":"2026-07-05T14:39:38.809Z"} +{"cache_key":"9ce91e696ad528073353ad2594f39d157ecbbbe54e7ff1e2656f8411d2e7d0dd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"de","translated":"Server hinzufügen","updated_at":"2026-07-10T02:23:31.507Z"} {"cache_key":"9d16f7d13e825b853ad8bea8a2ef1364f185a167f4361e61da091b062ba737cd","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"de","translated":"{count} Ausgabe-Tokens","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"9d623077d3295a152311f8c256fadaf9c6f8c14f1d4cb3a13a3e072f21f9ac6c","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"de","translated":"Neuer Chat im Worktree","updated_at":"2026-07-06T04:55:57.354Z"} {"cache_key":"9dd671afcd83f8520477bdaae5c3ac1f1445032301322d61bb5b9de9b9e557ef","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"de","translated":"{count}h","updated_at":"2026-06-17T14:13:12.251Z"} {"cache_key":"9ea088f95993e4e1fd7be6ad73ad533c01bc79aace908b70776bc88e3c470a15","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"de","translated":"Stamm","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"9ed765600e963d86c337ce7df810feb36a184ac6a3314e8fcaaa0cd8316d7d39","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"de","translated":"{count} Karten","updated_at":"2026-06-17T14:13:07.391Z"} {"cache_key":"9efb288d0b3ff5d7cc3780ada172ff057d99f3588a0bb593a67aca20925986c2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"de","translated":"Sitzung anheften","updated_at":"2026-07-02T14:30:04.036Z"} +{"cache_key":"a0730924fa39d0c9ebad5f61f88b2a4405b5e1164b31e8d205be13ba1b17ac0c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"de","translated":"Erfordert Aufmerksamkeit","updated_at":"2026-07-10T02:23:27.522Z"} {"cache_key":"a0cb083257f573efd2bafd0dfd27b6f0fe8486df0f87489c1efc39f360a72318","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"de","translated":"Aktuellen Chat verwenden","updated_at":"2026-06-16T14:12:53.110Z"} -{"cache_key":"a0db7baca1debf9850628699e46317c54e94da5e07459fae55aecfe17ca1ede6","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"de","translated":"{seen}/{total} besucht","updated_at":"2026-07-09T23:55:46.924Z"} +{"cache_key":"a0ffa0201e9381acb2a0fc85ccde106335ae22a98a1c17736c27351bd8a89416","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"de","translated":"MCP-Server","updated_at":"2026-07-10T02:23:31.507Z"} {"cache_key":"a1035bf5703ad72dbd01cdafa2fc26965fde4283120180063dccd411db3a8e6b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"de","translated":"Gateway","updated_at":"2026-07-09T10:01:43.726Z"} +{"cache_key":"a11ad86535263d2f30c527bcf38b8aef17e77ad9c1c58b56d908f03823ea8fed","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"de","translated":"Build-Details der Control UI","updated_at":"2026-07-10T09:46:52.972Z"} {"cache_key":"a1e0376c9cf4b3449312840920e19848bd91d6d6e624aba16fc37bac4dd86c82","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"de","translated":"Protokollverstoß","updated_at":"2026-05-30T15:38:11.508Z"} {"cache_key":"a29faa56beed9df71db1674a1634bcef71610d0e9e62117b929e28c4b08853e5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"de","translated":"Keine","updated_at":"2026-07-05T14:39:38.809Z"} {"cache_key":"a462449fc3412911ee07a12115f113ed19f1cfcb0af5d41f12d267ec6158067e","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"de","translated":"{count} Cache-Tokens","updated_at":"2026-07-06T06:40:15.357Z"} @@ -200,15 +274,18 @@ {"cache_key":"a59d5501c7aee4dbcf0896df50df614fc7dabe2ea9138b7c430a1c6867ff8412","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"de","translated":"Verwaltete Worktrees","updated_at":"2026-07-05T21:00:37.724Z"} {"cache_key":"a5e34363d3417c898cc4eb3934cdb47e6d79d23f5eeec7ae5da2eb2ac06cde84","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"de","translated":"Isolierte Repository-Checkouts im Besitz von OpenClaw.","updated_at":"2026-07-05T21:00:37.724Z"} {"cache_key":"a668e247748546f911e02ecdf0247e76b83001a6e3455e9ea650b760dd87bdd6","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.closePane","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Close pane","text_hash":"7fa0f9613d919e167b0f9aa03c22809d446af293eb6c3bac6866bae66d2656c9","tgt_lang":"de","translated":"Bereich schließen","updated_at":"2026-07-06T07:23:18.013Z"} +{"cache_key":"a77537957c923ba4e3d08e9e807269a2828c3ae84df32b93b150243825155ab2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"de","translated":"Keine passenden Entdeckungen","updated_at":"2026-07-10T02:23:23.316Z"} +{"cache_key":"a7a88bbe6fa66a3e247de580e001b0dc25bcf97d5e86614944a66bc313954f61","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"de","translated":"MCP-Server „{name}“ wurde in der Konfiguration nicht gefunden.","updated_at":"2026-07-10T02:23:31.507Z"} {"cache_key":"a836a890b9cdb3876dea22de017da2e681fdef8a19219bba2e0d9b37353f4d62","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"de","translated":"Verbinde dich erneut mit dem Gateway, um die Codex-Sitzungen zu aktualisieren.","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"a8bf49549fd80f170270c2b04eaf07ec2e93edc185ccf510593e93b0a1f7a4a9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"de","translated":"Hosts","updated_at":"2026-07-09T10:01:43.726Z"} -{"cache_key":"a9a6adb9fe4c5d808d2cebb495f548e2153a6e26d8658a0c3927bf3c395a8d3d","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"de","translated":"Leise Blubbergeräusche bei Berührung","updated_at":"2026-07-10T04:49:55.750Z"} {"cache_key":"aa2f5a29485bf4d22b3f98ede5671a0786d7d2b7a3a475394e53fe2d4b246213","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"de","translated":"Snapshot fehlgeschlagen: {error}\n\nOhne Snapshot löschen?","updated_at":"2026-07-05T21:00:37.724Z"} {"cache_key":"aa402f682e15d55fe0919f4cbf5b8fd99f55c894c1a24509ddb6de981863b421","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"de","translated":"Aktualisiert","updated_at":"2026-06-16T14:12:53.111Z"} {"cache_key":"ab41effd6851396fdd7adcb1f8577544978283689f783333f93b70bca4ec5e97","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"de","translated":"Sitzungskatalog nicht verfügbar","updated_at":"2026-07-09T10:01:43.726Z"} +{"cache_key":"ab8f9449e78191f5fa40bd61e31a820116c64c077d015936c7e1a7f03978edf5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"de","translated":"{name} deaktiviert. Ein Neustart des Gateway ist erforderlich, um die Änderung anzuwenden.","updated_at":"2026-07-10T02:23:38.518Z"} {"cache_key":"abb4fa03f4741e5e8793b4053c417b4dcf7b9ea63b64883379d09c425fa959e4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"de","translated":"15s","updated_at":"2026-06-17T14:13:12.251Z"} {"cache_key":"abcbe3ba5df9edae1ccdc1af61773648e0af82001a43d7a3d4e568b76d6b0b27","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"de","translated":"Русский (Russisch)","updated_at":"2026-06-26T21:43:23.990Z"} {"cache_key":"abf917be15a77ae52c4ba941a507a805a381ee77911c1ec86040c5759f977268","model":"gpt-5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"de","translated":"Aktualisieren","updated_at":"2026-07-09T10:01:43.726Z"} +{"cache_key":"ac60f1b653283f5149b9e11bdbbb927619d57c17a0512c9baf1707971bf293e9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"de","translated":"Verfügbar","updated_at":"2026-07-10T02:23:34.826Z"} {"cache_key":"ac8e30470e0c7f7cc85183c3c61f8cb4ae44d5be616e2f58daa4f87f58b7888c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"de","translated":"Knoten","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"ad8a8043be915d510bdbf5b4af80c66345fe98797a39bd531d32fd58efd79cae","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"de","translated":"Keine Dateien in diesem Ordner.","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"ad8f4a3f0eb17c1c7cd49b2bf873ab32e68e5c3c1479ab5eed63a6746ec3ebb1","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"de","translated":"Datum","updated_at":"2026-07-05T14:39:38.809Z"} @@ -220,44 +297,68 @@ {"cache_key":"b02553b1863d706f91fa64608f7392e004a29bab597781f31fed759e2151f761","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"de","translated":"Heute","updated_at":"2026-07-05T14:39:38.809Z"} {"cache_key":"b0a3998c785a74ed56bbc24e637c9e8bb938f7665f70bf39b092bd7bbe52e0d9","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"de","translated":"MCP-Server, Authentifizierung, Tools und Diagnosen.","updated_at":"2026-05-31T05:36:35.020Z"} {"cache_key":"b0d1cf6fe1314edf5ed1065e624663c98b360863f63060519a9d7804626368af","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"de","translated":"Automatisierung","updated_at":"2026-06-16T14:12:53.111Z"} +{"cache_key":"b1880868603c263665715aacd117c871fd8f18e836722a4156292da902188f06","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"de","translated":"Plugins suchen","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"b2b1f4d5819143aa6244bd4435e0f2cfff8400d379fac5da20a15de5d9993123","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"de","translated":"Überprüfung","updated_at":"2026-06-17T14:13:07.391Z"} +{"cache_key":"b2b958730f4c4802cbe3bdc5630b7139547fc13691538de50128b3125ba5d0fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"de","translated":"Keine optionalen Plugins installiert","updated_at":"2026-07-10T02:23:27.522Z"} +{"cache_key":"b34baf7d15689494df774c2f6994f9a1196b02d2f129ca984c621add8662d086","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"de","translated":"Commit","updated_at":"2026-07-10T09:46:52.972Z"} {"cache_key":"b39a90ea4f55a1b6583b08ba56329b9db07bb03e9602f0538a8a33d055ad6561","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"de","translated":"Gruppenoptionen für {group}","updated_at":"2026-07-06T23:40:48.838Z"} {"cache_key":"b39ff25d8e5a04960fa8bbe74a9b1a28c64de064b304d0619c39af96525fe77c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"de","translated":"Kopplungs-QR-Code abgelaufen","updated_at":"2026-07-01T10:30:56.717Z"} +{"cache_key":"b456b59353cdc5a9ac243ccc6d1437742b44e2e5df6987eb7020f37588c9a8f9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"de","translated":"Prüfen Sie die ClawHub-Warnung, bevor Sie dieses Plugin installieren.","updated_at":"2026-07-10T02:23:38.518Z"} +{"cache_key":"b480483486b90bed380fc40ca349ebfa08ef9c35ed1ac01e24f48db443b6e933","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"de","translated":"Aktualisieren","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"b4b02bb637fe3ddea92f6d36398fd100bfead921093a27bff8abdb5ca0efebe0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"de","translated":"Mittel","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"b5f8ea3564310442b5b3c27a45e5aa99088966a7bebb8150ec03365bf7564ae1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"de","translated":"Servernamen dürfen Buchstaben, Zahlen, Punkte, Bindestriche oder Unterstriche enthalten.","updated_at":"2026-07-10T02:23:31.507Z"} {"cache_key":"b5ff1cd9357eab1b8877a991a484e7966970acb351067a4a37f7a2e5e983f9fc","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"de","translated":"Jetzt bereinigen","updated_at":"2026-07-05T21:00:37.724Z"} {"cache_key":"b6662447466f4ec8f56ff69e891f5a1812ba507ce772ffbe46b1ce1a36899144","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"de","translated":"Keine passenden Dateien.","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"b6dc2c84c8c1c38be632b308e93ba2ac92ecf5426015f11cbcd2700231313586","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"de","translated":"Zusammenfassung des Sitzungs-Workspace","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"b6efbd0eecbd5f5de6cec62537cf0a4009bc6309c8a3fae234fb923244863f2b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"de","translated":"Aktiviere die Freigabe von Codex-Sitzungen auf dem Gateway oder einem gekoppelten Computer und aktualisiere dann diese Ansicht.","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"b7d1dfb8a82266cd2a531a5586e0827022b2efcfadcf8d6841d129b66b4933f0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"de","translated":"fehlgeschlagene Versuche","updated_at":"2026-06-17T14:13:12.251Z"} {"cache_key":"b897d0770ee67354afbd0d130579c381b70bdfe4dc52b419ce88cc43077b6402","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"de","translated":"Hummerbesuche","updated_at":"2026-07-09T20:51:25.542Z"} +{"cache_key":"b8cc65cff8af544bed9a3d24511c355163411f935c310449bf8caf3bd1ec0958","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"de","translated":"{name} aktiviert.","updated_at":"2026-07-10T02:23:38.518Z"} {"cache_key":"b941146ebb62a40344e0b2a3022e5da49478005641442b77e6c76c91d36a2d94","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"de","translated":"Wiederherstellbar","updated_at":"2026-07-05T21:00:37.724Z"} {"cache_key":"bb09be62d7c0d316c45a1ff8819f8b8e68e3ff4866a7996017204dc880f1ccc9","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"de","translated":"Verbindungen","updated_at":"2026-07-09T08:07:49.045Z"} {"cache_key":"bb40657bdb3cca8849d74adfc4aa2a36eff32696a8dc04a78f271a71f9e0ad98","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"de","translated":"Sitzung umbenennen","updated_at":"2026-07-02T14:30:04.036Z"} {"cache_key":"bb447b0a5d72a74bb7856e9a8be7a3bc32bca59fa18d11ee6cc7a933eaf4898e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"de","translated":"Mehr in den Einstellungen","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"bdd4c50f0099d45b3e313cad2d0b3f7068bd200a3634371c014dcba67f9a1002","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"de","translated":"Kartendetails","updated_at":"2026-06-16T14:12:53.111Z"} {"cache_key":"bde551378cc12bc329ddbe2ab5ebb96facd9f41c10c61ebc0ec898a88aa325b5","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"de","translated":"Dieser Browser kann Mikrofoneingänge nicht auflisten.","updated_at":"2026-07-06T17:56:14.727Z"} +{"cache_key":"be7162c383e7d74f482b3392aed1de1d9599358e4a288b2e1c33e0786214f3b0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"de","translated":"Aktivieren","updated_at":"2026-07-10T04:28:12.658Z"} +{"cache_key":"be7636f3a20e0d9d7ee4c00ae24b43dc593aef4b45b0b79f9c58f6e215ce2074","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"de","translated":"MCP-Server {name} entfernt.","updated_at":"2026-07-10T02:23:31.507Z"} +{"cache_key":"bf0719d6f5aabc8e9599236e01474e38f75dbb2612a6e12a26ea767ef51ea1f3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"de","translated":"Optionale OpenClaw-Funktion.","updated_at":"2026-07-10T02:23:34.826Z"} {"cache_key":"bf3a66625a2493f922360f877ef9b08de57ef1e59f85b3bcfe7468888fbca00e","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"de","translated":"Heute","updated_at":"2026-07-05T14:39:38.809Z"} {"cache_key":"bfe958245bd105456a4491c5d3b1fda2866dd30dd0563255765cdf8fa0f859c0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"de","translated":"bereit, nicht zugewiesen","updated_at":"2026-06-17T14:13:12.251Z"} +{"cache_key":"c143138f41e1c800a34a4f37fa1344c20189b2e91fcd11b624ddbdf16f78557d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"de","translated":"Aktiviert","updated_at":"2026-07-10T02:23:27.522Z"} +{"cache_key":"c17506ba48ac171f529b7b3605a52ae2814ac3588429e3f91cc07fddfb99ba52","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"de","translated":"Verbinden Sie sich, um installierte und empfohlene Plugins zu durchsuchen.","updated_at":"2026-07-10T02:23:34.826Z"} {"cache_key":"c1f795ea19fa96bd07979acd58a828262be89b7ff96905ab871d30064ea4bf6f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadingMore","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"de","translated":"Wird geladen…","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"c2c19da5340707d83522b2fa42c7ca053b5b8dc49211f2107b84e5accdf52b07","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"de","translated":"{parent} (fehlt)","updated_at":"2026-06-16T14:12:59.821Z"} +{"cache_key":"c2c94b4ea0b05ada86d85ef5cdb57e73c3f9927543b3bd289551ba4a5e9f725c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"de","translated":"Entdecke ein empfohlenes Plugin oder durchsuche ClawHub, um OpenClaw zu erweitern.","updated_at":"2026-07-10T02:23:27.522Z"} {"cache_key":"c2eb49eb497f366bb3d993de133466265379108d6ff88af6d3c8b0c677c32d58","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"de","translated":"Mandant: {tenant}","updated_at":"2026-06-16T14:12:53.111Z"} +{"cache_key":"c34d8201ef00b685bad7455bb90ca7584317c8ca596b26aee5d4aea467820eeb","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"de","translated":"Commit-Hash kopiert","updated_at":"2026-07-10T09:46:52.972Z"} {"cache_key":"c3fcfc1198249c461371ad0216f2af28c6ad24d8673ff1a26cfe45840dc298ea","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"de","translated":"Es wurden keine Mikrofoneingänge gefunden.","updated_at":"2026-07-06T17:56:14.727Z"} {"cache_key":"c4771eae6a73503a6758ad3debd186ec31fe571e991dbc8e8879f5309ab1251e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"de","translated":"Dateien suchen","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"c4940a10947bb78fff341ab048bb96bf98e7cd36c6b4eddbab51d6fcfb5b7794","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"de","translated":"Im Standardbrowser öffnen","updated_at":"2026-07-09T11:02:41.562Z"} {"cache_key":"c511a99db2a97a7a98a7456283e579a7d7fe86373037245135d067956d836256","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"de","translated":"Verbunden","updated_at":"2026-07-09T10:01:43.726Z"} +{"cache_key":"c7311bcb08074d7e9d170ac9f9d74dd7e6ff7b60a182e44a6219c27e4616f495","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"de","translated":"Version der verbundenen Gateway","updated_at":"2026-07-10T09:46:52.972Z"} {"cache_key":"c7b88aa5f716c66c2c3dc9fc0548bedc76927bdc6d852c3d46ac5a70917c9e37","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"de","translated":"Unbenannte Codex-Sitzung","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"c84f86a0b8675180e16418548abbda8f36c4922c617d39d7ae963080fec64861","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"de","translated":"Gestern","updated_at":"2026-07-05T14:39:38.809Z"} +{"cache_key":"c9153738492959f0095c354423fff7743ad952054f51aae811e128137644025b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"de","translated":"Quelle","updated_at":"2026-07-10T04:28:12.658Z"} +{"cache_key":"c9fd61d46676b5dfd59d6a6a337d5c9154eb6b9f2885ec345a3277868d68f424","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"de","translated":"Keine Plugins gefunden","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"cafa119af399a0e8b9358cebcaa01e5cc19552b7e3dc9c7e6bb3893be2873750","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitRight","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Split right","text_hash":"aa9997bb1d8c23d0b88521c4093fc8c3ee01b187f78635ae4d3e16d27e8a8475","tgt_lang":"de","translated":"Nach rechts teilen","updated_at":"2026-07-06T07:23:18.013Z"} {"cache_key":"ccee1cdfcc7c2115b14c65277a37a4dbd6b49d3ae4cfa37db23c9ed30377df95","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"de","translated":"Automatische Aktualisierung","updated_at":"2026-06-17T14:13:07.391Z"} {"cache_key":"cd0e42a1f5b5ef1951137cf3f1b125981d2e9ab95224f80d638498997be1797e","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"de","translated":"Link kopieren","updated_at":"2026-07-09T11:02:41.562Z"} +{"cache_key":"cd133fc8b399663f0e6cb0fa38494f65e7bdaa7f2fb81b6b7acf7bc26f360261","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"de","translated":"Community-Plugins auf ClawHub","updated_at":"2026-07-10T02:23:27.522Z"} +{"cache_key":"ce32ec7992b6e0c27c9c3650dfcf8ab2edf622b0bad93b00bb39a2a86bbe7872","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"de","translated":"Alltag","updated_at":"2026-07-10T05:22:01.177Z"} {"cache_key":"cf544ad257528ed8ef226bb2b2fead2aa5218522d0abd70f7f894e97fc72997f","model":"gpt-5","provider":"openai","segment_id":"usage.daily.compressedScaleHint","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Square-root scale keeps low-usage days visible.","text_hash":"9515e7c6db149c32b64dba95a43e31a61d53dce8f11fe98683b234fb1cfd1920","tgt_lang":"de","translated":"Die Quadratwurzelskala hält Tage mit geringer Nutzung sichtbar.","updated_at":"2026-07-05T20:24:32.108Z"} +{"cache_key":"cff86fd85f1b9df05cf753271ce54029f888d2daa0675eb997b10d86ae91dc39","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"de","translated":"Plugins","updated_at":"2026-07-10T02:23:23.316Z"} +{"cache_key":"d01090ba12d89c718bd4a73657d28455a91afae959bc7a46aab093acbce8b5cd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"de","translated":"Wird hinzugefügt…","updated_at":"2026-07-10T02:23:31.507Z"} +{"cache_key":"d019b5ec44b5c1a429c23f13925a1a3582707b4f44780d77d95709d4e90d3094","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"de","translated":"Deaktivieren","updated_at":"2026-07-10T04:28:12.658Z"} {"cache_key":"d03fb625bb64bb537044a2169d6c1eafeacfd46687a7acfb3db01f251d541e5e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"de","translated":"Kürzlich erledigt","updated_at":"2026-06-17T14:13:07.391Z"} -{"cache_key":"d175642bb414bd8246f6d4232543ca3ef42edd36c21b27dc6ca443bf6c55e37c","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"de","translated":"Hummergeräusche","updated_at":"2026-07-10T04:49:55.750Z"} +{"cache_key":"d2fbfcd5ac9d6902e71afb987d63429bc4006820473a27b177bdb47cdd4eb635","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"de","translated":"Installierte Plugins filtern","updated_at":"2026-07-10T02:23:27.522Z"} {"cache_key":"d2ff09ce79f560c110ed1230473dd3ee64d764938a5691ef7d5d305e580c77ca","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"de","translated":"Sitzungen auf allen deinen Computern","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"d38ac7e8c801f19e2899898714f2c27397c75565f456202d650e6d2ff750c023","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"de","translated":"Pfad kopieren","updated_at":"2026-06-16T14:13:08.672Z"} +{"cache_key":"d3c446519530d913e919c97a1df2860a02c37a2d459fb25d32aa47bb126a184a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"de","translated":"Offizielle Plugins","updated_at":"2026-07-10T02:23:27.522Z"} {"cache_key":"d477d53f4724d1b9576a3480d44cdb4b080ef56b7a77ab30effd0b7d0f78f35c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"de","translated":"Entscheidung, Blocker oder Nachweisnotiz hinzufügen...","updated_at":"2026-06-16T14:12:59.821Z"} {"cache_key":"d66827da69177013a8a2657c957269da3e023784bf328e49d72ea2db704d44cd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"de","translated":"Standard","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"d7b3d2e3ce70b9d05c82cab44b67236a3bfbee3c59922bddd5e4708f4cb7eb7a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"de","translated":"Sitzung lösen","updated_at":"2026-07-02T14:30:04.036Z"} +{"cache_key":"d81d8ee41dadf1548d6fb448550cd0cd9dce05ad05f0edf327ff0cabfe02abf0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"de","translated":"Installieren","updated_at":"2026-07-10T02:23:38.518Z"} {"cache_key":"dbcd31186804370e06483cbbd77e233d4305bd9922494f2e152476eb521ddfcd","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"de","translated":"Aktionen","updated_at":"2026-07-05T21:00:37.724Z"} {"cache_key":"dbd708750243e3f96f6249e02d5d7b3c0535e0f4889d9d2faf50e61fcaeae879","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"de","translated":"Nachweis fehlt","updated_at":"2026-06-17T14:13:12.251Z"} {"cache_key":"dcafcf41becff258d37e8ce9568c9811842e36b940492a605cfe7b4d83dea864","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"de","translated":"{agent} (Standard)","updated_at":"2026-06-17T14:13:07.391Z"} @@ -268,36 +369,59 @@ {"cache_key":"dee1ab50c245fed0609bcb90f86720afae9f5e3bdd37c85ea35c2c399f4e5a8b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"de","translated":"Codex-Sitzungen durchsuchen","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"deecbdce3fd3a31525862dae03a3ce708e14fea0ac776d769c4d8ee09e77c7db","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"de","translated":"Keine Sitzungen auf diesem Host entsprechen deiner Suche.","updated_at":"2026-07-09T10:01:43.726Z"} {"cache_key":"dfab650ecf90a65280cd1f0d9a8c8e2ad55dc1c68a3993daea42b2f0f7568822","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"de","translated":"Karten, die explizit dem konfigurierten Standardagenten zugewiesen sind.","updated_at":"2026-06-17T14:13:07.391Z"} -{"cache_key":"dfe66696f3aaf1fac975862586aaf01617ae1eb9016769a9708701bc45a553ec","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"de","translated":"Ziehen, um rechts oder unten anzudocken","updated_at":"2026-07-10T06:07:51.892Z"} +{"cache_key":"e056cf20220970b802e381bf59d5e9c137d35beff10a740a67a878db48e4deb7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"de","translated":"Probleme","updated_at":"2026-07-10T02:23:27.522Z"} +{"cache_key":"e08c6cec3eadca5eeeba07aade4f7be076de4191b7238af2b1853f9e0d94d62f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"de","translated":"Wird installiert…","updated_at":"2026-07-10T02:23:38.518Z"} {"cache_key":"e2249f40d9070318fba10febd046411287068929f7c013ea8dd08b4626b1483b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"de","translated":"Nur archivierte Sitzungen anzeigen.","updated_at":"2026-07-02T14:30:04.036Z"} +{"cache_key":"e2548310534cc5751e37eea379dbf0e2c4be5a0e1fccf8624d1373785833bcb8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"de","translated":"MCP-Einstellungen","updated_at":"2026-07-10T02:23:31.507Z"} {"cache_key":"e351ed5b8875597b29735f9e236faf76729b18c44b297816f6548768a37682fe","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"de","translated":"Veraltet","updated_at":"2026-06-17T14:13:07.391Z"} +{"cache_key":"e4148379972cb483e5727d607dc2848d10d9665fe4f66af0bfbd23f457b0fee5","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"de","translated":"Info","updated_at":"2026-07-10T09:46:52.972Z"} {"cache_key":"e46e20d2e43f50e0f3e2ec4a0df2f1d261bae19e1eca4291ace13625d4fd893c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"de","translated":"Erweiterte Einstellungen erfordern Administratorzugriff","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"e50aa42b44fa61de5322d01701b08a1460b315ebf5beb258a7b68d1c40200a02","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"de","translated":"Zielnotiz","updated_at":"2026-05-29T21:00:05.331Z"} +{"cache_key":"e6874d57eb2b0cc9b3a19883099f9defd2dbc2cd272dda91673fb221bdf4aec8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"de","translated":"{enabled} aktiviert, {disabled} deaktiviert, {issues} mit Problemen","updated_at":"2026-07-10T06:08:35.903Z"} +{"cache_key":"e6978de5f5bb1244bec8054e69457df59e2608a99f6c3dbeef0336da287dc1f3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"de","translated":"Verbinde deine Welt","updated_at":"2026-07-10T02:23:27.522Z"} {"cache_key":"e6a0bdee1c5a731be8c8defe379dde78acb71f5beb1a62a72a13705023a5db11","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"de","translated":"Sitzungen","updated_at":"2026-07-09T10:01:43.726Z"} +{"cache_key":"e7327758d05976f6395847edcb6c490663aea4734a87f13fcea461a6cbea64f4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"de","translated":"Name","updated_at":"2026-07-05T21:00:37.724Z"} +{"cache_key":"e7eb8abfcf066f61cd61a054de848f7d4a80339cef386f1aacfd130c534fe513","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"de","translated":"Version","updated_at":"2026-07-10T09:46:52.972Z"} {"cache_key":"e84499843ca01f10623698a6f183340bb57f5a8f47f0088a38331c198eb8649c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"de","translated":"Artefakte","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"e8c9e2c6cfa86e6ce24cfaaefe3b5750cbfcf64fcf696acf46fe6f7732bd2b66","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewBlocked","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Blocked","text_hash":"18f2a0947f9d6523991b29b450307f22773f57d65f7efb98d48a167df04d6b1d","tgt_lang":"de","translated":"Blockiert","updated_at":"2026-06-17T14:13:07.391Z"} +{"cache_key":"e9af5df9900f5c441140e5440dd55d616671b29db5b7e57af4107509ea701b15","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"de","translated":"Erneut versuchen","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"ea59ba4468e1248a7a92997bdef429bbc8dbe1b81e39147b6f94c2f3065ba98b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"de","translated":"Noch keine Betreibernotizen.","updated_at":"2026-06-16T14:12:59.821Z"} +{"cache_key":"ea734955551c4f255f17d569274e4ea933151587662747839f0dc706c59e47f7","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"de","translated":"Commit-Hash wird kopiert","updated_at":"2026-07-10T09:46:52.972Z"} +{"cache_key":"eb9b444b5117160cca8b80ec719710129f2bc17069692aedc834d5d1fcc6a7a5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"de","translated":"Nicht verfügbar","updated_at":"2026-07-10T02:23:38.518Z"} {"cache_key":"ebfcfd028832ad46eca8a94be8ffa3bc5d9c149628466ec7b00128b4d2214393","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"de","translated":"{count} Abhängigkeiten sind erledigt.","updated_at":"2026-06-16T14:12:59.821Z"} {"cache_key":"ec62caa003f26e86dc12d41514c4d5d628cd708b741dd1af9879d184f0eb4615","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"de","translated":"Besucht nie","updated_at":"2026-07-09T20:51:25.542Z"} {"cache_key":"ec64311ae5ab0ea704733d9bf84f28f79d8c7fa641823ed9389c6f7d34accabd","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"de","translated":"Alle Sitzungen","updated_at":"2026-07-03T07:35:53.179Z"} +{"cache_key":"ec92c5c59cf5ecacee0ac30b0638e325a59955287fdff16ce0518fd4435d0fbf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"de","translated":"{name} wurde entfernt. Ein Neustart der Gateway ist erforderlich, um die Änderung anzuwenden.","updated_at":"2026-07-10T02:23:34.826Z"} {"cache_key":"ed4bd96174333fd6ecb7bcf16fca9b4d805b8aa6909d8f9595b40bcf9e762998","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.runDuration","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Run duration","text_hash":"b5e9698b25697ec71f0947df28e6b08438033fe73b1b87ac7362766d77b45b97","tgt_lang":"de","translated":"Laufzeit","updated_at":"2026-07-09T10:13:16.098Z"} {"cache_key":"edab01c21e26c06015644c52cad9963fe6a8230290cf9280533e117ded8e931e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"de","translated":"Aktualisiert: {time}","updated_at":"2026-06-16T14:12:53.111Z"} -{"cache_key":"ef4943a522596cdc0a3a30d6c2361ea921b22b2483ca488eaeced5787f059864","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"de","translated":"Stumm","updated_at":"2026-07-10T04:49:55.750Z"} +{"cache_key":"ee40bc9947c0bc036b4843aa56550116d624fe77f5cfe49c06dbf8fbca9ba841","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"de","translated":"Hinzufügen","updated_at":"2026-07-10T02:23:27.522Z"} +{"cache_key":"eee1a0b39fa1cbf97c6197fdd394e232f633134d29ebae422e6b81e95a0c5a82","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"de","translated":"Alle","updated_at":"2026-07-10T02:23:27.522Z"} +{"cache_key":"ef2bb097c6686d50c9820e931cab540d8ead56a850d10c3d545cb07c444e867a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"de","translated":"Verbinden Sie sich mit dem Gateway, um Plugins zu ändern.","updated_at":"2026-07-10T02:23:38.518Z"} {"cache_key":"ef4e64cffd801ff70f07e9687f2287929be680971221fe4020ba16f11e12dc2c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"de","translated":"Karten ohne expliziten Agenten.","updated_at":"2026-06-17T14:13:07.391Z"} {"cache_key":"ef68728e2d9dff3db226689c2a2d7f7006ac757eaf4617f7cf927440cd33d9ca","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"de","translated":"Nachweis","updated_at":"2026-06-16T14:12:53.111Z"} +{"cache_key":"ef966999f5373635ad176c439b9a8976e2d419d08c8cdc088ff7f3f8d9dd8694","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"de","translated":"MCP-Connectors mit einem Klick und kuratierte ClawHub-Suchen für beliebte Dienste.","updated_at":"2026-07-10T02:23:27.522Z"} +{"cache_key":"f0b9b5550564802cba0ca8c5f65a87df20ed040ecc35c678443a437262444537","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"de","translated":"Code-Plugin","updated_at":"2026-07-10T02:23:34.826Z"} +{"cache_key":"f0c9dc265addb47e896d59ed718bf217c47dbe59073eec98b8ca3c52a39e840b","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"de","translated":"Control UI","updated_at":"2026-07-10T09:46:52.972Z"} {"cache_key":"f10d5bba3ab04f80bcdf459535389c9936346ab286fbdf47662b062c8df7955a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"de","translated":"Empfindlichkeit","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"f1fe20d2b2f007ba9780ade70f3a3f0c080689e230e3c054f82a30e1e14a10b6","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"de","translated":"Tägliche Anbieterkosten","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"f284b749de40c0eaa0555cfd22732dc8d1ccd92937d363272a95e7e82d893527","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"de","translated":"Zuletzt aktiv","updated_at":"2026-07-05T21:00:37.724Z"} +{"cache_key":"f346b4766c7f207298ef7d800641a94cbf6f695dbe7bd12b3bab5dc60d79de9d","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"de","translated":"Erstellt","updated_at":"2026-07-10T09:46:52.972Z"} +{"cache_key":"f3bea05607638058ac521012701040ed1edb6e254f2590a2dab365aacdbfb002","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"de","translated":"Wird ausgeführt…","updated_at":"2026-07-10T04:28:12.658Z"} +{"cache_key":"f5478ab094f4691bb3e058a8725c926e8da9f9109334195def77669efb9a0c19","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"de","translated":"Commit-Hash konnte nicht kopiert werden","updated_at":"2026-07-10T09:46:52.972Z"} +{"cache_key":"f6589a457247f736192c22489615f394b9af5d13a53e6c0f9f35d70b9f457164","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"de","translated":"Geben Sie eine http(s)-URL oder eine Befehlszeile ein.","updated_at":"2026-07-10T02:23:31.507Z"} {"cache_key":"f6a4da531e49ab70c30ea50b25437a9bd8f6bbddad9d6b1e55d30f21b489387b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.restoreSession","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Restore session","text_hash":"35e4dc9befd3b3a29b50938839af0efb41b08051988dde53e1c1e73d1c2a039f","tgt_lang":"de","translated":"Sitzung wiederherstellen","updated_at":"2026-07-02T14:30:04.036Z"} {"cache_key":"f715083d23b1ef97ba627a3be48560a105a6f5d69f2d31ae4723665b31a0bb59","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"de","translated":"{agent} (nicht konfiguriert)","updated_at":"2026-06-17T14:13:07.391Z"} {"cache_key":"f8b9c85418169642438a234a9c66a06d4970c323c27ccdfc5a0fe57329b4bf69","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"de","translated":"{count} bereit","updated_at":"2026-06-16T14:12:59.821Z"} +{"cache_key":"f92456a7b3269f08cff00526c8c5f111ce0c8a16d3c2ff8dfd8cf08eea6f2d07","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"de","translated":"Kategorie","updated_at":"2026-07-10T04:28:12.658Z"} {"cache_key":"f9ec94bc46e4c0f48f6c5a2f33c176a7844d141a86719c562b3cbbea88c24815","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"de","translated":"{count} angezeigt","updated_at":"2026-06-16T14:13:06.672Z"} {"cache_key":"fa934f472f72f3e8e1547695730b2ba14bf1caed6478a0b84bc4a749c4070199","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"de","translated":"Fehlt","updated_at":"2026-06-16T14:12:59.821Z"} {"cache_key":"faf85338cb19d39f61dba62816d06a602d1f9816af199257cd6c19051fe21780","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"de","translated":"Kontextnutzung der Sitzung: {used} von {limit} ({pct} %)","updated_at":"2026-07-05T10:16:00.515Z"} {"cache_key":"fb19bb3ba5aaa28dec44d72fb231ac88572ccd727ed013804690d7d4f85deb16","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"de","translated":"Keine Aktivität","updated_at":"2026-07-05T14:39:38.809Z"} +{"cache_key":"fb64ec6d6816d3fc1ef56b1ee12e5f56f8cf6e322e34a4b941297a2b0c9a5bd9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"de","translated":"Plugin-Katalog","updated_at":"2026-07-10T02:23:23.316Z"} {"cache_key":"fb9c13805bc24c7ee0f7b8cd1d590dd7af0bf9a9e43369ecca558032c575264d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"de","translated":"Gruppe umbenennen…","updated_at":"2026-07-06T23:40:48.838Z"} +{"cache_key":"fbc8db8d164c1ffd9d9a9124575bd7ac4307724c93a118ee3c5ea3ea694853e1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"de","translated":"Entfernen","updated_at":"2026-07-10T02:23:34.826Z"} {"cache_key":"fc9073817f53d0a220d6c587eff69e6c2e3cdab8dca474cc5f8a2e5afc25d9b5","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"de","translated":"Tool-Fehler","updated_at":"2026-05-31T06:43:49.527Z"} {"cache_key":"fce2ba994a94d70b97d0f2b081cdba5b3f5ed7d89a703007c4195524d27daa5e","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"de","translated":"{count} Eingabe-Tokens","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"fd2213de632ad869774a013db1251b287fc853ce3f5973c425e6b35cd15caf08","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"de","translated":"Chat öffnen","updated_at":"2026-07-09T08:27:13.508Z"} -{"cache_key":"fe4694a14d1355da41e1638c0515a2926a36e87dd9becbada8380ec408959130","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"de","translated":"Rechts andocken","updated_at":"2026-07-10T06:07:51.892Z"} +{"cache_key":"fee179a7f86bc5032eb5264aaa1b5e645ffb7c3d83e2c6d67a5c23697b33cd5f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"de","translated":"Ein MCP-Server mit dem Namen „{name}“ existiert bereits.","updated_at":"2026-07-10T02:23:31.507Z"} {"cache_key":"ffde8715cf4bd732b8b134def0ec663cde72f60f8f2995791474662887074882","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.estimatedCost","source_path":"ui/src/i18n/locales/de.ts","src_lang":"en","text":"Est. cost","text_hash":"3199f14286736527bfc6ad9165629415a5aa087517acd2c0e9b1ae8bb5d26766","tgt_lang":"de","translated":"Geschätzte Kosten","updated_at":"2026-07-05T16:00:08.420Z"} diff --git a/ui/src/i18n/.i18n/es.meta.json b/ui/src/i18n/.i18n/es.meta.json index 7c93fd87adb4..56f640be21aa 100644 --- a/ui/src/i18n/.i18n/es.meta.json +++ b/ui/src/i18n/.i18n/es.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:25.947Z", + "generatedAt": "2026-07-10T09:46:56.279Z", "locale": "es", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/es.tm.jsonl b/ui/src/i18n/.i18n/es.tm.jsonl index eac3badd38a0..a3ff65ce0667 100644 --- a/ui/src/i18n/.i18n/es.tm.jsonl +++ b/ui/src/i18n/.i18n/es.tm.jsonl @@ -4,35 +4,48 @@ {"cache_key":"02c9e8c6218cf44b860cf6a78ebb6b0f30166cbd55160dbe101edf537379005d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"es","translated":"Espacio de trabajo: {workspace}","updated_at":"2026-06-16T14:14:11.215Z"} {"cache_key":"032120514bb78a15fb3669d3f79dee5836bb77fcc765a8c1f5a9b04b2e3250bb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"es","translated":"Sesión","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"040da9bcd71550c7205c11f2fdefc59a503daddcd9f97469927050f19310b70f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"es","translated":"Predeterminado del sistema","updated_at":"2026-07-06T17:33:38.433Z"} +{"cache_key":"0476422b3a77bcbb8cd66d81039f462f74dd8e461c7e69b8bcf665a1ebe94a59","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"es","translated":"Buscar en ClawHub","updated_at":"2026-07-10T02:23:41.883Z"} {"cache_key":"04ba0cf9164ead45bca8c7a21f5faa951ab570b095f7ecab344320fe0899c0c3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"es","translated":"Vista previa","updated_at":"2026-06-16T14:14:26.057Z"} {"cache_key":"070cb7b6cc19bbf9557f8c4d498fa0c8306694e65be6a89484b6faa72288c8e0","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"es","translated":"Restaura esta sesión para enviar mensajes.","updated_at":"2026-07-02T14:30:06.460Z"} {"cache_key":"07173ea5b8e203097ffbc78370a132e99ab22329f05b4e56535de78376e48408","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"es","translated":"Error al crear snapshot: {error}\n\n¿Eliminar sin snapshot?","updated_at":"2026-07-05T21:00:41.074Z"} {"cache_key":"084b9f479c4c7f2da970a6b60575559a17af68ea8e1472f083698463147fa75f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"es","translated":"Realtime Talk requiere acceso al micrófono del navegador.","updated_at":"2026-07-06T17:56:20.380Z"} +{"cache_key":"085f89e674fbf97e128ce1226a908203694ad040eeb365fbf2531e7d9272cadb","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"es","translated":"Versión del Gateway conectado","updated_at":"2026-07-10T09:46:56.274Z"} {"cache_key":"08a78342ecce6667decc80d2f8f3293d74eb070584d27576ffe80ecea0453cf4","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"es","translated":"{count} solicitudes","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"08d1fe3b65db13db5d96fef00cff4e80da96363a46511cf1f12459a866cf9677","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"es","translated":"Sesión","updated_at":"2026-06-16T14:14:17.778Z"} +{"cache_key":"08f5e5d9759c35d5a868d6f5282892e45c687a6792b726a47571dbd0da385c4f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"es","translated":"Conecta tu mundo","updated_at":"2026-07-10T02:23:45.985Z"} {"cache_key":"092d1d677e6f452e7bf4f5f254ff9f4de80de2885f41999566ae6a365835243d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"es","translated":"Archivadas","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"0b4aab4fa5ea6f55e0de55c8233ac024d83ed8130bb4c8154ca8d16a4e6afe83","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"es","translated":"latido {age}","updated_at":"2026-06-17T14:14:13.986Z"} {"cache_key":"0c0d3c51aa05a97375c8e39dc6e033c18094847ef750649baedff678006d1aaf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"es","translated":"bloqueado","updated_at":"2026-06-17T14:14:13.986Z"} +{"cache_key":"0cda6d4b0bef43660fcb9459d5b20b18cf2af88d93c4435d1758edb30567397b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"es","translated":"Herramientas","updated_at":"2026-07-10T02:23:49.859Z"} {"cache_key":"0d1a0386b12ad1087149c984a7fae482a6039461ed6b6a1e4dc9cd4724e011d1","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"es","translated":"Infracción de protocolo","updated_at":"2026-05-30T15:38:14.082Z"} {"cache_key":"0d30f6148058da2b584d26e92d41be87dcdd02b6e4d2a6f528b9d669d698e703","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"es","translated":"Contraer espacio de trabajo de la sesión","updated_at":"2026-06-16T14:14:17.778Z"} +{"cache_key":"0d76474d16088bd4eef028d465c13557e3c0189270d562765db202695668211a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"es","translated":"¿Eliminar este plugin?","updated_at":"2026-07-10T02:23:54.836Z"} {"cache_key":"0dcf7bbefa6a698ee1fb323ab743fed5ba5106e64c3e71d9160823b94181c769","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"es","translated":"Sin asignar (usa {agent})","updated_at":"2026-06-17T14:14:08.769Z"} {"cache_key":"0f49564c446ee95afd9ed8bb658ade934607fcd59f24e76f6b162d7a58c5353a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"es","translated":"Modelo","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"10a6c2b48d472fcdbadd49984e12207715854f99fce93f058791a02f866d7f73","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"es","translated":"Instalados","updated_at":"2026-07-10T02:23:41.883Z"} +{"cache_key":"1170652103d836db6f0fc530e7da52edfed9ab2b3136f9aa98e827e97725f51f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"es","translated":"Reconocer el riesgo e instalar","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"1177c1640569012774b3d9c19edac8e5d9169dfa27eb776599d18ae6847e1956","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"es","translated":"Renombrar grupo…","updated_at":"2026-07-06T23:40:50.932Z"} {"cache_key":"11c40df1f86868da011f5ce1384fbc45b726baef91effec1db1c19152e00d9a4","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"es","translated":"{count} tokens de entrada","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"11cd7738472caabd2b8c0d541fdb83c27a33513994f7219b7efbafd2f4dd1a44","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"es","translated":"Repositorio","updated_at":"2026-07-05T21:00:41.074Z"} +{"cache_key":"127ad536f0609591b8e18874105a9b7be4e7a7f68e1192523f71af192ccd5eba","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"es","translated":"Eliminar {name}","updated_at":"2026-07-10T02:23:54.836Z"} {"cache_key":"12b82b2cc44d0725cfecf38cfecd5669b63c279782bdaa2c551477a6db75842c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"es","translated":"Eliminar grupo…","updated_at":"2026-07-06T23:40:50.932Z"} {"cache_key":"13a74e79c18ebf8425496f4784d57dc48a34f9c3b092c8a0143a31c7fe512d1f","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"es","translated":"Error de herramienta","updated_at":"2026-05-31T06:43:51.095Z"} {"cache_key":"1413f554af6a832a652fac0e0277347524c2a7d9f3bb207879f1d75f2c249c9a","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"es","translated":"Categorías de coste","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"1482f6a413957a91eeb65c664229b28145f0edd16d1f5554da496c17283a2219","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"es","translated":"No se encontró el servidor MCP “{name}” en la configuración.","updated_at":"2026-07-10T02:23:49.860Z"} {"cache_key":"155ea7acf4ab1ca8bafbef77149c9d003908575f9c495c7031149db5a1359063","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"es","translated":"en línea","updated_at":"2026-07-09T10:01:43.721Z"} +{"cache_key":"15e8f9aba31f108ff2a859e0f48fe1879ac2fdb22720d2ffd6faa2f040e618eb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"es","translated":"Procesando…","updated_at":"2026-07-10T04:28:16.685Z"} {"cache_key":"1607b905341a2f410b56987930eb556121bddd0fe25ebc52fbebaa708fed9fd9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"es","translated":"Comando","updated_at":"2026-06-16T14:14:26.057Z"} {"cache_key":"174cd7d2144b65b2b908a8d92c39b7b304fbd74dfcfbc018e3d9bfe039d35e9d","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitRight","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Split right","text_hash":"aa9997bb1d8c23d0b88521c4093fc8c3ee01b187f78635ae4d3e16d27e8a8475","tgt_lang":"es","translated":"Dividir a la derecha","updated_at":"2026-07-06T07:23:22.549Z"} {"cache_key":"176682877ecde3fb89aac59f0c17dfb38479d7f1a91256b9fb17aabe49307c65","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"es","translated":"Ninguna sesión de este host coincide con tu búsqueda.","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"176d49c8a5b920df5b74bf73bad328b3e3a6c4f5c8f3be0f51088b5958aaae4e","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"es","translated":"Ventana de contexto","updated_at":"2026-07-05T10:16:02.806Z"} {"cache_key":"195ea02a71cf205ef7b728b82e45cca30efce24d894c153db80d69b34fd5b083","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"es","translated":"Completadas recientemente","updated_at":"2026-06-17T14:14:08.769Z"} +{"cache_key":"19a7ace66ef92bef1ec0feb47e89a230e3c08055909132ae5005cf203fbe5afd","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"es","translated":"Copiando hash del commit","updated_at":"2026-07-10T09:46:56.274Z"} {"cache_key":"19db5b13584b1cb9f7836ee8770c94c3bee22775a8885c5171dd2f69232e62c8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.badge","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Expired","text_hash":"424a2551d356754c882d04ac16c63e6b50b80b159549d23231001f629455756e","tgt_lang":"es","translated":"Caducado","updated_at":"2026-07-01T10:31:44.118Z"} {"cache_key":"19f05bbf3278fdc746db244f7d233bc2cd7bd93af28afcf16ad0e33e8a282451","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"es","translated":"Servidores MCP, autenticación, herramientas y diagnósticos.","updated_at":"2026-05-31T05:36:36.332Z"} {"cache_key":"1b0ae7d48c504c855b459dfd8626f0fc87e7f5b4fed9667ea6e4b88e49276a9b","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"es","translated":"{count} tokens de salida","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"1b2b3f0195e703670c22e1d938cd99b911f85ceff291d410e9163cfdd8ba4462","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"es","translated":"En ejecución","updated_at":"2026-06-17T14:14:08.769Z"} +{"cache_key":"1b795092d9ec51a0e15dd0e2918681ec32300ceca1a1954e4499a26364439d6e","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"es","translated":"Actualizar","updated_at":"2026-07-09T10:01:43.721Z"} +{"cache_key":"1bb9166c8ab3e3918808d0dfe68c917e569852738f01fc7f0a11db631184af26","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"es","translated":"Trabajo y productividad","updated_at":"2026-07-10T05:22:04.319Z"} {"cache_key":"1bd16ecc994f48b5d2d05fe3221bcf98d15de7167e993cfbd8a3b5d7e6815b23","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"es","translated":"{count} sesión","updated_at":"2026-07-05T14:39:41.363Z"} {"cache_key":"1bda1fb6186f43d9a1ffdf309c9da7e9d27ae490c1e4e720b0f43c146adfdd65","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"es","translated":"{agent} (predeterminado)","updated_at":"2026-06-17T14:14:08.769Z"} {"cache_key":"1bfd871140f7c904944629f72952d209454be9d95bb120557ab8f71e5385f3b4","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"es","translated":"Filtro de archivado de sesiones","updated_at":"2026-07-09T10:01:43.721Z"} @@ -40,81 +53,127 @@ {"cache_key":"1d07372859d64bc8fe665899128ca8e80311e454f99412023c6d15a49fa53bc9","model":"gpt-5.5","provider":"openai","segment_id":"connection.offlineHint","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Live updates and actions are paused until the connection returns.","text_hash":"7a60105cdafb6aa95b9081a370308a9ccd495199c9bfb90d3e0f70af68680f26","tgt_lang":"es","translated":"Las actualizaciones en vivo y las acciones están pausadas hasta que se restablezca la conexión.","updated_at":"2026-07-05T21:55:14.304Z"} {"cache_key":"1dddab56566c4b3500eb371deead8093360c4074b4c22c9fa850b1fbd5805baf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"es","translated":"30s","updated_at":"2026-06-17T14:14:13.986Z"} {"cache_key":"1e4031da1660de10f824c3c64f7e7efeefd3d05c8ff122980a1dfb1a7b81ec4a","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"es","translated":"Visitas de la langosta","updated_at":"2026-07-09T20:51:27.407Z"} +{"cache_key":"1ed5ab90c0ba16e10a50aa2a998ff993bfe5dbeaf9bc1ad7b0a5876f9ade8594","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"es","translated":"Ver detalles","updated_at":"2026-06-16T14:14:11.214Z"} +{"cache_key":"1f153c9b3f6b877deedb32a2e6c552d77f8b5379e9ae4bc76865c16a5a6782ad","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"es","translated":"Buscar plugins","updated_at":"2026-07-10T02:23:41.883Z"} +{"cache_key":"1fe0fe171c1b69063d83e3ed3febcc3482461a997148bbda65fb83b9d774704f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"es","translated":"Conecta servidores Model Context Protocol para dar herramientas adicionales a tu agente. Los cambios se aplican a las nuevas sesiones del agente.","updated_at":"2026-07-10T02:23:49.859Z"} +{"cache_key":"2025b549f4433bfe49d787b47bd70854ced085958191c918965ba80d21e4d687","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"es","translated":"Filtrar plugins instalados","updated_at":"2026-07-10T02:23:45.986Z"} +{"cache_key":"204231e10a792df607f0359b3d97dabb10f7c3f0936e0763156b96ab7d66efe2","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"es","translated":"Detalles de compilación de Control UI","updated_at":"2026-07-10T09:46:56.274Z"} {"cache_key":"20ca650bcae7ae2159f713730e43ae104969a0c6608b9de32c1ca16a5f9d629d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"es","translated":"Cambiar nombre de la sesión","updated_at":"2026-07-02T14:30:06.460Z"} +{"cache_key":"20f26212e69073ce9d06dd63640afa3f757acb6ec34819509a7ac797ae9309c8","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"es","translated":"Versión","updated_at":"2026-07-10T09:46:56.274Z"} +{"cache_key":"2101d54ea26b3a5bab82c32d46a2d0e94beadad6ff28325f27a92a9f1484880a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"es","translated":"Revisa la advertencia de ClawHub antes de instalar este plugin.","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"216ce4d3223dec0c5106670964de1b78d32829c2cf0c4624efc737c27e2d0d52","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"es","translated":"Avisar al despachador","updated_at":"2026-05-30T15:38:14.082Z"} {"cache_key":"21e3730083c4c55059de1624288d99482bb69512b28c26b6837edc7c02bfa718","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"es","translated":"Obsoletas","updated_at":"2026-06-17T14:14:08.769Z"} {"cache_key":"22fd3e5a68268e14c9117dbbf5d867648ae27a962b2ccfef631549625894b085","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"es","translated":"Acciones","updated_at":"2026-07-05T21:00:41.074Z"} +{"cache_key":"2495b0e3a8622be5e4de8ba18f0a110071dade429c4365fe601853ee45f4a7fa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"es","translated":"{name} deshabilitado. Se requiere reiniciar el Gateway para aplicar el cambio.","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"24a6de859b0956a90013999bf3dba224d13e795496ea46fae64faed2a199e17a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"es","translated":"Actualizar espacio de trabajo de la sesión","updated_at":"2026-06-16T14:14:17.778Z"} {"cache_key":"27fa89c61adc150babc3ded34fdb5864d9ae99d19226958fe7ea11b563e69377","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"es","translated":"Resumen del espacio de trabajo de la sesión","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"281de1f08f7ffcc6bc6630d03ef286c0cf2829948a543784a777fb04b7bbbf32","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"es","translated":"Abrir en el navegador predeterminado","updated_at":"2026-07-09T11:02:44.131Z"} {"cache_key":"281e153d782e5cddfb08ab96830e0df2c057cac4b6ed26c0240247b35b39e675","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"es","translated":"Ejecución","updated_at":"2026-06-16T14:14:11.214Z"} +{"cache_key":"28d4c154f56e560f3777b6787cde34d07a0af21dcfe8d06e2f30b59e89536280","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"es","translated":"{name} instalado.","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"28efd5a5c5097dcce4c549ae1e7442aa3876a4e8d3aa1874ce8755424ea9ce29","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"es","translated":"Voz","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"29df215094fc34f10c62e91a760ce0257d4d83a7ab52fc0e2b36ab8d172efcea","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityLow","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Low","text_hash":"f793de205ead5ac302c4a1627829dea41f176b1068b993a32373fc869918374b","tgt_lang":"es","translated":"Baja","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"2a012c591d333084582c46cc398feeede030ea25732055969a1d483852973cb5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"es","translated":"No hay plugins opcionales instalados","updated_at":"2026-07-10T02:23:45.986Z"} {"cache_key":"2a12488d59c8ed57ec0d57bacf354486376a131687975f7866c863a04cfcd6b5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"es","translated":"Mantener los comentarios después de la respuesta final","updated_at":"2026-07-01T01:06:39.912Z"} +{"cache_key":"2a4df890a2abe43c5128a6465921bfc92e485c97d5d4adf41c8dd0fb448d7b61","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"es","translated":"Cancelar","updated_at":"2026-07-10T02:23:54.836Z"} {"cache_key":"2ae1a8e67f838b9a5da301337b642c6bf8e50433b10ad45492a08a7dd9616333","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"es","translated":"Conexiones","updated_at":"2026-07-09T08:07:50.866Z"} +{"cache_key":"2b23f778ab96e19b51dda5f2f8d53d357f858d7eb0ce5b9da4ed5bab248c6970","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"es","translated":"Desactivado","updated_at":"2026-07-10T02:23:54.836Z"} {"cache_key":"2bc6ac4dce823273f77abe66c28e3e51e6d814f2ee44d288d3f55ef35a4e5656","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"es","translated":"Usar el chat actual","updated_at":"2026-06-16T14:14:11.214Z"} {"cache_key":"2d229bb1b81af2d36e6535903c07831481a1b93271cb2a72d6a7a12d025137dc","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"es","translated":"Nuevo grupo…","updated_at":"2026-07-05T14:39:41.363Z"} -{"cache_key":"2e366f49277d1b2dec941ec61d1b3ba7c68fe07fec0ef27d25bf84e5216fed8c","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"es","translated":"Buscar","updated_at":"2026-07-10T06:07:58.657Z"} {"cache_key":"2e556b8626e4d46a49b95669fc958aea41b6bcb51dbfb1d50dbf5373f091312a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"es","translated":"Activas","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"2f4f2a0214786fc1896ef02c6581830f32936e2b4077476e945d6cabff7cc47a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"es","translated":"Mostrar solo las sesiones archivadas.","updated_at":"2026-07-02T14:30:06.460Z"} {"cache_key":"2f707cdc5fe0e4fc554806b712d898b35b2b1325ca6aebddfde0a0aee28905f8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"es","translated":"{count} listas","updated_at":"2026-06-16T14:14:17.778Z"} -{"cache_key":"304473d85c24be8c69405c31e288512c7fec77c600000f5f43be852ab8af192e","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"es","translated":"Lobsterdex","updated_at":"2026-07-09T23:55:48.539Z"} +{"cache_key":"2f984937b67518533769eb73532c72097e7b4797aecb111911cc19952fbbe5a2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"es","translated":"Todos","updated_at":"2026-07-10T02:23:45.986Z"} +{"cache_key":"2f9b1e093499dd5121c7f03d1f3e8a4de30f871ae207e1ba3ec5e6d678a4ab89","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"es","translated":"No disponible","updated_at":"2026-07-10T02:23:58.471Z"} +{"cache_key":"3049788fa978235a1bd39742715c436f08990601c88f60634e236dad5c7257b9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"es","translated":"Incluido","updated_at":"2026-07-10T02:23:54.836Z"} {"cache_key":"30934b4ae099ddda1d297ca871fb752e63f1606ac20f87b5a0a68d470aa1204b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"es","translated":"Automatización","updated_at":"2026-06-16T14:14:11.215Z"} +{"cache_key":"3262206c5ff969b372bd8e62ddb35c544f5b61db9d030c72aee81b71227a7bef","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"es","translated":"Conéctate al Gateway para cambiar plugins.","updated_at":"2026-07-10T02:23:58.471Z"} +{"cache_key":"330d0b7c7c55a0a0fb044f4ccacdd24d42534ef0f7627c8b647a4028e8c0a0b8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"es","translated":"Configuración","updated_at":"2026-07-10T02:23:54.836Z"} +{"cache_key":"334cfb54f716c266a23ce7d84b9a9426af714fff123ee6dfad987490f17240e9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"es","translated":"De ClawHub","updated_at":"2026-07-10T04:28:16.685Z"} {"cache_key":"345358e0962f203fa5c2148974e39697ea65be312eb2bff156c93da1298914b7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"es","translated":"Cargando espacio de trabajo de la sesión…","updated_at":"2026-06-16T14:14:17.778Z"} {"cache_key":"3458a965443880c3ec6ce5cec1587d67743132e671babad60d93ac4dc8d1f8af","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"es","translated":"Hoy","updated_at":"2026-07-05T14:39:41.363Z"} -{"cache_key":"34c770d3a645f4e6c7b15ecb694ddf75c0b5456a305fc8502c40bb9387f3043e","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"es","translated":"Acoplar en la parte inferior","updated_at":"2026-07-10T06:07:58.657Z"} {"cache_key":"35228e3b8dbb2adea8538a82d3ac77df66528dac552b0ad98d1fac14dea3f7ec","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"es","translated":"{parent} (faltante)","updated_at":"2026-06-16T14:14:17.778Z"} {"cache_key":"35829851417569b0f52b1faa168d56f9819e1a29ea64250480c2cf5d2770bd34","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"es","translated":"Abrir en la barra lateral","updated_at":"2026-07-09T11:02:44.131Z"} +{"cache_key":"35d859ce1576d68d1bfff685c0ce41b808bd1847c2b69d162441ab2b74bfac7e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"es","translated":"Buscar plugins","updated_at":"2026-07-10T02:23:41.883Z"} {"cache_key":"35e16ca9765010a0c640e81bfa001ed199028283a4470cf2c9225204d969b0e1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"es","translated":"{count}h","updated_at":"2026-06-17T14:14:13.986Z"} {"cache_key":"3619dd405efa98f6ed255b69d2279c4fdc0c195e745a506595417e22b9ad1c2a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"es","translated":"Archivada","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"363ef018abed6976a78d031b2449f29d082aae2cc338a86617e712f6f0fc7c0f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"es","translated":"Actualizado {time}","updated_at":"2026-06-17T14:14:13.986Z"} +{"cache_key":"36766570225e6b05087a2fd3c068677ff318b79ec9dbcfafcf9ad657404ec861","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"es","translated":"Activar","updated_at":"2026-07-10T04:28:16.685Z"} +{"cache_key":"368f895f297134a220c148e09ca5aa8f7ff8d093419d9fc7c0f2d41226a2f5f8","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"es","translated":"Instala y gestiona capacidades opcionales.","updated_at":"2026-07-10T02:23:41.883Z"} +{"cache_key":"36f7ce30ae9fac63f7ceb7a2461640d991da5b426bead9b0d34546c5465f0d05","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"es","translated":"No se pudo actualizar la configuración de Control UI: {error}","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"3710031a23a0b8a7d53ea9caa9d26ee67e1dbb4b1bee9eee628cb055e9d2f478","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.closePane","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Close pane","text_hash":"7fa0f9613d919e167b0f9aa03c22809d446af293eb6c3bac6866bae66d2656c9","tgt_lang":"es","translated":"Cerrar panel","updated_at":"2026-07-06T07:23:22.549Z"} {"cache_key":"379f129fa0265e870df00181ff9ada6682d2e603f4c21ff31b5fabd984d4c5c4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"es","translated":"15s","updated_at":"2026-06-17T14:14:13.986Z"} {"cache_key":"37c0e1fbbd646ebfc1a08eae342e6c97f8c16302bb7086a7f12956246a9849bc","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"es","translated":"Checkouts de repositorios aislados propiedad de OpenClaw.","updated_at":"2026-07-05T21:00:41.074Z"} +{"cache_key":"37ca68eae271f765ca9e2a58bc5bb08941beb7320a80c4627479db93dba25832","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"es","translated":"No hay coincidencias para descubrir","updated_at":"2026-07-10T02:23:41.883Z"} {"cache_key":"37cf0df35a3bdb11995ed17569da7e4fbc15caf8cafd126935ffa037b426d25f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"es","translated":"Ejecuta /pair qr de nuevo para generar un código de configuración nuevo.","updated_at":"2026-07-01T10:31:44.118Z"} {"cache_key":"381dcb78d63ba4cae255fbe68c51eaa17858be9312c29efcfa388417673f96b9","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"es","translated":"Acciones del enlace","updated_at":"2026-07-09T11:02:44.131Z"} +{"cache_key":"397be58716addde3ee3f9b8cad7656ab37fd75e85e1937e558288cb8b3901b53","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"es","translated":"Descubrir","updated_at":"2026-07-10T02:23:41.883Z"} {"cache_key":"399e7686725b4e7b36f51a078df765ee251cd0a5308624d8345b1337ce07e5df","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"es","translated":"Cargando sesiones de Codex…","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"3a1660cddd64db2ad0b071bf8b4ab6eafe91db10fbefb185e7e73377b5057c07","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"es","translated":"Tarea de Gateway","updated_at":"2026-06-16T14:14:11.214Z"} +{"cache_key":"3aef43e46bd842e04e6d9108cdd1fc8f37883336a8b6a6dae4dcd319e07bf063","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"es","translated":"Habilitar {name}","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"3af2820713cf1dbb5574caf424b787f2c6a5aa06960cc8751f8f54fd3b6f5bd4","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"es","translated":"{count} adjuntos","updated_at":"2026-05-30T15:38:14.082Z"} {"cache_key":"3c5ac741e74362ca1b1e8e258dcb0bbdc3b256f00b9269583a37ce16f925c2cd","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"es","translated":"Agrupar por","updated_at":"2026-07-05T14:39:41.363Z"} +{"cache_key":"3ca408aac35c50b23fb29ddd5bf7cd3d7b719c8cd06d9d29e25952d9257da507","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"es","translated":"Instalados","updated_at":"2026-07-10T02:23:45.986Z"} {"cache_key":"3d8de598ed923dd990931b28597b09c4b90e34ede93b278bfc0b8738d96acecf","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"es","translated":"No hay worktrees administrados.","updated_at":"2026-07-05T21:00:41.074Z"} {"cache_key":"3e4d926e9f4b6eb6080f086fb86a66e79a3bb697be3d70a1e311d161969bc745","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"es","translated":"listo sin asignar","updated_at":"2026-06-17T14:14:13.986Z"} +{"cache_key":"3e5e820262d46f0b49be52d26ae90fd78c01560aeb1b070da66286061cd70fa8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"es","translated":"Se añadió {name}. Actualiza el endpoint y las credenciales en la configuración de MCP antes de usarlo.","updated_at":"2026-07-10T02:23:45.986Z"} {"cache_key":"400e47efdc82749367ea91e38bf4d886d23cf339df61b4f54251c7e088ae4716","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.open","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Open split view","text_hash":"51e50f7be73433216ae62f58fdbc586372f5a6063ee9978cec96793ef75fa554","tgt_lang":"es","translated":"Abrir vista dividida","updated_at":"2026-07-06T07:23:22.549Z"} +{"cache_key":"400e7db73525da12653a28b4d07f2129a4c8c5c19adbb93f7a1ee5307bbd527f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"es","translated":"Eliminar","updated_at":"2026-07-10T02:23:54.836Z"} {"cache_key":"4034ced2fac74a2f1d94f4221365ccbb957526dac319af0cb197ff91fc942403","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"es","translated":"Densidad de tarjeta compacta","updated_at":"2026-06-17T14:14:08.769Z"} +{"cache_key":"412f90837e8f96dbe07a8df8871affa05bf0836f02aa1bea5f4421886a81394e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"es","translated":"Instalando…","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"41e03e51bb95d1aceaa9cd242e859b21450d99f79f51b4ef9d7b030f27b74f98","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"es","translated":"Faltante","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"43b2cd0daccc1db6ffe7b15f6daecfbee417bd557675a54b5a7e9d406edd3c8b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"es","translated":"{count} tarjetas","updated_at":"2026-06-17T14:14:08.769Z"} +{"cache_key":"4494c30d9fbb0db222b77a7cddbae4e8a89abfab134d454a5f3467c2ea6e40df","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"es","translated":"Instalar","updated_at":"2026-07-10T02:23:58.471Z"} +{"cache_key":"453ecd6b8090161e3c1694abb818149f7f3f84db5662e4cbdd00bb56314ab77a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"es","translated":"{name} añadido. Las nuevas sesiones de agente pueden usarlo de inmediato.","updated_at":"2026-07-10T05:22:04.319Z"} {"cache_key":"4552e65a026cec6cada93d7b70f68514073fc1d9acbd46b5f8d280abd6ee271d","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"es","translated":"Programador","updated_at":"2026-07-09T21:53:11.370Z"} {"cache_key":"46ee57eb3c2668b808861693500810ebfdd262dc37308e52396ed2c1580080c3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"es","translated":"Espacio de trabajo de la sesión","updated_at":"2026-06-16T14:14:17.778Z"} {"cache_key":"46f4952aca185d7d29c5ddfb362a8468caf8c703ecf115a94b54504c32e7a7d9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"es","translated":"Agrega una decisión, un bloqueo o una nota de prueba...","updated_at":"2026-06-16T14:14:17.778Z"} +{"cache_key":"4748d5ccf6987896db4f185e22bab28ad8661b3ed40ae3013942cc808c276597","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"es","translated":"Servidores MCP","updated_at":"2026-07-10T02:23:49.859Z"} {"cache_key":"48926d2c55abc46a3e706bf859af4e412fa70fcd67dfa9b736a28a3cba879c70","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"es","translated":"Volver a la aplicación","updated_at":"2026-07-09T08:07:50.866Z"} {"cache_key":"4a8fd4b402691b3ffc7a955dbb3aa40d99d7349fec0b948f347426a5560525ba","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"es","translated":"Faltante","updated_at":"2026-06-16T14:14:17.778Z"} +{"cache_key":"4acf57baccbf80372f374fc34b90f4201d3227d828b3744239ec376e324d40be","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"es","translated":"Espacio de trabajo","updated_at":"2026-06-16T14:14:17.778Z"} +{"cache_key":"4adebca7e71ac6443c8d98496b29bbed28fa840f42039981ee3fdda477dc7a6a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"es","translated":"Explorar ClawHub","updated_at":"2026-07-10T02:23:41.883Z"} {"cache_key":"4dd1bfce3ebedb8bc85187ac13fa74ab7bd0b90aec567a2d9f7620cbb176f00c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"es","translated":"{count} dependencias están completadas.","updated_at":"2026-06-16T14:14:17.778Z"} +{"cache_key":"4e054f22feab32cb254cec192c79487b2d766c007647a0fd90c73f01305c8cb5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"es","translated":"ID de plugin","updated_at":"2026-07-10T04:28:16.685Z"} {"cache_key":"4e389db5f9e56a451f9fd7fd0101cf33369669df718a09ee9cb5c208db4599e8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"es","translated":"Diagnósticos","updated_at":"2026-06-16T14:14:11.214Z"} {"cache_key":"4ea5db418d72645e09fb30cdfc3332a218f408c26317542ec7c1ec3076016463","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"es","translated":"Esta semana","updated_at":"2026-07-05T14:39:41.363Z"} {"cache_key":"4efaface250d3700306cc2271c1f2c50dce9af442eabaeac0bca420261aacf23","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"es","translated":"Tablero: {board}","updated_at":"2026-06-16T14:14:11.215Z"} {"cache_key":"51393930b033f6a7a118fcc23fca6d247bf5c89c0d71c9366dde265e4b8a6630","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"es","translated":"Usar el chat actual para las solicitudes de revisión","updated_at":"2026-06-16T14:14:11.214Z"} {"cache_key":"51d0fe0c003bc4f1c282463c6e237c6fa411e90d0dc6046e0a57014bce6af45f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewAll","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"All cards","text_hash":"2306120917506b5998ec702f3661068b102dac538ba4c9e4634d65fe33eea98a","tgt_lang":"es","translated":"Todas las tarjetas","updated_at":"2026-06-17T14:14:08.769Z"} +{"cache_key":"52ca84e708af815978aa46b4246c8abb20455ef53c349b453e4f06dfdf8684f9","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"es","translated":"No disponible","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"52f4785547a4c980defe45a627dceadc9312ba45e67d8cb84a499481cc3a310b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"es","translated":"sesiones","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"5374b6991e3457597aa34c1ac94740da287f12cb2241f61c42acbfee762a8997","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"es","translated":"Artefactos","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"53a39119b041c8b526ef9cf2fae89094f1299c8f5e3772df4dab61042c3f4518","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"es","translated":"Comentarios","updated_at":"2026-07-01T01:06:39.912Z"} +{"cache_key":"543255d84ef40a7e88345edb369098f2f55eeeb8853687b7ad2da8af895c4e06","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"es","translated":"Origen","updated_at":"2026-07-10T04:28:16.685Z"} +{"cache_key":"55aca2f3055990c3e8b67b1ef299675503a8e64cff09e68ee59041d72a0a9e85","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"es","translated":"Plugin de código","updated_at":"2026-07-10T02:23:54.836Z"} +{"cache_key":"55e5740315011a6b599298eb8c5117384057048ab084dd79caefd6041254df91","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"es","translated":"Fuente verificada","updated_at":"2026-07-10T02:23:54.836Z"} {"cache_key":"58020a74f665c649c802f71d76b737c7d876b96fd95acbe932a5a73db85a1a6d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"es","translated":"Sin comprobante","updated_at":"2026-06-17T14:14:08.769Z"} +{"cache_key":"582abe8d8ea4bce2a6cec00a922fb9882cda5ca80e39a40bf0e2b0e86f73f297","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"es","translated":"Eliminando…","updated_at":"2026-07-10T02:23:54.836Z"} {"cache_key":"588ab1c4ee329b81f9897cba16b842a7cdf4776f13c7c76ce7bb42700079d13a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"es","translated":"Almacenada","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"58b56df0e7f1a4fec344a868b271d3e6c8777a6f2ed5ea7057b93307b3be58d7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"es","translated":"No hay sesiones activas en este host.","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"593e5d5658cf1f4ac2f5b0f961ae394e4f1a6027b3b83ba9182ee28b320bc63e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"es","translated":"Grupo","updated_at":"2026-07-05T14:39:41.363Z"} {"cache_key":"5a799524714067d8ca884d671a6618c268ecc1054cc3e362557cc7a9a7668b95","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"es","translated":"La entrada de voz en tiempo real requiere acceso al micrófono del navegador.","updated_at":"2026-07-06T22:41:58.888Z"} {"cache_key":"5b84b909827f179e73a5b5c4684712492c397bdc35d50482ce1e2b270c5a7892","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"es","translated":"{count} días","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"5c9c0c4d6b02004b5062fee3e6f30ef48fb7a52f2c04c39a0338662a62e8acbb","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"es","translated":"Copiar enlace","updated_at":"2026-07-09T11:02:44.131Z"} +{"cache_key":"5d1b4108efefcbfe4d1110e3c82245690cf82b5ebc17cc43a688702a9b209793","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"es","translated":"Problemas","updated_at":"2026-07-10T02:23:45.986Z"} {"cache_key":"5d3b656957833268e13752ae570040470f719d92fc1d45948503ac0bf86e3eef","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"es","translated":"intentos fallidos","updated_at":"2026-06-17T14:14:13.986Z"} +{"cache_key":"5d5574070c03950c978a8714ee4abf50a66fdd6c776a0cd07787ebd347e7eeb9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"es","translated":"Buscar en ClawHub","updated_at":"2026-07-10T02:23:45.986Z"} {"cache_key":"5d964babaa27481505821df551bcaf5932e299b3b31235eeaecf692d6e67f776","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"es","translated":"Sin agrupar","updated_at":"2026-07-05T14:39:41.363Z"} {"cache_key":"5dca5fa9990e4ff6485c657fcf79d3f98e896854c281835664ed91bb6698f46b","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"es","translated":"Dividir","updated_at":"2026-07-06T22:56:19.249Z"} {"cache_key":"5fa5f353c2dd6b0a8085e1f7e44c161a8ce5765c6cfea51dd771218c6123ce2f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"es","translated":"Tenant: {tenant}","updated_at":"2026-06-16T14:14:11.215Z"} {"cache_key":"5fe573377ed25df9669347027c35a0370b7802be55943f7af293eeff86acf347","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"es","translated":"{percent}% del contexto usado ({used} / {context} tokens)","updated_at":"2026-07-09T07:06:15.991Z"} +{"cache_key":"600e5c7b2f832e6d77ebfb4a89bd111329fba81165b9fa99ada4abeaa31a4830","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"es","translated":"Oficial","updated_at":"2026-07-10T02:23:54.836Z"} +{"cache_key":"60291fee8a0b1a9cc3257822164d96e0b4bc727a6d4f002e573f6e3cbd315044","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"es","translated":"Identidad integrada cuando se compiló este artefacto del navegador.","updated_at":"2026-07-10T09:46:56.274Z"} {"cache_key":"60a8bfa89026989e6a4bc79e4b7094af5910881bf1b554adf36142e19535951a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"es","translated":"5s","updated_at":"2026-06-17T14:14:13.986Z"} +{"cache_key":"60daa5ba6299436ab1261d676963db2337b9958be28c83f7c1de9f987d0861b7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"es","translated":"Activado","updated_at":"2026-07-10T02:23:54.836Z"} {"cache_key":"618a589f34990673e9d3eddf322bbd5d18841f3510743957f09b5c059b79f04e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"es","translated":"Actualizado: {time}","updated_at":"2026-06-16T14:14:11.215Z"} {"cache_key":"638f785585a948488de48c7721f1f1a6563599ba6a4eee45cb44cd665b8ee1c8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"es","translated":"Tipo","updated_at":"2026-07-05T14:39:41.363Z"} +{"cache_key":"63e8af8c558014d85655332a0d047b6a1318dbc95c074babe1d6e4cfc855e2bf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"es","translated":"Memoria","updated_at":"2026-07-10T02:23:49.859Z"} +{"cache_key":"648b82c9d3b1099da6012fe75ea625cc07808d201ba00096c3d6e73800d21ebd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"es","translated":"Programación e infraestructura","updated_at":"2026-07-10T05:22:04.319Z"} {"cache_key":"6507260f0e6299cf81dbdbc2207ca6ac8e8f6f178284325722ab7eb267c75f0b","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"es","translated":"Todas las sesiones","updated_at":"2026-07-03T07:37:29.859Z"} +{"cache_key":"654f9316fd9b8fd3353e79821c15ced6a922c434b4d82a31cbb19a97043f5983","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"es","translated":"Hogar y multimedia","updated_at":"2026-07-10T05:22:04.319Z"} {"cache_key":"6552ad08e2cac767225bb20bc1091481668d39d18df482e6e4aa952247451718","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"es","translated":"Restaurable","updated_at":"2026-07-05T21:00:41.074Z"} {"cache_key":"658bdf8e20bad39e0bd431df41f0e45779c82e3821f9e5bae6c005192175a8f7","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"es","translated":"Este navegador no puede listar las entradas de micrófono.","updated_at":"2026-07-06T17:56:20.380Z"} +{"cache_key":"6796e986c62f70ca1ad60c0540dc0f88d5387e50980efc6646a918dbc65a9eac","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"es","translated":"Añadido","updated_at":"2026-07-10T02:23:45.986Z"} {"cache_key":"67ea176e49964d7682225cb2c1ee55d5d6c5792aa048c59f537d19758c378efd","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"es","translated":"Buscar sesiones de Codex","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"684bfd46d3f0d335e35af24a669e7bb09204edb82b2384b981934fa7a5351b0a","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"es","translated":"Última actualización","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"685afd107c6ec6a6b264f726716f912bee667ec63b5977e6e035060679b0db49","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"es","translated":"Abrir detalles de uso del contexto","updated_at":"2026-07-05T10:16:02.806Z"} @@ -132,9 +191,10 @@ {"cache_key":"6f13aa82fec1312b440a33f2fbaaf977fa7c86b6c48a78d77f498f1d6e7226f8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"es","translated":"Buscar archivos","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"6f62f7636946409dac22df794e16efaf8eb2683fa74603677bc0d28e28968495","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"es","translated":"Fijar sesión","updated_at":"2026-07-02T14:30:06.460Z"} {"cache_key":"70866a4841553686893ce638e42e9dff86eb5cb343631f05ac962371d1eefefe","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"es","translated":"Fecha","updated_at":"2026-07-05T14:39:41.363Z"} -{"cache_key":"711616f1e11e80eb11ec1f51a64039f911e6ee023a5c58a3e264cdb1882208e7","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"es","translated":"Acoplar a la derecha","updated_at":"2026-07-10T06:07:58.657Z"} +{"cache_key":"70b9106fa564cf4dd1be7424c991a112ae395db4a37c7a10cc79ad0d550094be","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"es","translated":"Servidores MCP","updated_at":"2026-07-10T02:23:49.859Z"} {"cache_key":"713325192a8d93eddc1a0414d99dd61043f4dddf39e0ec5a9f769001b45e1919","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"es","translated":"{count} registros de worker","updated_at":"2026-05-30T15:38:14.082Z"} {"cache_key":"722c96fd9aa2288e3d5204d823891daea3c549597bac44865e44beaf866cf6fb","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"es","translated":"Nunca visita","updated_at":"2026-07-09T20:51:27.407Z"} +{"cache_key":"728e3c88747755d96916427c7a0917f88dc162f7cc2621361d3bc7082ae0a43b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"es","translated":"Ningún plugin instalado coincide","updated_at":"2026-07-10T02:23:45.986Z"} {"cache_key":"73cbb9c33e156f3612c04b8aa5128a565a13994eae9701fd4bb566dd5b2872e6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"es","translated":"Buscar títulos de sesiones","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"741afaad6e1cf9bde0a230015cae4918b6ca365d8742fc31daef6e6875216bef","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"es","translated":"Estado del tablero","updated_at":"2026-06-17T14:14:13.986Z"} {"cache_key":"742446ab0003add2bd94e32b2091fdfe6dfbbe138f7205a5383bd1692bad2ac5","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"es","translated":"Gateway","updated_at":"2026-07-09T10:01:43.721Z"} @@ -142,6 +202,7 @@ {"cache_key":"77598c7cf6d5f810e0a105f73e7b780e7bb1fb5b2126d0b97f62d724afa17008","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.runDuration","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Run duration","text_hash":"b5e9698b25697ec71f0947df28e6b08438033fe73b1b87ac7362766d77b45b97","tgt_lang":"es","translated":"Duración de ejecución","updated_at":"2026-07-09T10:13:17.660Z"} {"cache_key":"779354687b56cb42b46c137a4e1dda3ceee2aa4134a6cec9d61da795c1517fb2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"es","translated":"Alta","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"77b5824fc802eb6f8bdfe3a985cc69693534dbbad989ca4cba836e36ce593d18","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"es","translated":"Mostrando los primeros archivos coincidentes. Refina la búsqueda para acotar los resultados.","updated_at":"2026-06-16T14:14:23.912Z"} +{"cache_key":"77f4fe6fd4a2d729bd124dcbc7b2620fd0ec82907e7b3d6f73216b4a5f2cc997","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"es","translated":"Gateway sin conexión","updated_at":"2026-07-10T02:23:54.836Z"} {"cache_key":"781aead12c4b7d30e3e77002e8a1d8bb1d6f6fd33a2270fe1e8f77ec6b2d765c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"es","translated":"Canal","updated_at":"2026-07-05T14:39:41.363Z"} {"cache_key":"78ce4d547e0dce2e116aa4284388d25552d65fd191cad8b5123b015629dc4c40","model":"gpt-5.5","provider":"openai","segment_id":"connection.reconnecting","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Reconnecting…","text_hash":"27b80374e1151af6df7824a358606c77502548bff4d467e4ae2e146801f601ce","tgt_lang":"es","translated":"Reconectando…","updated_at":"2026-07-05T21:55:14.304Z"} {"cache_key":"790846a1037a726277bdb8821e88ea3226dbbe6c834815a0a83256f4234eb9f8","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"es","translated":"Ordenar por","updated_at":"2026-07-06T23:40:50.932Z"} @@ -150,88 +211,129 @@ {"cache_key":"7afe1a3cd929439270de4d65745d4838df92d9893b5e807313549f9ea3491e39","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"es","translated":"Desconocido","updated_at":"2026-06-16T14:14:17.778Z"} {"cache_key":"7c58f0b828700fc3f03bcb339f3778f83f977cda1c92bb63a39fad0b5011b3b8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"es","translated":"Vista del tablero de trabajo","updated_at":"2026-06-17T14:14:08.769Z"} {"cache_key":"7c9f668c3558963ad9e528fece0f689f2a576325d14dcbbf7b0361349af05ed5","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"es","translated":"Pasa de vez en cuando","updated_at":"2026-07-09T20:51:27.407Z"} +{"cache_key":"7d0bf29aa1598642407d0546933f6a3aae2a03573cd801535c36895aa1db2303","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"es","translated":"Destacados","updated_at":"2026-07-10T02:23:41.883Z"} {"cache_key":"7de52d6648f79a4d7cffd9784b11fc26bdcd102b650d4622d27231c6b55ee91c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"es","translated":"Densidad de tarjeta cómoda","updated_at":"2026-06-17T14:14:08.769Z"} {"cache_key":"7e18176699eac0ae96d948644c96bd1fec9ac860cdfaba78431d458157ebd9d9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"es","translated":"Descartar error de Talk","updated_at":"2026-06-16T14:14:17.778Z"} {"cache_key":"7e272da5cacd926bd4ff266d947ba1535f742bdd8f764d2e98fb4371ff938be7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"es","translated":"Inactiva","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"7e37a653c0150d0e85e0fa5121214ad130b0a27604e7ba335dd886efcfc84eb1","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"es","translated":"Ordenar sesiones","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"7e91b890c9aa0f3f99cd96e39f2f15b5ddce4e8c921b3a56dd6da6f155f14159","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"es","translated":"Motores de contexto","updated_at":"2026-07-10T02:23:49.859Z"} {"cache_key":"7f8097ed9de67ca6ce058cfdeea7286cae79681a2bc191e309b70ccd22a60a8f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"es","translated":"Uso del contexto de la sesión: {used} de {limit} ({pct}%)","updated_at":"2026-07-05T10:16:02.806Z"} +{"cache_key":"8008c41605bed8f8acc0e887219f846165f623fffc6ecef50fdb63431b5e59c8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"es","translated":"Otros","updated_at":"2026-07-10T02:23:49.859Z"} {"cache_key":"8052b4972eb23ea302b3298cdb781b1676fe896d6b63a40dc27a224ba7557eef","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"es","translated":"No se puede acceder a las entradas de micrófono.","updated_at":"2026-07-06T17:56:20.380Z"} +{"cache_key":"80e4e1869904e9a3af45fba84a78c4e1c54fb4d1f7f680409b9f6469feef2349","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"es","translated":"Plugins","updated_at":"2026-07-10T02:23:41.883Z"} +{"cache_key":"81056e7b49f4966aed9b6316b71b63e59b1ba90ddaeab9efb5727d47ad5ff683","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"es","translated":"Nombre","updated_at":"2026-07-05T21:00:41.074Z"} +{"cache_key":"81d5e4b4058fc51422a1867b9820c55730fab2cc57f08343cc20982c9562e6ad","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"es","translated":"No se encontraron plugins","updated_at":"2026-07-10T02:23:41.883Z"} {"cache_key":"8219f6874d4e0c165924075835f5b895a8a835c97ce80bfbd91d6a6d664106e7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"es","translated":"Renombrar grupo","updated_at":"2026-07-06T23:40:50.932Z"} {"cache_key":"846b7c2027189bd5b3eb6e3b0ae58566d9e775ad9d5971857812c6f72ebdbcd3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"es","translated":"Notas del operador","updated_at":"2026-06-16T14:14:11.215Z"} +{"cache_key":"851e3db51d14ab0f88bb658a3d239d9169a2a8797776dd0ec935995ae8e5c731","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"es","translated":"Activados","updated_at":"2026-07-10T02:23:45.986Z"} {"cache_key":"8572c0b5d70230e13f12e0a4feb574719379fb48c2ede6e57af05d90c2aff827","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"es","translated":"Agente","updated_at":"2026-07-05T14:39:41.363Z"} {"cache_key":"858a144c678e633c5d9555514ba173f7b3f0edab0f193c1daf7a581a92057e89","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"es","translated":"Media","updated_at":"2026-07-06T20:20:02.809Z"} -{"cache_key":"85cc9be722bfc5e3b58fa90083c0242fc7e4b68cc764423e9af20e6680557577","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"es","translated":"Silencio","updated_at":"2026-07-10T04:50:01.439Z"} {"cache_key":"861e85d3487d73960223977cfa17c5769f32372e1456c976304ca6018be294fa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"es","translated":"No hay archivos en esta carpeta.","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"86d7b14295ce34dccce9a412d1d56b6f27b489c7d88f634949bd7fc3647cedda","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"es","translated":"Sesión de Codex sin título","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"87e97622e3a55df4b19ceb00d61e3d2c05d7a4c13fe671192277399461f9257d","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"es","translated":"Sistema","updated_at":"2026-07-09T08:07:50.866Z"} {"cache_key":"8871ff23de8e37d42e2e8ff5acdf65a5d9893a209fa2feaa88405c251cdd7583","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"es","translated":"No hay sesiones archivadas en este host.","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"89023f4ddc33f10b00893cbcc9e1021d9c03afbcde5bd9e8a55098c554d3e3b7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"es","translated":"{agent} (sin configurar)","updated_at":"2026-06-17T14:14:08.769Z"} +{"cache_key":"892c57737fbf94a93c9149415ce59824d045fc80f380d2d932814565bfebc3ac","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"es","translated":"Paquete","updated_at":"2026-07-10T04:28:16.685Z"} {"cache_key":"8acfd051cb9a6d54169c915f8f34d9647845ef1a3318082d3b1a5bf35a52e3f9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"es","translated":"Comprobante","updated_at":"2026-06-16T14:14:11.214Z"} {"cache_key":"8bb2230a04165d41c220295dc65dd037b2658c5ce7134f267f07bbf1e405ab95","model":"gpt-5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"es","translated":"Actualizar","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"8c4d5cbf48088dbe5587577ffe2a5deb0aa82a6e96ae4635245fb51b779993e9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"es","translated":"Protocolo del worker","updated_at":"2026-06-16T14:14:11.214Z"} {"cache_key":"8c5f3778cba55cfa6b32aaacde666fe221d786c1b05576b57b9d930f25ef8323","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"es","translated":"Orquestación","updated_at":"2026-05-30T15:38:14.082Z"} +{"cache_key":"8dc0ce41f3523ffc40371ecad6abf98116ad7e7349a0d4da48c68d0eaaef7510","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"es","translated":"Servidor MCP {name} eliminado.","updated_at":"2026-07-10T02:23:49.860Z"} +{"cache_key":"8f0aba6981dcff1e5d2f66608485130605ab491b726978264e7b01ddebe4b4fa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"es","translated":"Catálogo de plugins","updated_at":"2026-07-10T02:23:41.883Z"} +{"cache_key":"8f0d5fc0df56654d11cd5256ea8b20cdff0a8e0ffbbd259e3c215c31fa97c622","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"es","translated":"Configuración de MCP","updated_at":"2026-07-10T02:23:49.859Z"} +{"cache_key":"8f9da71201067a683e5922a5a4c2cac2da205831089e97798539f14b502a25d5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"es","translated":"Instalar {name}","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"90025a95c709087d3c4be39b45a51659e9ad62b7f608ca304b7ef37cc8791619","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"es","translated":"La configuración avanzada de Talk requiere acceso operator.admin.","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"92640da35588e5ec1aa0be4ba4471fe21801e87414456621324351e32eaa1c02","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"es","translated":"Vida cotidiana","updated_at":"2026-07-10T05:22:04.319Z"} +{"cache_key":"927a504b1d1e896aafd1e5f7c6c4fc90166397b741f6ca3ecc7aeb5e21b59ee5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"es","translated":"URL o comando","updated_at":"2026-07-10T02:23:49.859Z"} +{"cache_key":"9293474dd2f449b6e0db785e9668f9e8eafa861bf91ce051050a52c05eaaeb47","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"es","translated":"Ya existe un servidor MCP llamado “{name}”.","updated_at":"2026-07-10T02:23:49.859Z"} {"cache_key":"93bf60a8d03bc5fc9e7a1450174087e3e7333dd85157ba6adf2566d05cfc7bbc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"es","translated":"Desactivada","updated_at":"2026-06-17T14:14:08.769Z"} +{"cache_key":"93e3733fc6770fb11dfc3b46c560c39be10112ed51a82f8f6723a13b2e85db46","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"es","translated":"Global","updated_at":"2026-07-10T02:23:54.836Z"} {"cache_key":"962cd442e33da4ff17ed09529b84481bdb3c42985b3faa786f31ded2161f302b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"es","translated":"Sin actividad","updated_at":"2026-07-05T14:39:41.363Z"} {"cache_key":"963b3c8c53e522c44c93366d94922be1f02fece42aacd1e8eb4b7eacf9b33a5c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"es","translated":"Ayer","updated_at":"2026-07-05T14:39:41.363Z"} +{"cache_key":"96b97a3a67670da7b22df2bcf19dc569bdabb1f420604c14e349ad538d3517fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"es","translated":"Cargando plugins…","updated_at":"2026-07-10T02:23:41.883Z"} {"cache_key":"96ec31b57381dbdedb16999a0c7b964345d7629414fced16af28179a4e6c2659","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"es","translated":"Cambiar nombre de la sesión","updated_at":"2026-07-02T14:30:06.460Z"} {"cache_key":"9774800c67f5043024384d5f1c068c2204f1301260fee378f5de9714db3a5f72","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"es","translated":"Abrir chat","updated_at":"2026-07-09T08:27:14.496Z"} {"cache_key":"98b1d0a16109cc94066bf9a75cb8307ffadaa8c32f5842ee3e51716c8d1a6600","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"es","translated":"Conectado","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"98b8a87346663e28c917ed6ae0a842bdeb0b075280dc3f1c41d58679db540263","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"es","translated":"No se encontraron entradas de micrófono.","updated_at":"2026-07-06T17:56:20.380Z"} {"cache_key":"9a08dc9d0efcdd2c95631076b13296c7682c436e32acc73d68994f8ebf54e330","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"es","translated":"Resultados de búsqueda","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"9a0d2fbab44d89c8f7e0c012cb054fcde0a82b2946ed52d4f98cfdaceb7f1c0a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"es","translated":"Aún no hay notas del operador.","updated_at":"2026-06-16T14:14:17.778Z"} +{"cache_key":"9a1086cd09a6dade283a248579ca2faeebe06d6f849c525a0fafa2ac4fdc64a4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"es","translated":"Intentar de nuevo","updated_at":"2026-07-10T02:23:41.883Z"} +{"cache_key":"9ad5448ae0fbd65d2adaedc6307569dc229cea98b2502091d01407bd65648367","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"es","translated":"Commit","updated_at":"2026-07-10T09:46:56.274Z"} +{"cache_key":"9b6961a9579784fa6b0c72b33ecfe8a3ab99ff5c157ea87cd1dffbe3320a3dc3","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"es","translated":"Hash del commit copiado","updated_at":"2026-07-10T09:46:56.274Z"} +{"cache_key":"9c292c13ed3c4c54bc7de94f004fc811c1ac53d4e3b19e1f482cfe6945716585","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"es","translated":"Buscando en ClawHub…","updated_at":"2026-07-10T02:23:41.883Z"} +{"cache_key":"9d65cd5aaa228759418d5b0daa4f56f025765273e0341c45d72bdf5f97a5911f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"es","translated":"Buscar en ClawHub","updated_at":"2026-07-10T02:23:41.883Z"} {"cache_key":"9d69982042ae98028cd211bab9a9b5f33b1ddaa2a7ee8231a6540e9e63302e25","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"es","translated":"Nota del objetivo","updated_at":"2026-05-29T21:00:16.236Z"} -{"cache_key":"9d9b6bada8111b77f3990bcc35cd858ca29192acd04683388369ae490129d23a","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"es","translated":"{name} · primera visita {date}","updated_at":"2026-07-10T04:20:28.008Z"} {"cache_key":"9dba87d5a8cc8d175cae54442c59ea40f4e46e1379e29d7e2d9a8d7cdc48457f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"es","translated":"{count} leídos","updated_at":"2026-06-16T14:14:23.912Z"} +{"cache_key":"9dc7b0c6256f5e20898ebfed52e20a687fb371d4e62f7dc28325a40a7b6ecfdc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"es","translated":"{name} habilitado. Se requiere reiniciar el Gateway para aplicar el cambio.","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"9f02d79b316e2526d7a2323ffe2400c3208dd80d9f1e5f25600bfff57ecb0305","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"es","translated":"en ejecución","updated_at":"2026-06-17T14:14:13.986Z"} {"cache_key":"9f11bde6a57eaeecbffcfb08718a12630c1ed9b4497b8d31d731aff38afee279","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"es","translated":"No se encontraron micrófonos adicionales","updated_at":"2026-07-06T17:33:38.433Z"} +{"cache_key":"a099a8c66b90f092f059db69996c4e5b50890fd6cf307e7126526feb8e40ecf7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"es","translated":"Requiere atención","updated_at":"2026-07-10T02:23:54.836Z"} {"cache_key":"a0dfb07197dbd2d61298f0f674a3ec1d316c9f1033934b8bfdff4cf102e16709","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"es","translated":"No hay archivos coincidentes.","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"a1bb6fa320ad3c4bb63730a5d062ef1393cb00ec39103a0fdf1d58e2186843a2","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"es","translated":"Catálogo de sesiones no disponible","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"a2a92335b66f269f3422577524430d95ff3c82ce61b8f840e7d7be8b1c592f18","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortCreated","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"es","translated":"Creado","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"a3912226fbec9bddac5a762963f581b6dae7f1a48c25ffbcb218021f0049b85d","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"es","translated":"Control UI","updated_at":"2026-07-10T09:46:56.274Z"} {"cache_key":"a5ae9f48f31ea9c7b0f3f763115a6ce13b947eb97d187174c37a5465b4999c15","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"es","translated":"Micrófono {number}","updated_at":"2026-07-06T17:56:20.380Z"} +{"cache_key":"a5ca0b3c99c3b8c35a03f0cbf748fe0e4593dea787dcd31020b24caa4b7b0170","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"es","translated":"Categoría","updated_at":"2026-07-10T04:28:16.685Z"} {"cache_key":"a65d6b79ecb33fd78f2cbf89ab7c2664cae596cdc700d291cd184d2508320b45","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"es","translated":"MCP","updated_at":"2026-05-31T05:36:36.332Z"} {"cache_key":"a7d41796b839bea2ce6759ef780d82cf68f0b30fdd573ab6a2bd57005acf5c89","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"es","translated":"Sin conexión","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"a8f1d781c9a62ce871e05211a4400318d6c6b22c18d0b41dadd4cb8f480cf158","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"es","translated":"Tarjetas asignadas explícitamente al agente predeterminado configurado.","updated_at":"2026-06-17T14:14:08.769Z"} {"cache_key":"a9095fc997dae268cbbaf5a257a759d78295ac13c141099349df1eb250962a8f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"es","translated":"hosts","updated_at":"2026-07-09T10:01:43.721Z"} +{"cache_key":"a98c4a919ac3b3bfb5b1b1ef2f76f8906a878da823919784e997a393ae93a316","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"es","translated":"Acciones de {name}","updated_at":"2026-07-10T04:28:16.685Z"} {"cache_key":"a9a363a4d76af88224ee2574fac4aad6537f43b76ea07afbe5981c5b7b972145","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"es","translated":"El acceso al micrófono está bloqueado. Permítelo en la configuración del sitio del navegador para listar las entradas.","updated_at":"2026-07-06T17:56:20.380Z"} {"cache_key":"aa8ea58c63d8b9b1928f388f16816924bb55a0b411b222206d952171b0954009","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"es","translated":"Archivos del proyecto","updated_at":"2026-06-16T14:14:23.912Z"} +{"cache_key":"ab17ebc91251ca90ee35747b694099da9b2bda744486e07ce1dc72f4bc379102","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"es","translated":"{name} instalado. Se requiere reiniciar el Gateway para aplicar el cambio.","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"ab2fd4628979d03bcde2f6f2aca60df44b66eb5639a11cddc3da5251c4ebf0af","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"es","translated":"Rama","updated_at":"2026-07-05T21:00:41.074Z"} {"cache_key":"abb5adff54512b5e6d36f279456351bff63a458c3ec1ece1831e3f3d9536969f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"es","translated":"Resumen de sesiones de Codex","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"ac1b970fd9cc313fc32cb77d4c1161cd32b97609d2fabd6d299107096820b531","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"es","translated":"Una vista de solo lectura de las sesiones de Codex en este Gateway y en todos los equipos conectados que las comparten.","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"acb2c3a444f1cb82a739fe080066fe8a668b466946fdae85c8adb385e0fd2edb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"es","translated":"{count} modificados","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"ad804e17f8272d1508cd9b60ce73399c2f8816a621356d20b53a5965b1c56128","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"es","translated":"Leídos","updated_at":"2026-06-16T14:14:23.912Z"} +{"cache_key":"ad90dc5be67cff5fc45ce98ee37eaaf0d4e9a7facd24ebcb135c2eb257242b98","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"es","translated":"Solo navegación. Este Gateway no permite cambios de plugins.","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"ad93057a16f9b90a08e0cd31555b2fb9c2321163c21564b77dda66e7d4178362","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"es","translated":"Coste diario del proveedor","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"ada213c0e5035193301ab9f754ba3eb032ad1e89361adbf572264899d2c046fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"es","translated":"La configuración no está disponible; actualiza e inténtalo de nuevo.","updated_at":"2026-07-10T02:23:54.836Z"} {"cache_key":"aef4287654e47e60147275960d915bd5f8d10edd938633336557c861317e8744","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"es","translated":"CWD","updated_at":"2026-06-16T14:14:26.057Z"} +{"cache_key":"af504af89e5e2fc386db9e80ac411750bbc83f0d261b61a81503639015562214","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"es","translated":"Compilado","updated_at":"2026-07-10T09:46:56.274Z"} {"cache_key":"af52e25e9ab21052730697f938f714bdef5ad7b7fcd3cf8adcd841ca24b24428","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"es","translated":"Hosts no disponibles: {count}. Los demás hosts siguen disponibles.","updated_at":"2026-07-09T10:01:43.721Z"} +{"cache_key":"af9f1ff8ba4e22d652d42c5107db1f3c0bf7e56ee87b81a0f25d77d8c4fac931","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"es","translated":"{name} deshabilitado.","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"afda11bb82ba21ded4d56ce8795b54f277bcd940ec51ed4d827474d82bac0c97","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"es","translated":"Revisión","updated_at":"2026-06-17T14:14:08.769Z"} -{"cache_key":"b01126fce19f171635c145ae41e881070b2a2e19ef02450ba16b5a0877533bd7","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"es","translated":"Arrastrar para acoplar a la derecha o abajo","updated_at":"2026-07-10T06:07:58.657Z"} +{"cache_key":"b1109fb4c16c0f71967c026b206508bd7d3f8e6cd7620fd92f779a1046deec94","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"es","translated":"Añadiendo…","updated_at":"2026-07-10T02:23:49.859Z"} {"cache_key":"b128e2ee60d8a6fa93c4b8b6295b6dabae4033c0c6b77595b5780e14367cfd10","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlockedTitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Waiting on dependencies: {parents}.","text_hash":"50fb8f9b1326b69bd67d25583ddb4f70b9d75ae6e3ff8a9056a9361daa4b7d8b","tgt_lang":"es","translated":"Esperando dependencias: {parents}.","updated_at":"2026-06-16T14:14:17.778Z"} {"cache_key":"b22333921f9f9de1566514a2290f75f347fe40b02daddf4509bfe8b2607532e4","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"es","translated":"Opciones de grupo para {group}","updated_at":"2026-07-06T23:40:50.932Z"} {"cache_key":"b225ea403c576bc055525db691493ce2c303735997647c9c5bdd5b7966cde878","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"es","translated":"obsoleto","updated_at":"2026-06-17T14:14:13.986Z"} +{"cache_key":"b240b26c1c2a1f4ed8eefa3efa2bfdb93c004480b21de826785834a5f59653e6","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"es","translated":"Identidad de compilación de Control UI y Gateway conectado.","updated_at":"2026-07-10T09:46:56.274Z"} {"cache_key":"b2fbbc0f82aef769679235a8bcd3230c2f2aa81fd4918cd9c5fc82988c2a19b9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"es","translated":"Código QR de emparejamiento caducado","updated_at":"2026-07-01T10:31:44.118Z"} {"cache_key":"b3d0fa3e7ab4add7755631a45d1c8257ab2450fead99fff72259dce3d7e26cd6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"es","translated":"Ninguna tarjeta coincide con esta vista","updated_at":"2026-06-17T14:14:13.986Z"} -{"cache_key":"b5cbae777a9d87a33da7aa23bc0c917d30d80552dcca9831f252d454d20b2b46","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"es","translated":"Pequeños blubs al tocar","updated_at":"2026-07-10T04:50:01.439Z"} +{"cache_key":"b55a03488ccb4e60ba0e8e94329d31025d31b2c773db4d268b15abfe4769b29b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"es","translated":"Proveedores de modelos","updated_at":"2026-07-10T02:23:49.859Z"} {"cache_key":"b626995f71c58bfb263806f12b5eece5091a529999f3f1bfccbc5df135f6a178","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goal","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Goal","text_hash":"cdbf6975e8a35b0d03558be6822dfae166482c24fb86b0433f60e8167f5c91e4","tgt_lang":"es","translated":"Objetivo","updated_at":"2026-05-29T21:00:16.236Z"} {"cache_key":"b7121e0c8077fe037c6eebf40b518edc00721dc68fbd02fbcb45f8f9b899939c","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"es","translated":"worker {state}","updated_at":"2026-05-30T15:38:14.082Z"} {"cache_key":"b7711ab92a49b842c4441975cb0c053b012659bd93237025953cbb412180889a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"es","translated":"Hilo","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"b8750676fe2f7fddfa9319e77d949a3969de0bace5d53a3b1f9a5036360a2c36","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"es","translated":"Limpiar ahora","updated_at":"2026-07-05T21:00:41.074Z"} +{"cache_key":"b95e534acb0bfff1ad309f345358a30062e57bcbd3e0bd7f473a8236903d5ac4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"es","translated":"Capacidad opcional de OpenClaw.","updated_at":"2026-07-10T02:23:54.836Z"} +{"cache_key":"ba0924884f04f7f3bc96c8d84a503d6472a6025bab4fff82e0f9214bbbb0546e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"es","translated":"ClawHub","updated_at":"2026-07-10T02:23:41.883Z"} {"cache_key":"ba36a535fce7b09adb4b08d7370f8055f63e0f2032db38b6db5b3c4a9e949663","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"es","translated":"Ver detalles","updated_at":"2026-06-16T14:14:11.214Z"} {"cache_key":"ba74374eeb633268908727f38cd0977dad6868c9f086cc5158cd76434bf3045a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"es","translated":"Enviar las solicitudes de revisión a la sesión de chat actual en lugar de la sesión de workshop de la propuesta.","updated_at":"2026-06-16T14:14:11.214Z"} +{"cache_key":"bbc347b4c9084d0cbea32bf6b05a6a194856c9c8567d3d417f588215d9ab9f5b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"es","translated":"Servidor MCP {name} añadido.","updated_at":"2026-07-10T02:23:49.860Z"} {"cache_key":"bbdca61394ba47e1095a1b05d4ceb0b5189afec296eda71d86557117f6b659cd","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"es","translated":"7 días","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"bc6a68e2669a24e5fc5fbdd47416a06f4408715783d5b643b1cf0466bc69c99f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"es","translated":"Dependencias","updated_at":"2026-06-16T14:14:17.778Z"} {"cache_key":"bc8397396464f5cd6cc5171e565c64b27d903ee6b6227d01cb24cd965c3a8f56","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"es","translated":"Desfijar sesión","updated_at":"2026-07-02T14:30:06.460Z"} {"cache_key":"bc8d1346543a2e7019429c732e62422dd3f7f707bdb5c688252dee9e2f445ca9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"es","translated":"Archivar sesión","updated_at":"2026-07-02T14:30:06.460Z"} {"cache_key":"bcddf0abb05485ebba43e6fdb01012a1cc4f363407655b3c7965770339083789","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.sessionSelect","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Pane session","text_hash":"0deb0759c3643f2659c0838326276513c119e7923672a118c4ed13c012c4b628","tgt_lang":"es","translated":"Sesión del panel","updated_at":"2026-07-06T07:23:22.549Z"} {"cache_key":"bd0de00fd47ba196582aa778c5a6bd75c1df461bcd0ea9a841636fd84bdf25ce","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"es","translated":"Detalles de la tarjeta","updated_at":"2026-06-16T14:14:11.214Z"} +{"cache_key":"be1dea7b40fc827125f19863308c16f1b60f13b150b440a15ebb1c6caa9be57b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"es","translated":"Preparando búsqueda…","updated_at":"2026-07-10T02:23:41.883Z"} {"cache_key":"be748f8ca2eec45f6b3fcf0313557b301a106f27d829b9e80ac1d42b8ddc60d8","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"es","translated":"Nombre","updated_at":"2026-07-05T21:00:41.074Z"} -{"cache_key":"beafef604c6da08a5c4dd9b68d8c9ed39ecf9578f6cc71717bc18e55dfba545c","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"es","translated":"Sonidos de langosta","updated_at":"2026-07-10T04:50:01.439Z"} +{"cache_key":"bef04013760e3c398712c806e96381b76bebc0e25c7e193431bf86389b8ef33e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"es","translated":"Conéctate para explorar plugins instalados y recomendados.","updated_at":"2026-07-10T02:23:54.836Z"} +{"cache_key":"bf11d82315e645a377d2a8fcfc9d27ff3565e9b1aec63e9faf2b26e2f07687b3","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"es","translated":"Copiar hash completo del commit","updated_at":"2026-07-10T09:46:56.274Z"} {"cache_key":"bfe46abe1f3ef098417b8ae15d353966fb363db4f2c298b90e79f1ebbfa27db7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"es","translated":"Actualización automática","updated_at":"2026-06-17T14:14:08.769Z"} +{"cache_key":"bffffc96ad4bfa44e1ee7bec764369f52bcadca55aa4963323c20a24332677a0","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"es","translated":"No se pudo copiar el hash del commit","updated_at":"2026-07-10T09:46:56.274Z"} {"cache_key":"c08126112e521f2a22f6e066ce5ee4249e4d4aca6b6ccd2a503f7354542bd013","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"es","translated":"Activa el uso compartido de sesiones de Codex en el Gateway o en un equipo emparejado y actualiza esta vista.","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"c095f743cda6b21326df105dfac79a1c911fb592f817a2714160e488edbcd5d6","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"es","translated":"Restaurar","updated_at":"2026-07-05T21:00:41.074Z"} {"cache_key":"c0db0c7a7347cdc21aee2735925ae2fe3d26be5289cbdc527a40c3e5ef2b4580","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"es","translated":"sin prueba","updated_at":"2026-06-17T14:14:13.986Z"} +{"cache_key":"c0ea29ef126c4ab1a93e5c1444ab221973458e7bac469cf30027eb56deda65d9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"es","translated":"Los nombres de servidor usan letras, números, puntos, guiones o guiones bajos.","updated_at":"2026-07-10T02:23:49.859Z"} {"cache_key":"c10ff6efa3649e0a5ff0171fa5faaa5dcf46fbd0430509a73f6bc02440507aac","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"es","translated":"Expandir espacio de trabajo de la sesión","updated_at":"2026-06-16T14:14:17.778Z"} +{"cache_key":"c1324c0402665a8c00c8a2413beb64d6ece9732c4dc169733f00a043216a42e1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"es","translated":"Introduce una URL http(s) o una línea de comandos.","updated_at":"2026-07-10T02:23:49.859Z"} +{"cache_key":"c24576fa96879b55ac05f4012f342ba856006be6d8f662596e572650ca45a1ec","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"es","translated":"Aún no hay servidores MCP configurados. Añade uno aquí o elige un conector en Discover.","updated_at":"2026-07-10T02:23:49.859Z"} {"cache_key":"c26a209ddb7ebce8e702fb28f1b57f9996b2a3c0511404dd991a50a72f98b90f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"es","translated":"Las entradas de micrófono no están disponibles mientras esta página está inactiva.","updated_at":"2026-07-06T17:56:20.380Z"} {"cache_key":"c33199a62cca279da4a1cbaf5b3c107d3826fcc3073e27ddaba5bd4f23134f47","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dragSessionHint","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Drag to move between groups","text_hash":"3e8692b1cd1c1f9a606a779f1037aa390c885fde224ddb841df9259e8aab03ae","tgt_lang":"es","translated":"Arrastra para mover entre grupos","updated_at":"2026-07-05T14:39:41.363Z"} +{"cache_key":"c35e3d0114ed6c6eddfeed62acb2c07083f74131e15df80f04cd970fff8d3d4b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"es","translated":"ClawHub no tiene resultados para “{query}”.","updated_at":"2026-07-10T02:23:41.883Z"} {"cache_key":"c46272a015deaa2d1b1e8f26cca6d2b87e949c619f0834ddaec580e6512f3333","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"es","translated":"Registros del worker","updated_at":"2026-06-16T14:14:11.214Z"} {"cache_key":"c4a83809880f6a24e583766ec89ecbf1f90f78441d6226bada70ca55b3d90c85","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"es","translated":"{count} sesiones","updated_at":"2026-07-05T14:39:41.363Z"} {"cache_key":"c549d0a6a90861b4516568a865461326fe11f5a7aaf6d6330e51ee58cb0d2f8b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"es","translated":"Resumen: {summary}","updated_at":"2026-06-16T14:14:11.215Z"} @@ -241,7 +343,6 @@ {"cache_key":"c70594ea1ac9d24f04fc036ff31742ac60eb81b33bc3bbb4d2a63bbd2d6d4097","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"es","translated":"{count} mostrados","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"c7224721dcadd58f7fc40651f172d1d0a9d7643f3ee18a217989d60982c235ef","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"es","translated":"Nuevo chat en worktree","updated_at":"2026-07-06T04:56:00.301Z"} {"cache_key":"c78a8fa8bc3e9658c5024829b5fca56a9b4a677daa30142e697a29686a5f16ba","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"es","translated":"Cambia la vista, la búsqueda, la prioridad, el agente o el filtro de archivo.","updated_at":"2026-06-17T14:14:13.986Z"} -{"cache_key":"c79032af0df966fcbe7fd57b39312959b13b7d7e14d98c2536310019eacaa35c","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"es","translated":"{seen}/{total} visitados","updated_at":"2026-07-09T23:55:48.539Z"} {"cache_key":"c89f2e305ab2c1cb6f0ccc18de052ed410b24caa4d85f1bed234ecc12bfd605a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnly","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Archived only","text_hash":"da7ebd8c482f38dc2a5b693a0ec25aaa04ea7b5fa3713cce9fa41a28f2201a6b","tgt_lang":"es","translated":"Solo archivadas","updated_at":"2026-07-02T14:30:06.460Z"} {"cache_key":"ca45270fcaf0260574b3ffa915f76a65ddec157a9b1579127631b11e6800d35c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changed","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Changed","text_hash":"2a6141e43be0c2125e3b5d9f74b4ff1261a0b320ff927c83d4d9b1b65585bad7","tgt_lang":"es","translated":"Modificados","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"ca5a09bb9470446c2690a9218b79446a01718c9512405bc55a15c02f089a697a","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"es","translated":"Hoy","updated_at":"2026-07-05T14:39:41.363Z"} @@ -251,12 +352,20 @@ {"cache_key":"cc4f0db5aa5e535f9276baabc516d4fb55be61dfe7bf3aacd371d0d381982649","model":"gpt-5.5","provider":"openai","segment_id":"connection.retryNow","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Retry now","text_hash":"5148c3e20576923b589bd801ea84dc376213b82fbf8694f64437b621f1690615","tgt_lang":"es","translated":"Reintentar ahora","updated_at":"2026-07-05T21:55:14.304Z"} {"cache_key":"cc9d4e229f3238ba5d545f3ea51f7cca42917ff9b08bb5c846abff6cc3273ce1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"es","translated":"Nodo","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"cd123e18b6f5fd0ea09ff8b859eb38519ebc68fb16a0dd190ff9c73180df0294","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"es","translated":"Ninguno","updated_at":"2026-07-05T14:39:41.363Z"} +{"cache_key":"cd31200e8a3b71f6bec59d7b94eb22c4847f924c7050188a65c84162cdcc89a8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"es","translated":"Conectores MCP con un clic y búsquedas seleccionadas de ClawHub para servicios populares.","updated_at":"2026-07-10T02:23:45.985Z"} {"cache_key":"cd6bd79f0c3ac7e7fa28c53b4da5cdb4bc58b08cefde568cf5ccb6225365fe63","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"es","translated":"Aún no se ha modificado ningún archivo en esta sesión","updated_at":"2026-06-16T14:14:17.778Z"} {"cache_key":"ce5c4c052031d93aa8a41e680979081bc3200ee3f7bd9afb62c263af9f2778e5","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitDown","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Split down","text_hash":"8730b89df7caaf5b5090f9b7365a0a03e0a13d9682dc6418f556b8a676d9e98f","tgt_lang":"es","translated":"Dividir hacia abajo","updated_at":"2026-07-06T07:23:22.549Z"} +{"cache_key":"cfbb88674df2bb8d5131d4925f1a31d824ffab7ab70ff914af7662f75498fe4f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"es","translated":"Se eliminó {name}. Es necesario reiniciar Gateway para aplicar el cambio.","updated_at":"2026-07-10T02:23:54.836Z"} +{"cache_key":"d044f1d20b8c114ddfee33d00fa99b62063fa9b2d00d6d9973be681bea19fa73","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"es","translated":"Plugins de la comunidad en ClawHub","updated_at":"2026-07-10T02:23:45.986Z"} {"cache_key":"d0bf5233c65ce1b8688c42a6e8b1e635f6cc9600cd87ae4be132040c4bdc5e20","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"es","translated":"Checkouts aislados de tareas de agentes y snapshots de recuperación.","updated_at":"2026-07-05T21:00:41.074Z"} +{"cache_key":"d0eda393f4df473f2fbfff0aef34b569cc00cbb822bf2f4b7c65a7808baedf7c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"es","translated":"Introduce al menos dos caracteres para encontrar código y plugins de paquete.","updated_at":"2026-07-10T02:23:41.883Z"} +{"cache_key":"d114b96eb3e11ef82da07eea7c4532c628448b62e0c86b466109e046318b0416","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"es","translated":"Requiere atención","updated_at":"2026-07-10T02:23:45.986Z"} +{"cache_key":"d1fc834b2c3f60d835ff47698f1df79734b616cde2ff30dedb5b3b0069fa0045","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"es","translated":"Canales","updated_at":"2026-07-10T02:23:49.859Z"} {"cache_key":"d32a3a6a5a05eb01ad59726c265061a765ff7169be9b2cbdccd3f463fb377251","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"es","translated":"Entrada de micrófono","updated_at":"2026-07-06T17:33:38.433Z"} +{"cache_key":"d382d0cedd306f7908a63fe3f8168d5bcf662a680d261e48cf34236fa8cb9ddc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"es","translated":"Desactivar","updated_at":"2026-07-10T04:28:16.685Z"} {"cache_key":"d3c0d31bb509c9c12403e249ab6e0eee8afeb0c343c83f6bed8ce299892c3146","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"es","translated":"{count} mostrados","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"d4184cd5413c53fe2a84242ddc858b31f3289e1757d2e4c1a64d27f75acf9f64","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewBlocked","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Blocked","text_hash":"18f2a0947f9d6523991b29b450307f22773f57d65f7efb98d48a167df04d6b1d","tgt_lang":"es","translated":"Bloqueadas","updated_at":"2026-06-17T14:14:08.769Z"} +{"cache_key":"d4744646b5670dd9831d43277a905722a888740afb290a2ee9ba1163fc2b55e9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"es","translated":"Servidor MCP con un clic","updated_at":"2026-07-10T02:23:45.986Z"} {"cache_key":"d535f4b097ed4ccc656822609513f3e0be32f74ec674bbbfc4215d2e8fd583c7","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"es","translated":"Worktrees","updated_at":"2026-07-05T21:00:41.074Z"} {"cache_key":"d65443e52b35a5e1a24013daa16ee4e06bd3a70760a05ce6d8d2dcec81408339","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"es","translated":"Vuelve a conectarte al Gateway para actualizar las sesiones de Codex.","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"d65b57d002f5670ee87509763056db68c01ff323945e158f3442974c15069ea5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"es","translated":"¿Eliminar el grupo \"{group}\"? Sus sesiones se moverán a Sin agrupar.","updated_at":"2026-07-06T23:40:50.932Z"} @@ -264,36 +373,51 @@ {"cache_key":"d84ae6ed4bf70414a0d76a522fbb4a0d97718af67b47c50476e0939611fa759f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"es","translated":"Tokens de la ejecución más reciente","updated_at":"2026-07-05T10:16:02.806Z"} {"cache_key":"d85830d728eec1fab6b54921c31423f72103161e1e895ba13fc13f4d5a36040d","model":"gpt-5.5","provider":"openai","segment_id":"connection.lostTitle","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Gateway connection lost","text_hash":"ec6cd265976239ff6fc4f227bb25e8e6286fe38c3d1c64326dcdbb76c28b515e","tgt_lang":"es","translated":"Conexión con Gateway perdida","updated_at":"2026-07-05T21:55:14.304Z"} {"cache_key":"d8c20e37a13a86954dcd60220a2da3f1db8e5ac108979eb780c3d29531ae940b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"es","translated":"60s","updated_at":"2026-06-17T14:14:13.986Z"} +{"cache_key":"d984a9953aaf1e8a264512dae53f6e6739ab37a670bf832527cf6a1ff4d71d85","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"es","translated":"Solo navegación. Los cambios de plugins requieren acceso operator.admin.","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"dad83b2af9efdc98e72d1b9457c68e9e3e8b8748ab0afe07bed410995443e8c0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"es","translated":"Más en Configuración","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"db628cd52c3f0fbfb0e0b2ed7e98ce6181acf21d410a0bb393c0641121501472","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"es","translated":"Disponible","updated_at":"2026-07-10T02:23:54.836Z"} {"cache_key":"dbd00e8a113e78eb69e93ba03884459b7159eac2cdefdaafc27dd51aadbcc59e","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"es","translated":"Trabajo en segundo plano en cola y en ejecución.","updated_at":"2026-07-09T21:53:11.370Z"} {"cache_key":"dbf7a646077822f407b2017df056ca85fe2f5dcc2df8eccc5cf6af61b47bf2b8","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropOpenHere","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Open here","text_hash":"b08e2fd2e872adcb575b305187b9db8482369325806953ce80190fc2dc1ab9fb","tgt_lang":"es","translated":"Abrir aquí","updated_at":"2026-07-06T22:56:19.249Z"} {"cache_key":"dc707e676c7a3898c525cf6064c68fb314e80649af6ebefadb220cb4d0911b61","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadingMore","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"es","translated":"Cargando…","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"dc711ef2c2a02b8dd347cc128774fa21b697a587293589630bba05e2a9928a2f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"es","translated":"Las entradas de micrófono están ocupadas o no están disponibles para el navegador.","updated_at":"2026-07-06T17:56:20.380Z"} {"cache_key":"ddee0310ae22b896e63790dd27363c2fb84b6dbcd04f33dcdbe7d032b9e170d4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"es","translated":"Error al actualizar","updated_at":"2026-06-17T14:14:13.986Z"} +{"cache_key":"de3beebd69099ae96509c7a03c928f41c2bd261d2bc1af23943689ec132ccd9a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"es","translated":"{name} habilitado.","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"def4e81cbec155324c758bc7f29de34afe7b9b30bd89532d3321ac8bc9c79e17","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"es","translated":"Sesiones en todos tus equipos","updated_at":"2026-07-09T10:01:43.721Z"} +{"cache_key":"dfb3a1ba0edd953b2a65f4b0ed500cd7414aace1a7bbc9f16877345477b91467","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"es","translated":"Acerca de","updated_at":"2026-07-10T09:46:56.274Z"} +{"cache_key":"dfd5e1bc7e60da295ac2cf1554664f74dd852eecf7435045062be3f81f5b7cbb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"es","translated":"Se añadió {name}. Autentícate con “{command}” y luego reinicia el gateway.","updated_at":"2026-07-10T02:23:45.986Z"} +{"cache_key":"e2d31184649a05e33009e4fafa4f64b9ae6b7e2a671461dee8970447a44656c1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"es","translated":"Cerrar","updated_at":"2026-07-10T04:28:16.685Z"} {"cache_key":"e3d78817f4f01e6b7df5e7d4af14355d2043188b77d481a7633b82ba4a056dba","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"es","translated":"Русский (ruso)","updated_at":"2026-06-26T21:43:26.471Z"} -{"cache_key":"e5585a562f71ad24d53c42f340a1255831395344cbcd88a00e57e38c3354c005","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"es","translated":"Mostrar archivos de la sesión","updated_at":"2026-07-10T06:07:58.657Z"} +{"cache_key":"e6f337fcde42a6086a9d616ff283ed0e472922cd967306a50e615a5cf31f21bb","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"es","translated":"Plugins","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"e7dd28e8cb5b0106bfec5a7e17709da183e603a1ddf01dab77705a60a1d6ae91","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"es","translated":"Modo de color: {mode}","updated_at":"2026-07-07T08:47:26.313Z"} {"cache_key":"e81fe39f884e84b2b3209c6f0eb133499339b1bbf35b54844028d539957743cf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"es","translated":"Agente predeterminado","updated_at":"2026-06-17T14:14:08.769Z"} {"cache_key":"e836e54ddf668f876ef6476d762674d44bd408f2ff48bde6ea5e42bf7a4ccc6c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"es","translated":"Actualizado","updated_at":"2026-06-16T14:14:11.214Z"} {"cache_key":"e881104fcebef0d2ddadfea984fa81170fd0ae63103cd788bc1d180ca5d6f34e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.actions","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Workspace file actions","text_hash":"461817d921bc7672e95fe4a3b23f4ac2a4a20e35b3d6eef3f02e8f5ba4201050","tgt_lang":"es","translated":"Acciones de archivos del espacio de trabajo","updated_at":"2026-06-16T14:14:23.912Z"} +{"cache_key":"e9053dcb927e3182b57ca149f88dc67cb084179840abe84f0667af44bb540422","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"es","translated":"Deshabilitar {name}","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"e94c5abf443f2d34e30e9f133ea2a94600069a5f520ea181a2ec0685b91e886a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"es","translated":"Tarjetas sin un agente explícito.","updated_at":"2026-06-17T14:14:08.769Z"} {"cache_key":"e953e7d34e40cd7e1e6bb147579011b4961b44c51d95874e512940ed29e6f597","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"es","translated":"Error del sistema","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"e9f61efd82b4ecedff824fa08bbf380c765039c2a8d846a331d45d2be56b3e9a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"es","translated":"Copiar ruta","updated_at":"2026-06-16T14:14:26.057Z"} +{"cache_key":"ec7f0b3de958283a967a3626789b1427365a3c6ac5d8fa288ba02c89c322d52e","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"es","translated":"Informado por la conexión activa de Gateway; independiente de esta compilación de Control UI.","updated_at":"2026-07-10T09:46:56.274Z"} {"cache_key":"ed78e6315f84d06d2adf853190c03178d9521ac1e0e0d1cd425ca3f36dfd2f84","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"es","translated":"¿Crear snapshot y eliminar {name}?","updated_at":"2026-07-05T21:00:41.074Z"} {"cache_key":"edea18aa163b5af9c1c0c9a251bfb268dd1186f24567bcbe7408bbae9da8f6a2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"es","translated":"{count} artefactos","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"f0c3f9afe83ef51ca9833a8de96256ae03097b3d32b50632e8607a6eec9abd99","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"es","translated":"Raíz","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"f1efa318c89caf41fdfd4ebea9ee61d765fd3430586fd8d22ae8a263fe90be56","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"es","translated":"desconectado","updated_at":"2026-07-04T21:23:51.151Z"} +{"cache_key":"f253c74cc012b7f43bbb762a1884c491fb646a24dc4bb2b31d2c1ba61a86af97","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"es","translated":"Plugins oficiales","updated_at":"2026-07-10T02:23:45.985Z"} {"cache_key":"f365c0a18a8de732b2b12ae95e4d3e03fc97e3850816c668a49d2c22769f4df8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"es","translated":"Espacio de trabajo","updated_at":"2026-06-16T14:14:17.778Z"} {"cache_key":"f3664f690ac63764457a9d27cbc070c5a3e8677a82eeddf56d73a507aadc26da","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"es","translated":"Más antiguas","updated_at":"2026-07-05T14:39:41.363Z"} +{"cache_key":"f3d51f211f6142096a0d2e39be386ee64fa382126cf98d423952120b39a60b6a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"es","translated":"Prueba con una búsqueda diferente.","updated_at":"2026-07-10T02:23:45.986Z"} {"cache_key":"f45293ba3b6b014c690c54b1911f26d4f0cb290c7848d378c0411ccd9ab85fe6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"es","translated":"Flota de Codex","updated_at":"2026-07-09T10:01:43.721Z"} {"cache_key":"f4776f577fb0af338f01eb8af0851fb76097469d04aeb45cc5b494a0375f349f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"es","translated":"Automático","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"f5944b5ff2ac03e411bf85a46d9fc057225c5773a1d48f43746302ae9e43d95e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"es","translated":"Sensibilidad","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"f6d35ad6a11a11a79e9f51540bbff906aa07bee0020788d930eb9362f0f2257f","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"es","translated":"General","updated_at":"2026-07-09T08:07:50.866Z"} +{"cache_key":"f8297b87e6fc39a0338a6ecfc01e08e045cfafb41a4e4d1c1f030b4532bbf1f4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"es","translated":"Descubre un plugin destacado o busca en ClawHub para ampliar OpenClaw.","updated_at":"2026-07-10T02:23:45.986Z"} +{"cache_key":"fab96a6a579e07a1b07ac60fd3ce8ec51356d3a0b24ae1ffb9a657fecd6c71e0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"es","translated":"Plugin incluido","updated_at":"2026-07-10T02:23:58.471Z"} {"cache_key":"fae30f5f28c27c8d8b67f7b40a7694c42853e655fdd95e75e4eeab553aa2bdc4","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"es","translated":"Taller de Skills","updated_at":"2026-05-31T21:48:19.683Z"} +{"cache_key":"fb064516061410a11982656f0b51320d813467cc07ff42e898924cd2af678670","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"es","translated":"{enabled} habilitados, {disabled} deshabilitados, {issues} con problemas","updated_at":"2026-07-10T06:08:39.974Z"} {"cache_key":"fbddcc4a76247dd3b8aa9c7cb3ea0d4237808120057f5fec5b29b4319ef11d97","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"es","translated":"Ruta del espacio de trabajo","updated_at":"2026-06-16T14:14:23.912Z"} {"cache_key":"fbedc4b95255af8b1c9dad5600baf0239697b7a815378fbfbb7e99c925262493","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"es","translated":"Modelos principales","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"fcd00508e6b61b630909b2bd031b7595cefb5c3e93332ad45b81f23239e037ba","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"es","translated":"No se encontraron hosts de Codex","updated_at":"2026-07-09T10:01:43.721Z"} +{"cache_key":"fd3bf5e1d9a055519d454f930ce6cf74c0cd05b3611827527ede3ee9da7ae328","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"es","translated":"Añadir servidor","updated_at":"2026-07-10T02:23:49.859Z"} {"cache_key":"fe6be05e50136e5c0a8bb63bf26a81d0e2cc76d0837ed10d761a352e30715550","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"es","translated":"Carpeta superior","updated_at":"2026-06-16T14:14:23.912Z"} +{"cache_key":"fed642a8857324eb84a30556d13a93e3869cd821dc23cdcd7668621a2f1244ad","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"es","translated":"Añadir","updated_at":"2026-07-10T02:23:45.986Z"} {"cache_key":"ffed180cfc5ab0c2e5a641161c04353e52010f054b896a8c308b9ef4a8a182b8","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"es","translated":"Adjunto añadido","updated_at":"2026-05-30T15:38:14.082Z"} {"cache_key":"ffff578c5fe8b58506956638f64268272bba517db08d3caeda5c4361282a9541","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/es.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"es","translated":"Agregar nota","updated_at":"2026-06-16T14:14:17.778Z"} diff --git a/ui/src/i18n/.i18n/fa.meta.json b/ui/src/i18n/.i18n/fa.meta.json index 59798236e08d..d072564bbfc8 100644 --- a/ui/src/i18n/.i18n/fa.meta.json +++ b/ui/src/i18n/.i18n/fa.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:27.543Z", + "generatedAt": "2026-07-10T09:47:52.735Z", "locale": "fa", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/fa.tm.jsonl b/ui/src/i18n/.i18n/fa.tm.jsonl index 444d608b1fef..71444a9c9580 100644 --- a/ui/src/i18n/.i18n/fa.tm.jsonl +++ b/ui/src/i18n/.i18n/fa.tm.jsonl @@ -1,19 +1,23 @@ {"cache_key":"00f20f32cb6b90c693d9f057a3287e5be996f75433f672845f91bcdb254ed4fc","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"fa","translated":"جست‌وجوی نشست‌های Codex","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"0169d4249811ffb158470270f39eae6a53505ec93b5909328c40c4807d766905","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"fa","translated":"بازگشت به برنامه","updated_at":"2026-07-09T08:08:16.435Z"} +{"cache_key":"024608373a34b715b5c541f8bcea974e72eb30af92eabe9b4fe356f5af4e6866","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"fa","translated":"Control UI و Gateway متصل، هویت ساخت را تشکیل می‌دهند.","updated_at":"2026-07-10T09:47:52.730Z"} {"cache_key":"02649d9444dede2f7341c2b50e5bac7f1ee89f7f6d760c1a0c25798613c78a15","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.sessionSelect","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Pane session","text_hash":"0deb0759c3643f2659c0838326276513c119e7923672a118c4ed13c012c4b628","tgt_lang":"fa","translated":"نشست پنل","updated_at":"2026-07-06T07:24:38.563Z"} {"cache_key":"02d9671244d20a7a9b1e5654272d64dc82d1f3ad471ebfbc731fdc1256d0272b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"fa","translated":"خلاصه فضای کاری جلسه","updated_at":"2026-06-16T14:18:48.731Z"} +{"cache_key":"06f8ab3d81fe24d0f3897f3e721946af9d6c6c9cf85c526b8207d37801fc1896","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"fa","translated":"ساخته‌شده","updated_at":"2026-07-10T09:47:52.730Z"} {"cache_key":"07569b85548746ca885e37cf6a0b320a29e99b48564d2584f2bb8749045c1734","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"fa","translated":"{percent}% از متن استفاده شده ({used} / {context} توکن)","updated_at":"2026-07-09T07:06:38.621Z"} {"cache_key":"076b81e9c756d1ba21208a75e47cf37031c0928d1d470911701626adcd3df053","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"fa","translated":"گزینه‌های گروه برای {group}","updated_at":"2026-07-06T23:41:23.355Z"} {"cache_key":"0800ec9b1e39e6345b7ecd83179798aeb9c26c7d64ed41e1a0819c828f362e25","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.legendMore","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"More","text_hash":"d47d7cb0e4f8fd2be5ee07826694c18917d83ca77d0a01698582d05f432db996","tgt_lang":"fa","translated":"بیشتر","updated_at":"2026-07-09T11:29:07.982Z"} -{"cache_key":"0a68c4ee4a865386d6b4fd8c5c91d5ff4f258859e5da0e60430998e1fa113f1d","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"fa","translated":"Lobsterdex","updated_at":"2026-07-09T23:56:21.146Z"} {"cache_key":"0aa8d92f1e6ee55e5318576878e50c343303c756a181a280ae24bf082c8912a8","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolsTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Most used tools","text_hash":"8bc3f9b213a6e4c632b3c09d45d7c373a07c75389ab5d6c17cc053352ea16847","tgt_lang":"fa","translated":"پرکاربردترین ابزارها","updated_at":"2026-07-09T11:29:16.474Z"} +{"cache_key":"0ac6f33a60ad053d660df30c8556389062d73ed2c7f579579366c88639937366","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"fa","translated":"برای تغییر افزونه‌ها به Gateway متصل شوید.","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"0b4918568cf4f758cc8d4ed0824859e77ba244eb224d96c032c0fea0e0ff8b6e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"fa","translated":"پروتکل کارگر","updated_at":"2026-06-16T14:18:33.052Z"} {"cache_key":"0b87246355b6c9cc0b035cc0725e59723f3d58fa1ee925ad6e17c76dacff41cb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"fa","translated":"خودکارسازی","updated_at":"2026-06-16T14:18:33.052Z"} {"cache_key":"0bb1ba56158d234b83ff931f0247364fc415c854dc5256c4edc42807331d9086","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"fa","translated":"آنلاین","updated_at":"2026-07-09T10:01:43.762Z"} +{"cache_key":"0cf2da3e0df6f2645e2025be6153b990ded4aad71dc2daf84aeb628794d5fdfc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"fa","translated":"در حال آماده‌سازی جستجو…","updated_at":"2026-07-10T02:29:34.621Z"} {"cache_key":"0dc0d538ee0463d76b626d15a4452efaea8e404b5694a9ed38f941665da45f6a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"fa","translated":"مسدود","updated_at":"2026-06-17T14:17:52.321Z"} {"cache_key":"0e1c51ecce1b7bc3b4b67bff67e33b9e8d000052caa46bc559548b25f3b9322d","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"fa","translated":"خطای ابزار","updated_at":"2026-05-31T06:44:11.985Z"} {"cache_key":"0e5fd9a446358c295951457f9c4cc6ba544d1506444f1d97af0b024ae50b085f","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"fa","translated":"کارهای پس‌زمینه در صف و در حال اجرا.","updated_at":"2026-07-09T21:53:43.631Z"} {"cache_key":"0eb4ad66abf17a1137688f368976b6d29dd75c1be84399a47c52ed438df4dc15","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"fa","translated":"گروه‌های سفارشی","updated_at":"2026-07-05T14:40:24.519Z"} +{"cache_key":"0ee99e4b07b1abf6e2e766c00f4ca6c9522d366d6289e198541e83aa12d94cee","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"fa","translated":"مشکلات","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"0f1d7721e2cbcd4b0cc26437ac27bbdc0cdb71625b22a3f803195db1ba62dfc5","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.sinceChip","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"In the reef since {date}","text_hash":"ded006c6417b781fc23bdac6fab292b69da412484cf516cfe8d6757551960dd7","tgt_lang":"fa","translated":"در صخره از {date}","updated_at":"2026-07-09T11:29:07.982Z"} {"cache_key":"0f2e2eee7ca1ba8aebe84bcccb3a6ea46fcf2608040bccfb9aba37405cd0c61a","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitRight","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Split right","text_hash":"aa9997bb1d8c23d0b88521c4093fc8c3ee01b187f78635ae4d3e16d27e8a8475","tgt_lang":"fa","translated":"تقسیم به راست","updated_at":"2026-07-06T07:24:38.563Z"} {"cache_key":"102ed7e0dcb29602e62468cbfdc67fdaafc719149d406379a011f2e8ecd524ec","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadingMore","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"fa","translated":"در حال بارگیری…","updated_at":"2026-07-09T10:01:43.762Z"} @@ -21,20 +25,25 @@ {"cache_key":"10bb8c5bb20fbe0279094987b6b2a96ec76aec9d9531c1ee7109142129a55416","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"fa","translated":"قابل بازیابی","updated_at":"2026-07-05T21:01:42.282Z"} {"cache_key":"113b0902e6bbde83fcd6d05027131c47415439d7dc9c52599d688ae23c7c94d3","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnly","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Archived only","text_hash":"da7ebd8c482f38dc2a5b693a0ec25aaa04ea7b5fa3713cce9fa41a28f2201a6b","tgt_lang":"fa","translated":"فقط بایگانی‌شده‌ها","updated_at":"2026-07-02T14:31:11.668Z"} {"cache_key":"1167cc7da538df715e50c8e48d81c211e39137f01bb9c2553a3cae14faf4163f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"fa","translated":"جستجوی فایل‌ها","updated_at":"2026-06-16T14:18:48.730Z"} +{"cache_key":"123e8431d08fc5389a0898a8441b827c285ddecb503dcaab21f4130d684f2e15","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"fa","translated":"منبع","updated_at":"2026-07-10T04:28:56.672Z"} {"cache_key":"132eb33a9e5b4a35a77d77a38256a9027f7d86208ae41a4c9eb806b2a921e151","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"fa","translated":"تقسیم","updated_at":"2026-07-06T22:56:40.069Z"} {"cache_key":"133debfd7db44a5af720e7fb16b8c11e61001736a2e5287bee2e0b19a729dfd0","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightModel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Most used model","text_hash":"a13c86cd4f835d2c2b5af940171ede2a27e0f805cef070d87628f1bd333bb706","tgt_lang":"fa","translated":"پرکاربردترین مدل","updated_at":"2026-07-09T11:29:16.474Z"} {"cache_key":"137bc81b44fac5bd013153ed2270e1dc1beeb16eec10ccd80f7922a55a8c4a61","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"fa","translated":"گاهی سر می‌زند","updated_at":"2026-07-09T20:51:59.140Z"} {"cache_key":"13f663da7d5d1b243727bb0c9a05e00b7a4c4611b3b6535c6786ac4809fb81ea","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"fa","translated":"رشته","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"14160078de1ee3ae94b667d248d532efd92386a5b90d43494d5848e014c5223b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"fa","translated":"تخصیص‌نیافته (از {agent} استفاده می‌کند)","updated_at":"2026-06-17T14:17:45.318Z"} {"cache_key":"141af5cbd195c30628ce0abc754dcf0295c13afb9fa5d5d48ca055bfaa04da26","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"fa","translated":"checkoutهای ایزولهٔ مخزن که متعلق به OpenClaw هستند.","updated_at":"2026-07-05T21:01:42.282Z"} +{"cache_key":"14542177b3de1b17b74a2dd5039ebc3669185bba6ced3cbd3f603b069d96aeac","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"fa","translated":"فعال","updated_at":"2026-07-10T02:29:41.859Z"} +{"cache_key":"15282635e242e70c7084243df9281cbad73ae0ac22a6009a9aaa95297a755370","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"fa","translated":"زندگی روزمره","updated_at":"2026-07-10T05:22:47.120Z"} {"cache_key":"16525f5aea2d6b2307258e508cd69adc2349c618e789d953c102238874ab3574","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.emptyTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"A fresh shell","text_hash":"da0d613f0ec767755258b8a2c43bec5d305997daeca16068dc927fbda8194378","tgt_lang":"fa","translated":"یک صدف تازه","updated_at":"2026-07-09T11:29:07.982Z"} +{"cache_key":"16855a4104a4176040edfdcc4b9600200020716fae57e4cf2afbe48b5d8270c4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"fa","translated":"سرورهای Model Context Protocol را متصل کنید تا ابزارهای بیشتری در اختیار عامل شما قرار گیرد. تغییرات برای نشست‌های جدید عامل اعمال می‌شوند.","updated_at":"2026-07-10T02:29:48.669Z"} {"cache_key":"1738c6f38084a9682b2810ea3320e5e0660e194b508a383fac0e4810c30f1c82","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"fa","translated":"{count} کارت","updated_at":"2026-06-17T14:17:45.319Z"} {"cache_key":"17ce746694204cec8dc74f98f01769251f6c37757123313fb90bc06aa09bc8fc","model":"gpt-5.5","provider":"openai","segment_id":"languages.hi","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"हिन्दी (Hindi)","text_hash":"fab2abfce45382f3031c59477017700a8cb5dfaf8d15379dc24304809b97c7d5","tgt_lang":"fa","translated":"हिन्दी (هندی)","updated_at":"2026-06-26T21:43:47.038Z"} {"cache_key":"17e64fac814266c19de761a46e20742c96bdd2a566b5e2868f153f29d87aaa5d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"fa","translated":"گروه جدید…","updated_at":"2026-07-05T14:40:24.519Z"} {"cache_key":"1924d681d5364c4a38b5ee7c5acc960841cfbedffdb14456778e58aa596aaae7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"fa","translated":"صدا","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"196b631e1aa644da1a172721644d1fde9ba7fde80373610df4398549c87a5721","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"fa","translated":"کد QR جفت‌سازی منقضی شد","updated_at":"2026-07-01T10:34:16.869Z"} -{"cache_key":"1b7565c08dd5a1d5f97fbf5fa1ce0c05c878822ac89aad5efb6c63d8e0999abe","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"fa","translated":"{name} · نخستین بازدید در {date}","updated_at":"2026-07-10T04:20:48.335Z"} +{"cache_key":"19dd2d7023bb1b4b3f42e7f42128546d7bb68f8bad408f1079759031608d008c","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"fa","translated":"در حال کپی هش کامیت","updated_at":"2026-07-10T09:47:52.730Z"} {"cache_key":"1ccc8296bd027e777d834e2740449b34b1e1ab06122e1ad5d41ec51c5f31501b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"fa","translated":"بازبینی","updated_at":"2026-06-17T14:17:45.319Z"} +{"cache_key":"1cfd6082baff0ad39fbfbe93f7e7bdb452f44837d0d7c49dea2294db970eeb09","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"fa","translated":"در حال انجام…","updated_at":"2026-07-10T04:28:56.671Z"} {"cache_key":"1d0f48781e0038ebada1e02f24050dc850846ca2b4f988391494eedb79065316","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropOpenHere","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Open here","text_hash":"b08e2fd2e872adcb575b305187b9db8482369325806953ce80190fc2dc1ab9fb","tgt_lang":"fa","translated":"اینجا باز شود","updated_at":"2026-07-06T22:56:40.069Z"} {"cache_key":"1df0a4f6639bc40cdeedb8ed45d6c0e100dde9562eaf495d85e426cf0b8be4af","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"fa","translated":"هیچ میزبان Codex پیدا نشد","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"1ef38d19380701c599cab94e903fcaa8728b53a44fc444fa663441300acc1b61","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"fa","translated":"اجرا","updated_at":"2026-06-16T14:18:33.052Z"} @@ -43,26 +52,42 @@ {"cache_key":"211808ad4057ea2574f193a078323bc6ea34678d4299464412d791f2766b8d7d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"fa","translated":"بایگانی‌شده","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"215b066cf00800ad3f2cec68a670dceb596eb664356d3463ce00848308c55b96","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"fa","translated":"حذف گروه…","updated_at":"2026-07-06T23:41:23.355Z"} {"cache_key":"22c97977faad358e140c105c69876203f2f8c233cb6673f3497c9ebd3b917fc7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"fa","translated":"در حال بارگیری نشست‌های Codex…","updated_at":"2026-07-09T10:01:43.762Z"} +{"cache_key":"239f49b0beedd60a752fe6e17aca9c888b394ef5a42ae6c4c5b6629cbe5ffc52","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"fa","translated":"جستجوی ClawHub","updated_at":"2026-07-10T02:29:34.621Z"} +{"cache_key":"23ed82b4a4b15bcc780cf6240c35a9201211c4f4f7acd4d7fbbe4e60f21db193","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"fa","translated":"در حال نصب…","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"240e6847ead3e1a3c6f49d6911161c4c900cd2a687d64e70eec4e88bef03e2d6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"fa","translated":"~{percent}% از زمینه استفاده شده است ({used} / {context} توکن، تقریبی)","updated_at":"2026-07-09T07:40:52.285Z"} {"cache_key":"246108e4471b049fcc78604e95359cf30bfc4f8f9a15e069f895cde99819646d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"fa","translated":"۳۰ث","updated_at":"2026-06-17T14:17:52.321Z"} +{"cache_key":"2556b77943466a7002e539c969719a0637a2a788aba59ee89a420f452dcb9ca1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"fa","translated":"یک سرور MCP با نام «{name}» از قبل وجود دارد.","updated_at":"2026-07-10T02:29:48.669Z"} {"cache_key":"25fa1adabe1bd8f847dca479d7019cd4ea5cb642892834c47e6ab1658a457651","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"fa","translated":"باز کردن چت","updated_at":"2026-07-09T08:27:31.288Z"} {"cache_key":"2754a677cfafa13131151a18eccc186871c08bc514d1d4bbe224c61db20114ef","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.runDuration","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Run duration","text_hash":"b5e9698b25697ec71f0947df28e6b08438033fe73b1b87ac7362766d77b45b97","tgt_lang":"fa","translated":"مدت‌زمان اجرا","updated_at":"2026-07-09T10:13:33.548Z"} +{"cache_key":"275cc16cfb79eca30ab3300a688e60763d5d7ee7dd79906403282e56365cdd1c","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"fa","translated":"کپی هش کامل کامیت","updated_at":"2026-07-10T09:47:52.730Z"} +{"cache_key":"27bc1d99984b83205c0ac99ccc2de393e8d4e450a227ab8623a8764b28c81586","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"fa","translated":"فیلتر کردن افزونه‌های نصب‌شده","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"27bddaa81a39838a7db147c71a1cf70ecaf8f77fdb02dc4044429510d81a2af8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"fa","translated":"نشست","updated_at":"2026-06-16T14:18:40.803Z"} +{"cache_key":"27ddab9d5d364cba5b27ef254fa4a2b1065d5c5b4cd70f506093ac7dce81e729","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"fa","translated":"بسته","updated_at":"2026-07-10T04:28:56.672Z"} +{"cache_key":"2848bd75794d9b5f95549cfae30e2aad5db7cbec239a461d72a0814c8a2299b6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"fa","translated":"{name} اضافه شد. نشست‌های عامل جدید می‌توانند فوراً از آن استفاده کنند.","updated_at":"2026-07-10T05:22:47.120Z"} {"cache_key":"288b7d325a0a012c988365dc4f25865247bd4e9ad36b28fe64602aa592730e03","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"fa","translated":"۶۰ث","updated_at":"2026-06-17T14:17:52.321Z"} +{"cache_key":"28e9c2821c465c32d10261df33b0fea1014ff62e9963c53ff03454a6d78b2fb8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"fa","translated":"کانکتورهای MCP با یک کلیک و جستجوهای دست‌چین‌شده ClawHub برای سرویس‌های محبوب.","updated_at":"2026-07-10T02:29:41.859Z"} +{"cache_key":"29060227d9d274d9d27f2fa2234c2329805ea03f3bb981b1a2d046282f590b36","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"fa","translated":"سرورهای MCP","updated_at":"2026-07-10T02:29:48.669Z"} {"cache_key":"29dba06f16068fd8716d198b026fbaed45ecea4d0d046a6554b57f2134550e7f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"fa","translated":"دیروز","updated_at":"2026-07-05T14:40:24.519Z"} {"cache_key":"2a0c4156e119cbbee60b0fcd324e244a6a5d929ee42825aa597fb1bc0d96689a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"fa","translated":"{parent} (موجود نیست)","updated_at":"2026-06-16T14:18:40.803Z"} +{"cache_key":"2a4ac6e5eac6bf0c8e162300621c5bc8166c7b940470252d6320ee3b734e9acc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"fa","translated":"جستجوی ClawHub","updated_at":"2026-07-10T02:29:34.621Z"} {"cache_key":"2a518a5678410988058a5f5bb49f7a7b252650d0ca7de4c6f5a5d6d15a3a1315","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"fa","translated":"توضیحات","updated_at":"2026-07-01T01:08:55.386Z"} {"cache_key":"2b1b9981385dc36bb434bc7476b11429425bad33554f5b327d04d00a9c4a11d8","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"fa","translated":"دسته‌بندی هزینه‌ها","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"2d11072c42f933f7842f3cceb8de9f651f2b179dd0c953f0f596df8b1664bf83","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"fa","translated":"به‌روزرسانی شده","updated_at":"2026-06-16T14:18:33.052Z"} {"cache_key":"2d1220fb5d1e1ac75ebcd5d80f60798476e1216f2d446d453e9673e885e9800b","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"fa","translated":"عامل‌ها و ابزارها","updated_at":"2026-07-09T08:08:16.435Z"} +{"cache_key":"2d2ccb95169d4dbcd4cf5b495708855ae01422c73b1cb1a89ca8c9ce5329ad62","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"fa","translated":"سرورهای MCP","updated_at":"2026-07-10T02:29:48.669Z"} +{"cache_key":"2d53004e6c21c1d9644c01ee68777fcf5f7a5a028b213b69557ae1448cc56adc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"fa","translated":"افزودن","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"2ee65e729d94fff0769b41baf5bdf74d640b0e58ac9437b408e266d70e92c96f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"fa","translated":"جست‌وجوی عنوان نشست‌ها","updated_at":"2026-07-09T10:01:43.762Z"} +{"cache_key":"2f3877a0e8fccfadd00afcdcad46c8521089453a8a3fd10c327db297ce882798","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"fa","translated":"حذف","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"2fd4392dfaf76c78038a7ddd7fd6dced4b6ec2dbed11056e095fe62fd076c629","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"fa","translated":"CWD","updated_at":"2026-06-16T14:18:51.277Z"} {"cache_key":"2feec81b1654cf0057d324856c0536f0661f62c172b22511711d1e8fda80e8e1","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"fa","translated":"مرتب‌سازی نشست‌ها","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"3043c3a4d9b51e83d569074ad899dbf4bd1a12653772146156a62646579a936b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"fa","translated":"در حال اجرا","updated_at":"2026-06-17T14:17:52.321Z"} +{"cache_key":"30e79f895769570b16b93fdaf945464bc1aa4b0ea76a4529ad302823a455641a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"fa","translated":"سرور MCP {name} حذف شد.","updated_at":"2026-07-10T02:29:48.669Z"} +{"cache_key":"315d50c65788308d761b58af9ea7dd8b4d1c914a8435904e0318d9b0b933a17b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"fa","translated":"نصب‌شده","updated_at":"2026-07-10T02:29:34.621Z"} {"cache_key":"316aa7b9304ac30c4d26694465014d8ff4eca58dfb71822f7a163836da9053d2","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"fa","translated":"خلاصهٔ نشست‌های Codex","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"317233cf69aa7c7942ea3b328bc724085bb06033f56910b9a42c1043fcd12737","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.badge","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Expired","text_hash":"424a2551d356754c882d04ac16c63e6b50b80b159549d23231001f629455756e","tgt_lang":"fa","translated":"منقضی‌شده","updated_at":"2026-07-01T10:34:16.869Z"} {"cache_key":"32e0d1bdd04f130b00e0718b0ebed90958b0875623b912d6145507c0e8baf245","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"fa","translated":"وظیفه Gateway","updated_at":"2026-06-16T14:18:33.052Z"} {"cache_key":"32f1e914cfc5fcd233cace073db522ce826001256f64f83a1dcb043ff3f8806e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"fa","translated":"{agent} (پیش‌فرض)","updated_at":"2026-06-17T14:17:45.319Z"} +{"cache_key":"33e394aed6858776bc5cf7dfb49613982414b72b8d18273c02fcde4a75b79553","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"fa","translated":"کاتالوگ افزونه‌ها","updated_at":"2026-07-10T02:29:34.621Z"} {"cache_key":"34247c74b77dc230f0e6cf7360f33d541612a97fdfcfaa4a7ba8c47e8978d5d2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"fa","translated":"گسترش فضای کاری نشست","updated_at":"2026-06-16T14:18:40.803Z"} {"cache_key":"3465f4a8bced38427549c0d237a1be554626be93a770b0d70fa6ba163619a6a6","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.open","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Open split view","text_hash":"51e50f7be73433216ae62f58fdbc586372f5a6063ee9978cec96793ef75fa554","tgt_lang":"fa","translated":"باز کردن نمای تقسیم‌شده","updated_at":"2026-07-06T07:24:38.563Z"} {"cache_key":"3549b017867e8d0d7f5a231a9a30f74657f581de516a5122ed46ba00c5ffd8ff","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"fa","translated":"همهٔ نشست‌ها","updated_at":"2026-07-03T07:41:31.088Z"} @@ -72,28 +97,44 @@ {"cache_key":"37ba663729434a52b22ecda031314d7c8c5454bf764c962ecba4821741470b83","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightSessions","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Sessions tracked","text_hash":"b1b77d34c51bc94340e818faacf7b2271593f409d75d7be9be7a5a12047775f0","tgt_lang":"fa","translated":"نشست‌های ردیابی‌شده","updated_at":"2026-07-09T11:29:16.474Z"} {"cache_key":"37d6810f12a34abc693ec49db4c8271c02cfd1ed007b94c6b41532c0b9f22766","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.emptyBody","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No token activity yet. Send your agent a message and watch the reef light up.","text_hash":"372d6a37efc587e1d6c91c0229222235c6ec6a6ffd0d7545874ce359afb33e04","tgt_lang":"fa","translated":"هنوز هیچ فعالیت توکنی وجود ندارد. به عامل خود پیامی بفرستید و روشن شدن صخره را تماشا کنید.","updated_at":"2026-07-09T11:29:07.982Z"} {"cache_key":"38426fef38dda50c8fca4cdedc6abdd3b1c41e558e76db703e60483b2742ada4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"fa","translated":"در حال بارگذاری فضای کاری نشست…","updated_at":"2026-06-16T14:18:40.803Z"} +{"cache_key":"3844d71a7e31fecd8bfd22209cbd474450007e3762e5b1c70bdb90f3e54f578a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"fa","translated":"فعال","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"3a1da7b41d8ee65b23949bf1abaf9705e0de41a4c55b01e744ea1b683e55b6d1","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"fa","translated":"کارگر {state}","updated_at":"2026-05-30T15:38:53.293Z"} +{"cache_key":"3a3a63a79c6f3f3d31e9dbb7bbbf8afc9406e9a538aabd846bfc8fa2772ba148","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"fa","translated":"نصب‌شده","updated_at":"2026-07-10T02:29:41.859Z"} +{"cache_key":"3b8ecb1737ec2422548823458cb492886058029e0adc5337fac46d22826701e7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"fa","translated":"موردی برای کشف مطابقت ندارد","updated_at":"2026-07-10T02:29:34.621Z"} +{"cache_key":"3be2c8c124b0259472d9bbde150b28c6afda90feee55770b3363f246279abce8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"fa","translated":"یافتن در ClawHub","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"3d2eb68df093e6f9a943c592cd7dc14f4b9d99421765e8d193c70633beed1347","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"fa","translated":"{count} نشست","updated_at":"2026-07-05T14:40:24.519Z"} +{"cache_key":"3d8f3c88dd2e07352938ce75d769439e73f81b301d14cb1314c5833082e77f45","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"fa","translated":"برای مرور افزونه‌های نصب‌شده و پیشنهادی متصل شوید.","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"3e05e72c9422a78fa72630913257bafdcdaff9364c6993f0c5e2d96767f89c9e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"fa","translated":"نامشخص","updated_at":"2026-06-16T14:18:40.803Z"} -{"cache_key":"40675d198f8305e70231d8eef3afc27b15275c587b0c6ad79288989b0768e0c0","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"fa","translated":"سنجاق کردن به سمت راست","updated_at":"2026-07-10T06:08:51.724Z"} {"cache_key":"4103b68e48bfb3930a7103c17e1ba4970798ec19d005c5791225e9af7080af39","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"fa","translated":"ناوگان Codex","updated_at":"2026-07-09T10:01:43.762Z"} +{"cache_key":"41ed772137fdde4e730d83fe891fe1ba7b21487b6173bd7594b6e56147287847","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"fa","translated":"توسط اتصال فعال Gateway گزارش شده است؛ جدا از این ساخت Control UI.","updated_at":"2026-07-10T09:47:52.731Z"} {"cache_key":"428f719b369945468e4b8642bce810e0dc87d36d10f11bef20c506cac8033478","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"fa","translated":"۷ روز","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"434bdc8c21436422111741de3c7ae60451aba5af5e5a2bd761ee7a6bbeeb6bd9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"fa","translated":"{name} فعال شد.","updated_at":"2026-07-10T02:29:59.743Z"} +{"cache_key":"4370639b3bd002c6777700aec55b12a4385f094ab94212da97d462afa724fd1e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"fa","translated":"پیش از نصب این افزونه، هشدار ClawHub را بررسی کنید.","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"4461c9ad4601305a9fde4d4094d9d53bab5967650c1d67a38cd24dd26a051a97","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"fa","translated":"پیش‌فرض سیستم","updated_at":"2026-07-06T17:34:07.650Z"} {"cache_key":"44d901f74425e595db46734b1b94bbddb45762fb5050a4933bca0c26119d36e7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"fa","translated":"فضای کاری","updated_at":"2026-06-16T14:18:40.803Z"} {"cache_key":"468fabb586fab6dc1480546a63031cbe1bc8e6e4b008b2f4f8e37c6e6dda4aa4","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.offline","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Connect to the gateway to meet your agent.","text_hash":"8804d65574fee21ed454bc82cb65b5ac8f0320877b5e4db12230aa665cd86f18","tgt_lang":"fa","translated":"برای دیدن عامل خود به Gateway متصل شوید.","updated_at":"2026-07-09T11:29:07.982Z"} +{"cache_key":"46e4cf7a12c1b05aaa42ed4aedabb1da92d19ccdf95bcbabd93624b02e737c63","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"fa","translated":"در دسترس","updated_at":"2026-07-10T02:29:53.714Z"} +{"cache_key":"48d14c2b04a10b63c5213fa466ff23abad4f8250a4d5c628b7844d7ef91728c1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"fa","translated":"یک URL با http(s) یا یک خط فرمان وارد کنید.","updated_at":"2026-07-10T02:29:48.669Z"} +{"cache_key":"49d401ffe3bd0b5d5a6eb8758484bda97744343956af2e424a4b3722662161a5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"fa","translated":"سرور MCP با یک کلیک","updated_at":"2026-07-10T02:29:41.859Z"} +{"cache_key":"4a17b9f4564536ab3bffc9afcc81ae649e96831edf8d70e2535b3f59d31b5cbd","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"fa","translated":"هش کامیت کپی شد","updated_at":"2026-07-10T09:47:52.730Z"} {"cache_key":"4a2cd58d849e04841d7cc035ec2c90d722c4fed30f648da173044275addefb73","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"fa","translated":"یادداشت هدف","updated_at":"2026-05-29T21:02:42.628Z"} {"cache_key":"4a3631b1de4f0038e13852ba889c0579e75b92c151b73bcd017e79639eba843f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"fa","translated":"متوسط","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"4a7cdc918cd24fcaa66a9fa1dfe14f874adb3b9e2f0e34fb98d955c4b5f76b2b","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"fa","translated":"Worktreeهای مدیریت‌شده","updated_at":"2026-07-05T21:01:42.282Z"} +{"cache_key":"4aa196691b5cc4b688cae7f6ec9b3463d893068c194db9ac205adb56db151863","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"fa","translated":"در حال حذف…","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"4b3410a4b6f516ceee53cb8bd3f9908586ff34f7f7d0f5ad67f0a25b872596e5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"fa","translated":"به‌روزرسانی‌شده {time}","updated_at":"2026-06-17T14:17:52.321Z"} {"cache_key":"4b6472dcc14bdd218a7c81a4726ba11adcf65be4b4dfee6b7862f382cf2a573f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"fa","translated":"تغییر نام گروه","updated_at":"2026-07-06T23:41:23.355Z"} +{"cache_key":"4ce34a17ab122c1e2fca63f51b1f80602adda367d6e55c9ad39a0b417b2e2d4c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"fa","translated":"{name} نصب شد. برای اعمال تغییر، راه‌اندازی مجدد Gateway لازم است.","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"4d3c86d94fd85e9d9f21b4b00ec5cf11986ea1bfecac0f25d6172bd88637b7ed","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"fa","translated":"بدون اثبات","updated_at":"2026-06-17T14:17:45.319Z"} {"cache_key":"4d4680d85cdd0c8e71b3cb4dcd35e0d93eb29f23d31119f9824b7ccb7e3c4c8c","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"fa","translated":"هرگز سر نمی‌زند","updated_at":"2026-07-09T20:51:59.140Z"} {"cache_key":"4def9f34a07feae1025733ee9857308490da54ed5b970caf4461a2aac7c59a1f","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"fa","translated":"کارگاه Skill","updated_at":"2026-05-31T21:48:45.878Z"} {"cache_key":"4dfb6434ff56cafe2e4b8175612eb9ba0fde672173c9f01a64c67378698dbf42","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"fa","translated":"ورودی‌های میکروفون مشغول هستند یا برای مرورگر در دسترس نیستند.","updated_at":"2026-07-06T17:57:28.025Z"} +{"cache_key":"4e0c6a2fb934781f148603e330e9ac1ab072023bcb89aeebc1ffdf88f9e97121","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"fa","translated":"فضای کاری","updated_at":"2026-06-16T14:18:40.803Z"} {"cache_key":"4e41722247f5928aa983600766abc42f0d9b7d06088d20a0de5281dd1f9001cc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewBlocked","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Blocked","text_hash":"18f2a0947f9d6523991b29b450307f22773f57d65f7efb98d48a167df04d6b1d","tgt_lang":"fa","translated":"مسدود","updated_at":"2026-06-17T14:17:45.319Z"} {"cache_key":"4ed844342b0928cd4d9ffeb5b4d1427a15d3c9e98f72409a8d87bc7044da1bc3","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"fa","translated":"امروز","updated_at":"2026-07-05T14:40:24.519Z"} {"cache_key":"4f05e9e5fbf924ac2f46d0911f2a6cb352db867595de5e9f02fa06e83f15e8bf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"fa","translated":"نما، جست‌وجو، اولویت، عامل یا فیلتر بایگانی را تغییر دهید.","updated_at":"2026-06-17T14:17:52.321Z"} +{"cache_key":"4f458943044a1ea109420011e997d1bf31f5d4d8dee592f1f52b3fce49507131","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"fa","translated":"قابلیت‌های اختیاری را نصب و مدیریت کنید.","updated_at":"2026-07-10T02:29:34.621Z"} {"cache_key":"5041238e315bbd454dc532fba706052bdb36409f20e76ee2f5990aacacb0bb5d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"fa","translated":"فضای کاری: {workspace}","updated_at":"2026-06-16T14:18:33.052Z"} +{"cache_key":"51fd05d2fba97b878cea4ac0de018c028685edb9fcdb6a407e81549ab8f42cc3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"fa","translated":"مشاهده جزئیات","updated_at":"2026-06-16T14:18:33.052Z"} {"cache_key":"52148bd591542bf023502ed432ff714e900777dc4091852c878236b87f216a5b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"fa","translated":"ضربان {age}","updated_at":"2026-06-17T14:17:52.321Z"} {"cache_key":"528bce1b7c5f56a28292059a5935ae8bfbfbd51cfee36a96215dd2014853d030","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightAgents","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Agents in the reef","text_hash":"050a0a3d70a5c89d65789f7983024ee9eb2539cee6c2e0b31677ac78b0cd3534","tgt_lang":"fa","translated":"عامل‌ها در صخره","updated_at":"2026-07-09T11:29:16.474Z"} {"cache_key":"52a44a8820498d716fa527ae298f7d686ec3003153e12f5d1d63761ceffb7ba3","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"fa","translated":"بایگانی‌شده","updated_at":"2026-07-09T10:01:43.762Z"} @@ -104,133 +145,187 @@ {"cache_key":"54f6994e3750dbd7323dbd8b20483a39ab026f46d87a9e3cf36159c62c31ca24","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolsEmpty","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No tool runs recorded yet.","text_hash":"9db22f17f7e8e1c3f86b168cde0d59ef62ea10f4363e51f802a5a06f341dc343","tgt_lang":"fa","translated":"هنوز هیچ اجرای ابزاری ثبت نشده است.","updated_at":"2026-07-09T11:29:16.474Z"} {"cache_key":"55987550ac4e25ceeae5eae0494a23e5210038cfd9b1c39476d7643ef9c23f70","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"fa","translated":"Realtime Talk به دسترسی مرورگر به میکروفون نیاز دارد.","updated_at":"2026-07-06T17:57:28.025Z"} {"cache_key":"559e2b5c160f48b34db11fc54d811601888ed2667203f5ee61798fdcb822d07a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewAll","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"All cards","text_hash":"2306120917506b5998ec702f3661068b102dac538ba4c9e4634d65fe33eea98a","tgt_lang":"fa","translated":"همه کارت‌ها","updated_at":"2026-06-17T14:17:45.319Z"} +{"cache_key":"56f8483ffd2d0bbfd71125573ced06e99964c91e4477ac4d19c30a24e6662708","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"fa","translated":"{name} افزوده شد. با «{command}» احراز هویت کنید، سپس gateway را دوباره راه‌اندازی کنید.","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"5710533c7d04197ac77d8547c66752f87b519b8ef33d754d9aea924f4b8a3cb3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"fa","translated":"{count} محصول","updated_at":"2026-06-16T14:18:48.731Z"} +{"cache_key":"57754fceb3c00a992a3b3e1c9bd27e8fa97e15d7bc9c1b1b757a6e243790e183","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"fa","translated":"پیکربندی در دسترس نیست؛ بازخوانی کنید و دوباره تلاش کنید.","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"5863495565b12e8d3047698ceff4e752f749f31a336f4efe9f1c1648cb50d68c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"fa","translated":"فعال","updated_at":"2026-07-09T10:01:43.762Z"} +{"cache_key":"58894804d1cb545fa07e9520840573346ba5a561867661f9d45dfa174a37fd28","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"fa","translated":"هش کامیت کپی نشد","updated_at":"2026-07-10T09:47:52.731Z"} {"cache_key":"58d620da3ec92697d4c51048df4e33a7d8b581a2e4d7cfd20f195509f8736f44","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"fa","translated":"جمع کردن فضای کاری نشست","updated_at":"2026-06-16T14:18:40.803Z"} {"cache_key":"58e8de5e9c2f8debeaefaf49ae061ef8b680961cd3d771cec1bd82e60d4a1d14","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"fa","translated":"تراکم فشرده کارت","updated_at":"2026-06-17T14:17:45.319Z"} -{"cache_key":"59786e8fbbea320dd7e26da6e2a28306cc95b35da8e4b852d8f7c4e009d616ad","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"fa","translated":"{seen}/{total} بازدیدشده","updated_at":"2026-07-09T23:56:21.146Z"} {"cache_key":"598b6c3f8a2ee42cf6b9dba26109c112b92a4846b2025c169185416fc7f20af2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"fa","translated":"عامل پیش‌فرض","updated_at":"2026-06-17T14:17:45.319Z"} {"cache_key":"5a07e742954475a4ef7f054717fb30982e844339e4474d3089641ecdcb08d0c3","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"fa","translated":"پیوست اضافه شد","updated_at":"2026-05-30T15:38:53.293Z"} {"cache_key":"5a31206b9b7175ff25ee5a3ba5d502038d75bdb2a3f02bd09c28bc3eda56f80b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"fa","translated":"{count}س","updated_at":"2026-06-17T14:17:52.321Z"} {"cache_key":"5c5720ff11bdaa3f9435166a4cd86421f113055880f4adfc7d3d8baaefcaf1d8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"fa","translated":"{count} مسدود","updated_at":"2026-06-16T14:18:40.803Z"} {"cache_key":"5cfc6c543779ba2ab7dd243ef6285305b91e7d3aba3d5ac1ab4d873a3bbfe17b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"fa","translated":"تخته: {board}","updated_at":"2026-06-16T14:18:33.052Z"} {"cache_key":"5d02685e42721e341cd168e7cbcdf95c471ead0c80e8d5ef243a55160d016743","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"fa","translated":"کانال","updated_at":"2026-07-05T14:40:24.519Z"} +{"cache_key":"5ed46879983735f7df46ee40587335af9da1398ddf026a71727180b89c82fb85","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"fa","translated":"افزونه‌ها","updated_at":"2026-07-10T02:29:34.621Z"} {"cache_key":"5efe077a47da32377d03bbfc99eff19de42c5b5947317df410c0b5c81b7760c5","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"fa","translated":"اقدامات پیوند","updated_at":"2026-07-09T11:03:16.390Z"} {"cache_key":"604759b69ecb40fc0facc317775f0798f0ded8d565e07bbb0422fe9641380aba","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"fa","translated":"موجود نیست","updated_at":"2026-06-16T14:18:40.803Z"} +{"cache_key":"60a6f7bb88364ed5e3c294cca5b0ed3a1c1b8a7dd0952419119e1d00933c82b6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"fa","translated":"در حال جستجوی ClawHub…","updated_at":"2026-07-10T02:29:34.621Z"} +{"cache_key":"610bd9fda0ae0d02157201cd09cfb36e00def15605a78e11f67243f25e461b76","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"fa","translated":"قابلیت اختیاری OpenClaw.","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"6166886b96a12220c55e021fe5dfbcb01cb33f734b66131661b4d60f5f5a9366","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"fa","translated":"بدون اثبات","updated_at":"2026-06-17T14:17:52.321Z"} {"cache_key":"62bf97a37d8fce155de13dcc7ef7f77c4ed9748f4edf876ddcc4dac7caff6f08","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"fa","translated":"Worktreeها","updated_at":"2026-07-05T21:01:42.282Z"} {"cache_key":"6333407525350a140f79b877b4d0ad7615f69fa188b8d7e135bd517b71756a4d","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"fa","translated":"{count} گزارش کارگر","updated_at":"2026-05-30T15:38:53.293Z"} {"cache_key":"6432f8801093dc43a18bb419855a447ad5e633319fbdd88edf23fd9b1c1220ab","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapCellTokens","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{tokens} tokens","text_hash":"507a17952dbcbb44f1b9ffff34ec5fc71563ca5d60c07c5fa9ab68339e462139","tgt_lang":"fa","translated":"{tokens} توکن","updated_at":"2026-07-09T11:29:07.982Z"} +{"cache_key":"643aec3d030769cbe13b6a9aa55d47c9d14563dcf3ec67f944c921bd44277012","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"fa","translated":"سرور MCP «{name}» در پیکربندی پیدا نشد.","updated_at":"2026-07-10T02:29:48.669Z"} +{"cache_key":"656fb52c79ad47177fe49b17310b6272f5950034f4555cf702fe3c720bfbc1ac","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"fa","translated":"Control UI","updated_at":"2026-07-10T09:47:52.730Z"} {"cache_key":"666789db33683ac88abb27c19051141a2af2b80fbc5c995660a651f2e416a7b8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"fa","translated":"اثبات","updated_at":"2026-06-16T14:18:33.052Z"} +{"cache_key":"6756f55dfae48694cec4027de35147df63c7769e68a048ab4a0141d8a1a413a6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"fa","translated":"ابزارها","updated_at":"2026-07-10T02:29:48.669Z"} +{"cache_key":"67a5c7b430110244be28759eb94fc9b97262c2cbba4d1a44d96c44c830d57668","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"fa","translated":"رسمی","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"68f97a04f4df96a686940d481efb3863e5465f11e025a13b4d96ceee8c4c22a2","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"fa","translated":"برای تازه‌سازی نشست‌های Codex دوباره به Gateway متصل شوید.","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"69c830977b325402a0cab6568391f89cb567dfa2cf0e814dc92a33b9d60cb226","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"fa","translated":"حالت رنگ: {mode}","updated_at":"2026-07-07T08:47:43.218Z"} {"cache_key":"6acf68c26aafd00f81ddfacaeed9c9ba4ef0a759cef3a6b9a284efeafc2d3421","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"fa","translated":"هیچ worktree مدیریت‌شده‌ای وجود ندارد.","updated_at":"2026-07-05T21:01:42.282Z"} +{"cache_key":"6ad2b529fa39c41a94db484ffe415eee0a3e18eaed29391f0e7d59828099736e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"fa","translated":"{name} نصب شد.","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"6b2877bff7513e753f4072c979be10735d325720a1819ef736aa1357850707b7","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"fa","translated":"استفاده از زمینهٔ جلسه: {used} از {limit} ({pct}٪)","updated_at":"2026-07-05T10:16:36.046Z"} +{"cache_key":"6b43e9076bccf4e451cab74e34919dce2416dca8c11dbb30c93d4a095293c045","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"fa","translated":"هویتی که هنگام ساخت این آرتیفکت مرورگر در آن تعبیه شده است.","updated_at":"2026-07-10T09:47:52.730Z"} {"cache_key":"6bca5b0ad3ad40192974d625c9521600018a08d3a4018d5b50cb9528b2996b08","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.channelChipTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{tokens} tokens on this channel","text_hash":"2f961c917719fceaa0b9fd222ea8590637986dce227e23deeeaf63b6cf11e9f8","tgt_lang":"fa","translated":"{tokens} توکن در این کانال","updated_at":"2026-07-09T11:29:07.982Z"} {"cache_key":"6cc20a81aa5f0f568c50d432a86fd0e96c8bd9ea1b35d1211ad064ede00e7b03","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"fa","translated":"امروز","updated_at":"2026-07-05T14:40:24.519Z"} +{"cache_key":"6cff595b6154d05f4cf428a568906b9adb0141049691734929dbe1869364bf02","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"fa","translated":"جستجوی افزونه‌ها","updated_at":"2026-07-10T02:29:34.621Z"} +{"cache_key":"6dfa30597413a31f2f085ec5fdc6541594a2c84571533cdd5c07084990cc3bcf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"fa","translated":"دسته‌بندی","updated_at":"2026-07-10T04:28:56.672Z"} +{"cache_key":"6e3738c452977a0d218571dd2534752f830fed3926026d228e6184da01a86cef","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"fa","translated":"کشف","updated_at":"2026-07-10T02:29:34.621Z"} {"cache_key":"6e3f54b8e3bcbde213c3d56867a41e7beb31c8adc28684a83a1f32dc9bfe9de0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"fa","translated":"جزئیات کارت","updated_at":"2026-06-16T14:18:33.052Z"} +{"cache_key":"6e67b9a3d8511a5b0a57d9b900403e999c240b5fe7c9288c1f9afbe4f1100aab","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"fa","translated":"نیازمند توجه","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"6e999e5d61688afc736924ed06b678c8a17b5e0ddb842cceb65dcd2cb2dc6e49","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"fa","translated":"به‌روزرسانی شده: {time}","updated_at":"2026-06-16T14:18:33.052Z"} {"cache_key":"6eb011c90346fe17d02cd816e174da805f295354d65abe887491744e3ce8dbe2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"fa","translated":"کهنه","updated_at":"2026-06-17T14:17:45.319Z"} +{"cache_key":"7014f33a2469fd4c9896c4caf648b9a1df29be50bc26ea3c80bf0fd34e33c905","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"fa","translated":"کامیت","updated_at":"2026-07-10T09:47:52.730Z"} +{"cache_key":"710bd4a9d540f547884cf97067adbae5768601b8f6e917fd1b538092f508fa91","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"fa","translated":"سرور MCP {name} اضافه شد.","updated_at":"2026-07-10T02:29:48.669Z"} {"cache_key":"7112bd25fad629c011f1154000a9bf230a9268c52dfe9adbe0b526b4143ecd13","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightUniqueTools","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Distinct tools","text_hash":"fba464c701baf969580caaec17d4b305c85824e189a770ce3c6ff4b6fa120989","tgt_lang":"fa","translated":"ابزارهای متمایز","updated_at":"2026-07-09T11:29:16.474Z"} {"cache_key":"71621eee6d98379ffd8964156dbfbe6448cf1f79fd46cfe4f8df0e0b7557b75a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"fa","translated":"Gateway","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"716258e9530d7c034aab1e55d7fbca11d3437e7b6fff534241286bfc0ef59fe1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"fa","translated":"بی‌کار","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"71d09491009ef87d3af376ce4162e9b18d97162c0d76ba6553a489cc3cd638c6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goal","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Goal","text_hash":"cdbf6975e8a35b0d03558be6822dfae166482c24fb86b0433f60e8167f5c91e4","tgt_lang":"fa","translated":"هدف","updated_at":"2026-05-29T21:02:42.628Z"} +{"cache_key":"7210a888581d83c102d1c7cc3ffc8b602ade738f81fbeaae43666050e6544783","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"fa","translated":"تنظیمات MCP","updated_at":"2026-07-10T02:29:48.669Z"} {"cache_key":"7231b10f0347438999d9cbe059241d1e3899335174a565c80863a7a031b89f16","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"fa","translated":"این مرورگر نمی‌تواند ورودی‌های میکروفون را فهرست کند.","updated_at":"2026-07-06T17:57:28.025Z"} {"cache_key":"723b55b0c0233417d363ebafdd34cb163391b2b5c9c3691fad1f606d7b4a759e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"fa","translated":"به‌روزرسانی ناموفق بود","updated_at":"2026-06-17T14:17:52.321Z"} +{"cache_key":"726792eda784cee6b32b01c9e64a6793d39217196cd5ca714f7b4593c6efc638","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"fa","translated":"پذیرش ریسک و نصب","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"72c96f568a4a0d57a398d2bdf3a40c61fc4194e916df95371139363c25153202","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"fa","translated":"تغییر نام گروه…","updated_at":"2026-07-06T23:41:23.355Z"} {"cache_key":"747a265f95f01bfd49dd8ea372b26125eb7212be312b5fe840e0359bb31c3ab2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dragSessionHint","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Drag to move between groups","text_hash":"3e8692b1cd1c1f9a606a779f1037aa390c885fde224ddb841df9259e8aab03ae","tgt_lang":"fa","translated":"برای جابه‌جایی بین گروه‌ها بکشید","updated_at":"2026-07-05T14:40:24.519Z"} +{"cache_key":"74d67e09fcf4b4cb24463b32677651fa105e5cffad0daa312bb6527935384e0a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"fa","translated":"اقدامات {name}","updated_at":"2026-07-10T04:28:56.671Z"} {"cache_key":"74fd7c55c8d77c652fbd0c38525b3b42a387e52bf27466087f9b6cafd8e65d74","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"fa","translated":"توکن‌های آخرین اجرا","updated_at":"2026-07-05T10:16:36.046Z"} +{"cache_key":"75128659619819642c81c9a56fbca7f023f8f143f25e2ee152dd32cc097bf1aa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"fa","translated":"سراسری","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"76659a8b8a9fa42252f2480601c776c04176bbac7145ed3541cc2213737be828","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"fa","translated":"مستأجر: {tenant}","updated_at":"2026-06-16T14:18:33.052Z"} {"cache_key":"78292b5d7cc8b83041ae63c22675f0139b4ee5ccfe7552a26055e55fa2578c04","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"fa","translated":"پیشنهادها را پیش از تبدیل‌شدن به مهارت‌های فعال، بررسی، اصلاح و اعمال کنید.","updated_at":"2026-05-31T21:48:45.878Z"} {"cache_key":"784c0817653283bfe114c249283313fad95a6c6f19d13e76c60771c8be5e95f6","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"fa","translated":"سیستم","updated_at":"2026-07-09T08:08:16.435Z"} {"cache_key":"7869df26537d18f729ff3ba597b8d1be67944a88dc72000f803614a035531c7d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"fa","translated":"موجود نیست","updated_at":"2026-06-16T14:18:48.730Z"} +{"cache_key":"79f5b3ecc73d2af32188b4b605205acd2526882dc1ed6dd79958f61e67ba880f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"fa","translated":"فعال کردن","updated_at":"2026-07-10T04:28:56.671Z"} {"cache_key":"7a2333364b12463d2ca8db4de6ab60b4d09f725a204e67c34beb7f4425797c80","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapSub","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"A year in the reef — deeper red, busier claws.","text_hash":"906b1cb4b717da013c2b9d075676cbe9d381b56a3385c636a7d4154127e976e0","tgt_lang":"fa","translated":"یک سال در صخره — قرمزِ تیره‌تر، چنگال‌های پرکارتر.","updated_at":"2026-07-09T11:29:07.982Z"} {"cache_key":"7ac26b727fbfea39dc4a648c0a8fd18d122872c7c45cc19188b22dd0bc234345","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"fa","translated":"فضای کاری نشست","updated_at":"2026-06-16T14:18:40.803Z"} {"cache_key":"7b9b8f5b57c6c2237ee041be3bb5ce27aa9e6654476c49b17553efe750574387","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"fa","translated":"نام","updated_at":"2026-07-05T21:01:42.282Z"} {"cache_key":"7bf0af6405064656103a20a37ff1bbf064c3a3a85ef22e84ab4939608bdaf671","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"fa","translated":"برای ارسال پیام، این نشست را بازیابی کنید.","updated_at":"2026-07-02T14:31:11.668Z"} {"cache_key":"7c5fbdbae20ca45446efbb97c35f3829358add3d933da949d623057ca02a3aa7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"fa","translated":"{count} آماده","updated_at":"2026-06-16T14:18:40.803Z"} {"cache_key":"7caf9f422005ab160c8fb0c2428e7e1108400fa60d74c2bea6db3cd752666556","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"fa","translated":"آماده و واگذارنشده","updated_at":"2026-06-17T14:17:52.321Z"} +{"cache_key":"7dbe0d5df4916c2ba80a76d18d23ffde5c5da9c60176c9918815f0f3dc1e0751","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"fa","translated":"امکان نوسازی پیکربندی Control UI وجود نداشت: {error}","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"7df4538c1c227cc07251b3fd40cd3b66c5bc76568041b8ee7bba5cfa293987e7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"fa","translated":"نشست بی‌عنوانِ Codex","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"7f3309f62d0595fb6e9ff8ca60781de37a31f103af496cbabc203b93c5773da6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"fa","translated":"نمای Workboard","updated_at":"2026-06-17T14:17:45.319Z"} +{"cache_key":"7fb66652b708ce47c309aaf3cac2070c9fb7e7861444d89f203e0ab705afcd24","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"fa","translated":"افزونه بسته‌ای","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"8026af1cf3f4d24892cf5c63a38e01a361a38205820019ff800e9896d6e41199","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightMessages","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Messages exchanged","text_hash":"3e0eaa1c266dfdf2f9799c1f3c574da7533f63057934e0aa003eddabc517cfbe","tgt_lang":"fa","translated":"پیام‌های ردوبدل‌شده","updated_at":"2026-07-09T11:29:16.474Z"} {"cache_key":"80770714a7023e8665251c09882a8bce9c186aa78117070a34084666ba7f301d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"fa","translated":"نمایی فقط‌خواندنی از نشست‌های Codex روی این Gateway و همهٔ رایانه‌های متصلی که آن‌ها را به اشتراک می‌گذارند.","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"81cc60a32c035509bb279e082864582dccbdadec69f0303bad42e7b5ce7465a7","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"fa","translated":"عمومی","updated_at":"2026-07-09T08:08:16.435Z"} {"cache_key":"81ec1edfa5a241ebec31687bfc95ef3249e0c9f64ba174e2b11ce2c980ceedab","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"fa","translated":"پیش‌فرض","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"829336738f114506e9161589c371766c8a989bccc8a030aad50842ebb8d869d4","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"fa","translated":"دسترسی به میکروفون مسدود شده است. برای فهرست‌کردن ورودی‌ها، آن را در تنظیمات سایتِ مرورگر مجاز کنید.","updated_at":"2026-07-06T17:57:28.025Z"} {"cache_key":"8431d4c742e8cf81dee3b4bb2157e6852cdfbe755214a105e576dc62fb9cb5c0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"fa","translated":"کهنه","updated_at":"2026-06-17T14:17:52.321Z"} +{"cache_key":"855e87a8b549d472ceac21a27daa6906910424eeefbff8354b73320bdecb9aac","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"fa","translated":"حافظه","updated_at":"2026-07-10T02:29:48.669Z"} {"cache_key":"8585275df437a56d0abe0bf952bbaa666ddc1f7a329cccf0ee172b2a3d279656","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"fa","translated":"نامشخص","updated_at":"2026-06-16T14:18:40.803Z"} {"cache_key":"85fd7c01913ffba06d86c3d997cb2349053597a03bc866c1f8599a8d19c79fb0","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"fa","translated":"باز کردن در نوار کناری","updated_at":"2026-07-09T11:03:16.390Z"} {"cache_key":"86f85ee22a9b66b7e19a07b1c41c0253e6291a94753b7d8dbbb081dc119b9a44","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"fa","translated":"نادیده گرفتن خطای Talk","updated_at":"2026-06-16T14:18:40.803Z"} {"cache_key":"87b864f0721b126633c697725d1e2eb6fdf088305b3827700a8cd3e2eaaa8a91","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"fa","translated":"اتصال‌ها","updated_at":"2026-07-09T08:08:16.435Z"} {"cache_key":"886aa3172c24ccc1ce072bf0b89c96d5fbd84af1fdff32f577e519f6afcdcb0e","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"fa","translated":"هزینه روزانه ارائه‌دهنده","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"88b9ecc2ec382c2dc6a8c023cbdb8b88f3c3dea074887ed12409a4711758853e","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"fa","translated":"میکروفون انتخاب‌شده در دسترس نیست. ورودی دیگری یا System default را انتخاب کنید.","updated_at":"2026-07-06T17:57:28.025Z"} +{"cache_key":"88cd3dd6f421e29278f27f86f2e1f3813134225ee8dc7ecc948d4aab503e4234","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"fa","translated":"بستن","updated_at":"2026-07-10T04:28:56.671Z"} +{"cache_key":"88d328bad4e5ed9dc5f1ca30309e054a0cc01304551eb59988b231cdd7e444d4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"fa","translated":"لغو","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"897425d6e8301dca477baf0fde9ff0b3ac0345eb1a8dff6cbe45eaee82cbc89c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"fa","translated":"برای ساخت کد راه‌اندازی جدید، دوباره /pair qr را اجرا کنید.","updated_at":"2026-07-01T10:34:16.869Z"} {"cache_key":"89b180ba45d742ccf4cdd7b19fb017b68d9ec18d64c986987afbec0dc54b539d","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"fa","translated":"میکروفون {number}","updated_at":"2026-07-06T17:57:28.025Z"} {"cache_key":"89fbab4a5f98a56d7a6e64156c65a250448a02092db143cd42af1e880ae8d330","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLongestStreak","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Longest streak","text_hash":"49095cff1349a49e9b8672a0ef850d5bec7be2af58e803a0f17c41faf6753f39","tgt_lang":"fa","translated":"طولانی‌ترین زنجیره","updated_at":"2026-07-09T11:29:07.982Z"} {"cache_key":"8b5af858f4a264d6bb7cc9f8f1e9497d0657df7d9eb42306f972725f788dc906","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightsTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Activity insights","text_hash":"ba3b52a117285b5aada2567de5773c4141fd7d70a62b9b7afda8db8f9aebb40b","tgt_lang":"fa","translated":"بینش‌های فعالیت","updated_at":"2026-07-09T11:29:07.982Z"} {"cache_key":"8b7158d9306c083f1c708f0d0ad4374ab60a717c927697cfc92383bdd0317076","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"fa","translated":"از {name} snapshot گرفته و حذف شود؟","updated_at":"2026-07-05T21:01:42.282Z"} +{"cache_key":"8b72d3d9d2da65cb7a21fff39e02586617dcdfb7c675472ece7d28f2d397c170","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"fa","translated":"شناسهٔ افزونه","updated_at":"2026-07-10T04:28:56.672Z"} {"cache_key":"8c423cdb24e6534aace221dd11a3f8a76a501e1ff7bb05955939701c9dfc9520","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"fa","translated":"۱۵ث","updated_at":"2026-06-17T14:17:52.321Z"} {"cache_key":"8cd1addbf6efb40e0b25a82a81acb8c5f932c45e9be010e5050cd19c81ffa983","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Token activity","text_hash":"05f1f9836e5173d8ab4539357cfa050c3ad480fc049ddc22cb8fb8ea437997e2","tgt_lang":"fa","translated":"فعالیت توکن‌ها","updated_at":"2026-07-09T11:29:07.982Z"} +{"cache_key":"8db6685f39d38a095ab5e956a02296f76a10e1df40801ddf2d0e28765b37afd3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"fa","translated":"کار و بهره‌وری","updated_at":"2026-07-10T05:22:47.120Z"} {"cache_key":"8e0caa46993a2c62053a37292e101b48b55e25ea6cfd947f327340768ea0c27c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"fa","translated":"هیچ نشستی روی این میزبان با جست‌وجوی شما مطابقت ندارد.","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"8e259c6fcb011a9ad39a534c55c1bc8d2ca6d1e013c756df185503a4247cb867","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"fa","translated":"کارت‌های بدون عامل مشخص.","updated_at":"2026-06-17T14:17:45.319Z"} +{"cache_key":"8e46351e84ecb469f8eb3362f2806ac609aa0b937969219188b23c77d2729aa5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"fa","translated":"نصب {name}","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"8e794913f198dbaf7a24541bca9f7b00e2cb847e49afd87dcaf4782ce5a6c8e4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"fa","translated":"نتایج جستجو","updated_at":"2026-06-16T14:18:48.730Z"} {"cache_key":"8e7980f11eae36984d7ca1c4dd4ff13a995ecbb429eda948d5c3bc3a02b44349","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"fa","translated":"گروه","updated_at":"2026-07-05T14:40:24.519Z"} {"cache_key":"8e93ce9ffd69d54155713f8a04cb817d93e17a18de4b38c55f852e5b8dd3b7ac","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"fa","translated":"بارگیری بیشتر","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"8eae1c77efe81ee013bd1c9bae4ce6ee5dba30c7a72b10eb9acfdb41e0934171","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"fa","translated":"سرورهای MCP، احراز هویت، ابزارها و عیب‌یابی.","updated_at":"2026-05-31T05:36:59.400Z"} {"cache_key":"8eb22e6b41bbf2972b43a036416766de4aa0d6ff85fc2547ea9a774afae5a12d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"fa","translated":"آفلاین","updated_at":"2026-07-09T10:01:43.762Z"} +{"cache_key":"8eda0536e26231632ec0296523d84b81685b16215b3bb8a95b208d6d426f8340","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"fa","translated":"{name} حذف شد. برای اعمال تغییر، راه‌اندازی مجدد Gateway لازم است.","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"8f1706ee6f352f5790e8b9a888275e29c43a0182b19a853cd845bdc60ce95d4d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"fa","translated":"فهرست نشست‌ها در دسترس نیست","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"8f622969bafe02f08b68f61ebcad8e6b2e9462319cb8f9536911daf90e1c9c7d","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"fa","translated":"آخرین به‌روزرسانی","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"8f70696ad0476d167470173bd080c6c529308134cb0531a58ac486ad86a01f62","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"fa","translated":"بدون فعالیت","updated_at":"2026-07-05T14:40:24.519Z"} {"cache_key":"8faf13df52a1eddf748218c6c1d730240dbd2498621b04ca78a4b6782d097412","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"fa","translated":"کپی کردن پیوند","updated_at":"2026-07-09T11:03:16.390Z"} {"cache_key":"9245e3e8f688cff515289783fd346715d7efb9b2eae9562702ca7cec97a698e6","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"fa","translated":"وقتی این صفحه غیرفعال است، ورودی‌های میکروفون در دسترس نیستند.","updated_at":"2026-07-06T17:57:28.025Z"} +{"cache_key":"92ae6b66bd4122a71040834ff3a37cbac6b2d818285e324fd065107c2977c014","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"fa","translated":"شامل‌شده","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"93894b24135f09080aee2181a74abe8e11c85717b9abe161c9cad95bae917505","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"fa","translated":"{count} توکن خروجی","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"9510d0018c0638745c57d95bd2f01f615f742ca077231627e091adf4aebd3aee","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"fa","translated":"افزونه‌ای یافت نشد","updated_at":"2026-07-10T02:29:34.621Z"} {"cache_key":"961fc3770dacf55a06d1f9e7a8fb4f5a40376fea71ed76c63ef85d52de671068","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"fa","translated":"{count} توکن ورودی","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"9686b7c0d59cb1ae1321f25683996cd0557c4b43651c9447ceab028938739abe","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"fa","translated":"هیچ‌کدام","updated_at":"2026-07-05T14:40:24.519Z"} {"cache_key":"96b5fcf446d4682115102eec63de1398328d297c3e6b6e1bf213c48452b3652b","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.closePane","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Close pane","text_hash":"7fa0f9613d919e167b0f9aa03c22809d446af293eb6c3bac6866bae66d2656c9","tgt_lang":"fa","translated":"بستن پنل","updated_at":"2026-07-06T07:24:38.563Z"} +{"cache_key":"96c5c08892ed9eae778cf0dec862992ab73059ff61eaf65f81d5c48d3760be3f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"fa","translated":"نیازمند توجه","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"96ed738e6f6ccedbb4a41f9ee43e931c442421558108966a5cf5522b8ea1df5d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"fa","translated":"{agent} (پیکربندی‌نشده)","updated_at":"2026-06-17T14:17:45.319Z"} +{"cache_key":"9716596c0a6a8eb609465d0f44bcd9f6a08d75e44ef257653d718ba58dd754a3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"fa","translated":"{enabled} فعال، {disabled} غیرفعال، {issues} دارای مشکل","updated_at":"2026-07-10T06:09:13.167Z"} +{"cache_key":"97fbd60a77edf56c4ec809a1cc6b890f83e9f13a438bd003156f91b3019eb9a2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"fa","translated":"ClawHub نتیجه‌ای برای «{query}» ندارد.","updated_at":"2026-07-10T02:29:34.621Z"} {"cache_key":"97fe468d3ec71d2b43976c7730058bc560352ae9c7b92cb215118112f4ca7b46","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"fa","translated":"وابستگی‌ها","updated_at":"2026-06-16T14:18:40.803Z"} {"cache_key":"97ff7e59a25e13950d95142bb3af73875922350a8d85199e6f13ba767d90b9a1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"fa","translated":"متصل","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"989a11b07f85f4f8d336d818671ded0be477a3c1bf43a6d848be6ea161400c94","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLongestSession","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Longest session","text_hash":"7f727c1b85939ac165087fe5c3081e15ca00c6e6a0c0b6f8c908ff21eda7a4f2","tgt_lang":"fa","translated":"طولانی‌ترین نشست","updated_at":"2026-07-09T11:29:07.982Z"} {"cache_key":"98abe19590281fd4ca85436b38621fe1305fd457616fd4c1da5066de9673ee62","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.profile","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Your agent's stats, streaks, and life in the reef.","text_hash":"1fdc442e9cb9b6f4abdb44a4e6c4c304ab51c2dbe616e4c975add631108a4b28","tgt_lang":"fa","translated":"آمار، زنجیره‌ها، و زندگی عامل شما در صخره.","updated_at":"2026-07-09T11:29:07.982Z"} {"cache_key":"98ba1f8ccf71f0d0eaae2d87f1b7e67a539ce266bba27798b23b7f3a708c287d","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statPeakDay","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Peak day","text_hash":"c3a0833ac4b7cd06e29368f323fef10520637658605aa35de342df7bac6357f1","tgt_lang":"fa","translated":"روز اوج","updated_at":"2026-07-09T11:29:07.982Z"} -{"cache_key":"9921027c0ce3edef15d76ebd4ac3890f6085b28d9d8bf7c8177ecd6297807e9d","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"fa","translated":"نمایش فایل‌های نشست","updated_at":"2026-07-10T06:08:51.724Z"} +{"cache_key":"9a2e95475d167a60d1a364417ec09c7e5e62e22ddeb479cb736a1c02c4e179b0","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"fa","translated":"افزونه‌ها","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"9ab00d62fb5fd6b9da85ec2f49a0a358b24bac030254d264ed15eb633017072f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"fa","translated":"تلاش‌های ناموفق","updated_at":"2026-06-17T14:17:52.321Z"} {"cache_key":"9b4d2faa6c93ee6c6695105b20f1f4597d55f8049ecf3ffd126f8fa7e3f7c076","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"fa","translated":"{count} توکن کش","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"9ba1b604ec488ce17891df06fc94e610de6a2c70961cdcb90f8fcf4c68dd747e","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolRun","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} run","text_hash":"269b72554d7e530ba9a8a05270baba9af1ea6a9f02bb4889bf75ef0b3bb20c44","tgt_lang":"fa","translated":"{count} اجرا","updated_at":"2026-07-09T11:29:16.474Z"} {"cache_key":"9ca57c3cbb66be1181be4909c0740320cd9df9ecf9c1dc0c323ed6955900878e","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"fa","translated":"MCP","updated_at":"2026-05-31T05:36:59.400Z"} +{"cache_key":"9d4580f2ef92cf0325439afb2e6838b1a3527a7c67c03d2504f9e96ab6a740ab","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"fa","translated":"ویژه","updated_at":"2026-07-10T02:29:34.621Z"} {"cache_key":"9d8f0873963947b5965d0dbacb1d7fde39c267be30f9a1940d1a696bc53312c7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"fa","translated":"خطای سیستم","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"9da81dd48453662603959f13a3c2032365a1832e64bea834c2664545050e6063","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"fa","translated":"در حال بارگذاری میکروفون‌ها…","updated_at":"2026-07-06T17:34:07.650Z"} {"cache_key":"9dc493e5677b6017507495700a62dfd2d2f67e8758aa77bb85039d682ce3e008","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.streakDay","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} day","text_hash":"a4d254870473ab599749406cae968f3d24c7da6d9082093cf43ee4317175fd2d","tgt_lang":"fa","translated":"{count} روز","updated_at":"2026-07-09T11:29:07.982Z"} +{"cache_key":"9e7cb35919658a57091cbbe0ea1aae8f50e0a50c2e1cb1d0e2f659c52cd73781","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"fa","translated":"این افزونه حذف شود؟","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"9ec3373a53250678e0a56e0042e44c40848edeaac838aa6619a6612b747b37ea","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"fa","translated":"آخرین فعالیت","updated_at":"2026-07-05T21:01:42.282Z"} {"cache_key":"9f251ed08e2f4250b28675e035a89babd8e0bdc44c1fbcf6c942aa6b7811818e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"fa","translated":"Skills: {skills}","updated_at":"2026-06-16T14:18:33.052Z"} {"cache_key":"a465f33d0ad249f5fbb9570eae7c6ede46463f241f445b39de318aa83d947a60","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"fa","translated":"checkoutهای ایزولهٔ وظایف عامل و snapshotهای بازیابی.","updated_at":"2026-07-05T21:01:42.282Z"} {"cache_key":"a4ad432d1650534b987544482bb38e6bc096772ac941aecb6fdc0b8f17276e31","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"fa","translated":"گروه‌بندی‌نشده","updated_at":"2026-07-05T14:40:24.519Z"} {"cache_key":"a63186f92f68ab0571da7caa5a0159ccbeaf3794f99747ffd98edb15c6e03995","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"fa","translated":"سلامت Workboard","updated_at":"2026-06-17T14:17:52.321Z"} +{"cache_key":"a6440187c690b236b32ce461e01c8f736369632a0980f19440966115dec76520","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"fa","translated":"موتورهای زمینه","updated_at":"2026-07-10T02:29:48.669Z"} +{"cache_key":"a66b280aae73bf10936ee32fb781781211dd23edcaa7957c72ae08806f2db283","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"fa","translated":"{name} غیرفعال شد.","updated_at":"2026-07-10T02:29:59.743Z"} +{"cache_key":"a67c1f69b1409efb612d2a0c0da17049833083456225284ec2afbf553d5361f6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"fa","translated":"سایر","updated_at":"2026-07-10T02:29:48.669Z"} {"cache_key":"a715e45b3d4c07d3a7f83ab54dbba87397ef021877c3856534acb1266f6fb365","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"fa","translated":"تازه‌سازی فضای کاری نشست","updated_at":"2026-06-16T14:18:40.803Z"} {"cache_key":"a7f004e699cd5b5a439714aa9f39c8105a645d799881c109bba1c97e55b48075","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"fa","translated":"سنجاق کردن نشست","updated_at":"2026-07-02T14:31:11.668Z"} {"cache_key":"aa95c57b527308c5730869c0383834a15baf0754c44542818cdb3d87e536ad4f","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"fa","translated":"باز کردن در مرورگر پیش‌فرض","updated_at":"2026-07-09T11:03:16.390Z"} +{"cache_key":"ab8aedbad819b37cf927ea2223c726d2dba0eff546894d9bb6a8d91cad1b933b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"fa","translated":"جستجوی دیگری را امتحان کنید.","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"ab9069ecc55b3613fbd48b397463825b9fd6c3ceb3a5972e91d5cf5b5c938386","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"fa","translated":"شاخه","updated_at":"2026-07-05T21:01:42.282Z"} +{"cache_key":"abb8a8145a0a8ac1394749c0d69b3e30b4ecae8eb9cc116012d31217e45d484f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"fa","translated":"ClawHub","updated_at":"2026-07-10T02:29:34.621Z"} +{"cache_key":"ae3d5899a963d6fefa6e860ff2191e06cb13402a60d7d24b5bea4ee03e6a5400","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"fa","translated":"کدنویسی و زیرساخت","updated_at":"2026-07-10T05:22:47.120Z"} {"cache_key":"ae54e355fe6c4cc168f39ee6e26bbee2155ac840e12add1da8959f445a0306c2","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"fa","translated":"میزبان‌های غیرقابل‌دسترسی: {count}. سایر میزبان‌ها همچنان در دسترس‌اند.","updated_at":"2026-07-09T10:01:43.762Z"} +{"cache_key":"ae64c6730f7056f05a61d2a2784a9e21a38a539f663067b87e285ab8d538ceef","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"fa","translated":"افزونه‌های جامعه در ClawHub","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"aea3a5d2d77e337ec74a4bf8499f5b3b1a694bd7a857db53bd49628421f652c7","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"fa","translated":"{count} درخواست","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"aeabe85d972b1dc090266268d9bc778ee9ea33d7914d13989411af897f7fc624","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"fa","translated":"تازه‌سازی","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"af5a53476c6b5b6d3d8bb0204dbcc6c523d910b392cd3719af77e31774eaf975","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"fa","translated":"{count} نمایش داده شده","updated_at":"2026-06-16T14:18:48.731Z"} +{"cache_key":"afe598dd652a7d0fef42fe4125f0553d3174822f8291b2cc44e7aaead5a24dd4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"fa","translated":"نام","updated_at":"2026-07-05T21:01:42.282Z"} +{"cache_key":"aff88078c00368c4f65395b8b26c8d4a135151d88bce7e5d6c16583dac653303","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"fa","translated":"{name} فعال شد. برای اعمال تغییر، راه‌اندازی مجدد Gateway لازم است.","updated_at":"2026-07-10T02:29:59.743Z"} +{"cache_key":"b043028ea14da97de01aa9bfe7b58416525355b02c2feb3ce20fa9c7150e8e10","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"fa","translated":"{name} افزوده شد. پیش از استفاده، endpoint و credentials را در تنظیمات MCP به‌روزرسانی کنید.","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"b0acb047565fb1ed092f7a9b9837cedf2486a40bb8847db6041ac7c2d8c5f16a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"fa","translated":"گروه «{group}» حذف شود؟ نشست‌های آن به بدون گروه منتقل می‌شوند.","updated_at":"2026-07-06T23:41:23.355Z"} {"cache_key":"b0df530f6de3c9280322fea2e3b399c5bc569c8feea54a6e013a502b6d8c33a6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"fa","translated":"هیچ فایلی در این پوشه نیست.","updated_at":"2026-06-16T14:18:48.730Z"} +{"cache_key":"b256a630631e33476b9e514e2e08332183b29f6a2e20f753aac792c5c41c0585","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"fa","translated":"هیچ افزونه اختیاری نصب نشده است","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"b339401ecb24707fdcc1b518a2fa4460d3b207ab1c0d021e1b437c62d8c40681","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"fa","translated":"خودکار","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"b38e12acabaa210d99e33354912ac762b253fdbb6042008225ba0e4e7aeb3031","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolRuns","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} runs","text_hash":"627a5f9e7cc0ba0f9bc65c55fb5e6421519e92d24f35dabffabb1eaf16aa750b","tgt_lang":"fa","translated":"{count} اجرا","updated_at":"2026-07-09T11:29:16.474Z"} {"cache_key":"b390c352546af2d56f239187ddc98ebd47df9a27c51fc0b0ac63c160452e5c63","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"fa","translated":"۵ث","updated_at":"2026-06-17T14:17:52.321Z"} {"cache_key":"b434c46d9c20feb0cbf2ad53b3f3f4570cb58a88a0f7e61a529a53c4b443ae97","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"fa","translated":"محصولات","updated_at":"2026-06-16T14:18:48.730Z"} {"cache_key":"b47a9802787901aee75193ae58997c34cea4acc2a980c5baee4b8745cfaa08ac","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"fa","translated":"هیچ فایل منطبقی یافت نشد.","updated_at":"2026-06-16T14:18:48.730Z"} +{"cache_key":"b5c01ac3d1150a0d93cc28a7ae762b0fa10fa7d2d1200650b9e908886e670976","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"fa","translated":"ارائه‌دهندگان مدل","updated_at":"2026-07-10T02:29:48.669Z"} {"cache_key":"b67bdef00d2626fe4c5de1d1dd636a09539d8a3a33fd3c5696773e922ebeb393","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"fa","translated":"موارد بیشتر در تنظیمات","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"b6e423ab2fd0a32671c1b6512e8c8aeee4dbb9020d067995344c6caec8e45757","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"fa","translated":"فقط نشست‌های بایگانی‌شده را نشان بده.","updated_at":"2026-07-02T14:31:11.668Z"} {"cache_key":"ba1d261ba41968a31bd74b0007d57510bc743835aec138276143338d865fb0be","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"fa","translated":"حساسیت","updated_at":"2026-07-06T20:20:02.809Z"} -{"cache_key":"ba3d898c289904b4f844f634dfb9f358df678d9c923bee07a57c41af866bd8f1","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"fa","translated":"برای سنجاق کردن به راست یا پایین بکشید","updated_at":"2026-07-10T06:08:51.724Z"} +{"cache_key":"ba4fa930b91e45e19f8c89fe54c259d3bdb5f5c69ddc510e4cca52c4cd8f620f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"fa","translated":"برای گسترش OpenClaw، یک افزونه ویژه را کشف کنید یا در ClawHub جستجو کنید.","updated_at":"2026-07-10T02:29:41.859Z"} +{"cache_key":"bacd8b4dd412d00093c314ebb323d69d05b25860cb40884eda09dafb652cf2aa","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"fa","translated":"نسخه Gateway متصل","updated_at":"2026-07-10T09:47:52.731Z"} +{"cache_key":"bb71207006121688cf0d16101b85251c091ec7dce60d288e7139f370e47db9b9","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"fa","translated":"در دسترس نیست","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"bd005f39f912466a9df4ea368306d5682396883895bb4b620e346c8f53eedea4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"fa","translated":"ریشه","updated_at":"2026-06-16T14:18:48.730Z"} -{"cache_key":"bd4a4032e9ae2a1f7809681671a0a9242769fde6b370869cd502769fa7b20383","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"fa","translated":"سنجاق کردن به پایین","updated_at":"2026-07-10T06:08:51.724Z"} {"cache_key":"bd6ea3e29560457a001c0d2116a7003c029a239794619b4492878dcd5942173c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"fa","translated":"تنظیمات پیشرفته به دسترسی مدیر نیاز دارد","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"bff77aaccf2cb074bfabec89481a44b04626598a9a538ba27cef277879c1a8bd","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"fa","translated":"گره","updated_at":"2026-07-09T10:01:43.762Z"} +{"cache_key":"c0669b0885bd6e9c844ecc14d201a2802c5d503ccfc9d4c7f2f362db98c87130","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"fa","translated":"درباره","updated_at":"2026-07-10T09:47:52.730Z"} {"cache_key":"c087441209073b9ee5cf306d01e1459e83a220d725e841fbb3979befdd5a884b","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.loading","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Diving for stats…","text_hash":"81a616d9c5f179db9a23f119bd752b6c0445a3e37bcc28e76eab97fd29da7c74","tgt_lang":"fa","translated":"در حال غواصی برای یافتن آمار…","updated_at":"2026-07-09T11:29:07.982Z"} {"cache_key":"c10dc6d7c36d4adcc8ad4eed2940755ba491d926fcf2a84d97c4b60a3ca0a8a0","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"fa","translated":"آخرین وظایف تکمیل‌شده، ناموفق و لغوشده.","updated_at":"2026-07-09T21:53:43.631Z"} {"cache_key":"c13a9b7c89d7fa6f23239b5e8fead38d3dd7546bd1d1e6fec429e9260b761ee9","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"fa","translated":"زمان‌بند","updated_at":"2026-07-09T21:53:43.631Z"} +{"cache_key":"c1b6ceae9ee0617698f3c2894341e2c1b103333c4465d7969a166fd4ed88af29","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"fa","translated":"در حال بارگذاری افزونه‌ها…","updated_at":"2026-07-10T02:29:34.621Z"} {"cache_key":"c1b99226bb553fe0cc26f1f982f2153d46daadd6347b81c4b1ed65b8d3feb25d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"fa","translated":"خاموش","updated_at":"2026-06-17T14:17:45.319Z"} {"cache_key":"c20856ea4df29a234346a799b3c9bf1a27b2dad74eecc9f10fb94286d02df5fb","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"fa","translated":"بازدیدهای خرچنگ","updated_at":"2026-07-09T20:51:59.140Z"} {"cache_key":"c21bb780e32a380c855b2d8bd2432a100a98f820dcbf8bb61777b0e258d4bf76","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"fa","translated":"اخیراً انجام‌شده","updated_at":"2026-06-17T14:17:45.319Z"} @@ -238,15 +333,23 @@ {"cache_key":"c23efedc1d9a7b89328bd2b5f47a9d426422c28c0030ea0443fc89932d749639","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"fa","translated":"نشست‌ها در همهٔ رایانه‌های شما","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"c266e9cff4dcf637e881fd437b3733afb890eaf81f4ab3d8b4ceed1bb7eaabe1","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"fa","translated":"{count} روز","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"c3f50e12f7e56217124e689758cab88086b513ce681d7a16a3eec9537b83cbf8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"fa","translated":"افزودن یادداشت","updated_at":"2026-06-16T14:18:40.803Z"} +{"cache_key":"c48f1a2fe7c532d49993fbb9016cf370b04b6786aa2e117a0c1b193bff1f1e5d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"fa","translated":"هنوز هیچ سرور MCP پیکربندی نشده است. یکی را اینجا اضافه کنید یا از Discover یک اتصال‌دهنده انتخاب کنید.","updated_at":"2026-07-10T02:29:48.669Z"} {"cache_key":"c4a4e6c121189f29a43d13805222fd556f0e7cf7a9bffcfa688d4996e3456079","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"fa","translated":"ذخیره‌شده","updated_at":"2026-07-09T10:01:43.762Z"} +{"cache_key":"c4b083e1596438eeb0292def11248bc3257c449496c6b74060e50e660b3c239b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"fa","translated":"افزونه‌های رسمی","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"c4ded1c99bbeb9f5908493474494aec0fc0a7189c0dd7ba7da16c532e7955a60","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"fa","translated":"تغییر نام نشست","updated_at":"2026-07-02T14:31:11.668Z"} {"cache_key":"c511ba24de88e008507ab6941d1d56b37613badd186ab112e5c83b670c1de315","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlockedTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Waiting on dependencies: {parents}.","text_hash":"50fb8f9b1326b69bd67d25583ddb4f70b9d75ae6e3ff8a9056a9361daa4b7d8b","tgt_lang":"fa","translated":"در انتظار وابستگی‌ها: {parents}.","updated_at":"2026-06-16T14:18:40.803Z"} +{"cache_key":"c5d1ad4fd49c76dddb6e7086de46fc8626cd3398e6158b58d2274c0b680f7749","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"fa","translated":"افزودن سرور","updated_at":"2026-07-10T02:29:48.669Z"} {"cache_key":"c774cfac170ec300f78f3a03ea85489925c7b34c0fd34d6b06ba2d468527c667","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"fa","translated":"یادداشت‌های اپراتور","updated_at":"2026-06-16T14:18:33.052Z"} +{"cache_key":"c779d9807d9b44b925012452d364ca1c59562d51db3fcd26b131543c63406b4b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"fa","translated":"در دسترس نیست","updated_at":"2026-07-10T02:29:59.743Z"} +{"cache_key":"c7baa22519a52db88df7dfebd8d67f3028ed69dc00de4e3aff6961aa2aab74d1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"fa","translated":"همه","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"c808b56cd3ba6248c7303dddeddc9baa93a7e084cf625fc8da57d2273a9b7775","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"fa","translated":"{count} نشست","updated_at":"2026-07-05T14:40:24.519Z"} {"cache_key":"c8681bbf55dea4b34f0459d152ad35ca8226a63c65099c2dbdca1e3dc385c529","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"fa","translated":"استفاده از گفتگوی فعلی","updated_at":"2026-06-16T14:18:33.052Z"} {"cache_key":"c959866805a063b9f2043fddd668f6c969d1695b7e464399870baaa049c00a6c","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"fa","translated":"ارکستراسیون","updated_at":"2026-05-30T15:38:53.293Z"} {"cache_key":"c9690261dc9ea8e17199815409b3c0b4d16141fa37a3bb80ece22fdc92cacebe","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statCurrentStreak","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Current streak","text_hash":"f1758c2815840f1bbef57663a13d2c243c6d0c052fcb09bc1a75319ebc9621d5","tgt_lang":"fa","translated":"زنجیره فعلی","updated_at":"2026-07-09T11:29:07.982Z"} +{"cache_key":"c9b26babecd9cb292199413151d67b7de9deef6cb4d57a978a79176bb3e6db3f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"fa","translated":"مرور ClawHub","updated_at":"2026-07-10T02:29:34.621Z"} +{"cache_key":"c9d895ee04a19e67b9d4357ad8ebf68e1e4dcb5c52c922a58af008abce41cb7a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"fa","translated":"هیچ افزونه نصب‌شده‌ای مطابقت ندارد","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"ca6bc5355c710799e0f524a467dabbdcdfbee8821d9f32209a635aea41c90466","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"fa","translated":"جداشده","updated_at":"2026-07-04T21:24:06.452Z"} +{"cache_key":"cb6ba52de90e80002ec0cebaa6757a5ecd2ca7d634ffb8804d737dc05e388ad7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"fa","translated":"دنیای خود را متصل کنید","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"cb8fcbf4b485edbd4101a91255038162ce4dd9c943af1b7d5de5a49c7c0c96ce","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"fa","translated":"ورودی صوتی بلادرنگ نیاز به دسترسی میکروفون مرورگر دارد.","updated_at":"2026-07-06T22:42:35.590Z"} {"cache_key":"cc7b868c1a4e91b2d44c82ef24e3269e70a73bb0c796c69c9082ab28b1283d0b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"fa","translated":"کپی مسیر","updated_at":"2026-06-16T14:18:51.277Z"} {"cache_key":"cd88f356c91cb8d551562b5bef380cdb34cc21f5bc0b419f9be21ee825942c66","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"fa","translated":"پیش‌نمایش","updated_at":"2026-06-16T14:18:51.277Z"} @@ -262,13 +365,18 @@ {"cache_key":"d02bd7cab16d2f070c0a8fa5d8a48d01336e39887553f4de03dda34cdc5934cc","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"fa","translated":"قدیمی‌تر","updated_at":"2026-07-05T14:40:24.519Z"} {"cache_key":"d076b185dde51a685ed5cbce6a07a848c7ab0429c8383c0287f99dd692f454fe","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"fa","translated":"هیچ کارتی با این نما مطابقت ندارد","updated_at":"2026-06-17T14:17:52.321Z"} {"cache_key":"d0a50971336f44a0391f27cf7c5bfcb0ed1b1920c4371bf07c7b91295cee38d7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"fa","translated":"{count} نمایش داده شده","updated_at":"2026-06-16T14:18:48.731Z"} +{"cache_key":"d0a561bd3fddca5324309b6a50c0b2e00ae268e20efa5968ec558bcef072fa73","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"fa","translated":"نصب","updated_at":"2026-07-10T02:29:59.743Z"} +{"cache_key":"d1c64c465580b2aa5d353e897d410c7575c130d5a0822aeb0133da5e562a4bb6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"fa","translated":"غیرفعال‌سازی {name}","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"d1f2cd6b0da43beb8a1f3fe1252a0c8980bf3c116ec8d796361099796b4503f3","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightToolCalls","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Tool calls","text_hash":"da5122dc0f97b158bfbd27c5bd479322f34e0916a0cd4626d42c03bb0000e4b4","tgt_lang":"fa","translated":"فراخوانی‌های ابزار","updated_at":"2026-07-09T11:29:16.474Z"} {"cache_key":"d23743acc47c4c60c5610d150887c98c519d4a2272be4bb422478a9eb71f4bd9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"fa","translated":"تازه‌سازی خودکار","updated_at":"2026-06-17T14:17:45.319Z"} +{"cache_key":"d25d39fdc265841a06db809e6d2c20607750aae9b585aed11af358ed6435586d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"fa","translated":"غیرفعال","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"d26497e841d86df0c24bb71aa610a5ca3ed3a03f7ad7158ffd48091e5f15aec5","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"fa","translated":"{count} پیوست","updated_at":"2026-05-30T15:38:53.293Z"} {"cache_key":"d382b19ededb3482003e126253df533069ae8011291d6476225308aefd11bcba","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"fa","translated":"نشست‌ها","updated_at":"2026-07-09T10:01:43.762Z"} +{"cache_key":"d3f530dec633ed69fc5bcb37d61d62834c48bd7218910a4e6e6acb9047835a90","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"fa","translated":"غیرفعال کردن","updated_at":"2026-07-10T04:28:56.671Z"} {"cache_key":"d3f79742b8b051531e012f02c7066c1ad279c7e8d6a9bd9ada66ed7e73da7ada","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"fa","translated":"مخزن","updated_at":"2026-07-05T21:01:42.282Z"} {"cache_key":"d45dd1fd4cd78a7f7e8296027624d83d4d2854c16b32c735326dc8c8a9763ed8","model":"gpt-5.5","provider":"openai","segment_id":"tabs.profile","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Profile","text_hash":"d696a35bdd1883da07a8d6c41bb7a3153381b23aa197629ee273479a6eaa5a9c","tgt_lang":"fa","translated":"نمایه","updated_at":"2026-07-09T11:29:07.982Z"} {"cache_key":"d5c4b64d66909d8fa32afd7eb2953326bbb05f118389f56f590696ac1ae85b3c","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLifetimeTokens","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Lifetime tokens","text_hash":"3d7b0d3aa231e0a255b58b67aa9eeb2b921b19ce9aa983bb867d7b7cf3e16ce9","tgt_lang":"fa","translated":"توکن‌های کل دوره","updated_at":"2026-07-09T11:29:07.982Z"} +{"cache_key":"d6bafb83f2644cf88eba4a550ed962558adb713b626d689251bf6c5ec0012a61","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"fa","translated":"URL یا فرمان","updated_at":"2026-07-10T02:29:48.669Z"} {"cache_key":"d70654b1501c6db968cc204a77f00154fb1a352db0dad47dea40a743a35b3c73","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.sessionsCapped","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count}+","text_hash":"4af395b8d907e1cc1d3de75eb4644a9ed3a243f5f5a66f93da927d7899844d57","tgt_lang":"fa","translated":"{count}+","updated_at":"2026-07-09T11:29:16.474Z"} {"cache_key":"d7312755575c2866c2dd2f1a74cfae07d7071762de8c6398fca2231f42740e97","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"fa","translated":"گروه‌بندی بر اساس","updated_at":"2026-07-05T14:40:24.519Z"} {"cache_key":"d7441f3b3e283d5a957206874416353af86e96a15856c10eb717117665485553","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"fa","translated":"بازیابی","updated_at":"2026-07-05T21:01:42.282Z"} @@ -277,29 +385,41 @@ {"cache_key":"d8b718748f23ca0bbd071ff19281dd6edab7fb510b39772025a74d1483f73f9b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.title","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Context usage details","text_hash":"0e04e44654b5a2abf769dcd2f82a32e0501a41689d6635d7f718978c160958f0","tgt_lang":"fa","translated":"جزئیات استفاده از زمینه","updated_at":"2026-07-05T10:16:36.046Z"} {"cache_key":"da64b51554e8fbddb3b05cd89aebb8dca736f312f229724752c9e9c7c7b87af6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"fa","translated":"نام گروه جدید","updated_at":"2026-07-05T14:40:24.519Z"} {"cache_key":"dbf39509e3158aec87bf9a38abca493bf238d870c132e8eb41bec199eac852c0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"fa","translated":"اشتراک‌گذاری نشست‌های Codex را روی Gateway یا یک رایانهٔ جفت‌شده فعال کنید، سپس این نما را تازه‌سازی کنید.","updated_at":"2026-07-09T10:01:43.762Z"} +{"cache_key":"dc105292fe074a246591fd57de63a49b5cbf2e93227ec2ea48d5fe5e42724be7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"fa","translated":"فعال‌سازی {name}","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"df56ae2c4f4307e591fc34fb873e46f243881f58aaf44853df2c73eb76f0f4ac","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"fa","translated":"snapshot ناموفق بود: {error}\n\nبدون snapshot حذف شود؟","updated_at":"2026-07-05T21:01:42.282Z"} -{"cache_key":"e09725e1b304c16072dd6901a01b0731ec3c5280c804be62475a39ff6baab75f","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"fa","translated":"جستجو","updated_at":"2026-07-10T06:08:51.724Z"} {"cache_key":"e24b600fc00614c5f07bd2eb03c4b7adaffdaba1ad6566074b502869864be0b2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"fa","translated":"مشاهده جزئیات","updated_at":"2026-06-16T14:18:33.052Z"} {"cache_key":"e3aa1573cd3d8a6a6e5b739af004b0abea3b9228db1b15c0bceae3a19dd30c70","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitDown","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Split down","text_hash":"8730b89df7caaf5b5090f9b7365a0a03e0a13d9682dc6418f556b8a676d9e98f","tgt_lang":"fa","translated":"تقسیم به پایین","updated_at":"2026-07-06T07:24:38.563Z"} {"cache_key":"e3baf6b93a8d6544671212617739f6b6819f503a82d963f91d0fd3450f9a5dc7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"fa","translated":"این هفته","updated_at":"2026-07-05T14:40:24.519Z"} +{"cache_key":"e3c096af8254409c560525f3437a75c48632727fb52ea1315fffa1fda58cfff4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"fa","translated":"جستجوی افزونه‌ها","updated_at":"2026-07-10T02:29:34.621Z"} {"cache_key":"e3f8b9bdd9af1d841f44373a58889b6aa6632287df2cf93ac4ee7195eb56252f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityLow","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Low","text_hash":"f793de205ead5ac302c4a1627829dea41f176b1068b993a32373fc869918374b","tgt_lang":"fa","translated":"کم","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"e4eab16ffde3bb7342193bd7df54d6acb72f15d4e26b62af6d92a45238958c30","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"fa","translated":"نوع","updated_at":"2026-07-05T14:40:24.519Z"} +{"cache_key":"e50cff04740698a7e00b3ab9e52d3f1751212c59ecb0a34a435ceaf731f330bc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"fa","translated":"افزوده شد","updated_at":"2026-07-10T02:29:41.859Z"} {"cache_key":"e5671dde47a046d4ae207896246463bf1dd9a5649a40fd9f0964e7b49ac64cc7","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"fa","translated":"نقض پروتکل","updated_at":"2026-05-30T15:38:53.293Z"} +{"cache_key":"e82f28ab599ef655d1f95fe0e923664060ff9d553ba253db31e6357588937406","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"fa","translated":"فقط مرور. تغییرات افزونه به دسترسی operator.admin نیاز دارد.","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"e85e8416304e0238c803711e50bd564f0c670b93698cff6a7c236c7d4d65081f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"fa","translated":"پوشه والد","updated_at":"2026-06-16T14:18:48.730Z"} {"cache_key":"e8bb56b781f83b632cd0ca35a58fa6978923570baaddb4b413c1d842b070c42c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"fa","translated":"زیاد","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"e8f65562a85aa878e2798ff13e131a0960dec62af9f4edb3fbb8ec2f19330b32","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"fa","translated":"گفتگوی جدید در worktree","updated_at":"2026-07-06T04:56:50.854Z"} {"cache_key":"e956b93bad8822b59b99736b556acdfbc4171d18fb144a4aea2d33e3ce1ba991","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"fa","translated":"عامل","updated_at":"2026-07-05T14:40:24.519Z"} {"cache_key":"e964b7679d0c8add45aad251607f4a5d8453641af4eec558bf79995993bcf2d4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"fa","translated":"در حال اجرا","updated_at":"2026-06-17T14:17:45.319Z"} {"cache_key":"e9a038c7ea64215ffbcd8de1a774ef379dfacbf5bc4e178d44896986ebfd4f14","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"fa","translated":"هیچ نشست فعالی روی این میزبان وجود ندارد.","updated_at":"2026-07-09T10:01:43.762Z"} +{"cache_key":"ea32deaf1c6d04541441abf4a0f6b1f1c0b33e95c41b011de1f94769d2ff7dbe","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"fa","translated":"{name} غیرفعال شد. برای اعمال تغییر، راه‌اندازی مجدد Gateway لازم است.","updated_at":"2026-07-10T02:29:59.743Z"} {"cache_key":"ea3cef540cb34d3750cf4d324307dfb13bdd5ff9f45160fd760f2c9d5fc5f962","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.legendLess","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Less","text_hash":"ae5239ec63f28cd401ccd63e9f56e4ede8254a738a135ebcd33e844c18dd247f","tgt_lang":"fa","translated":"کمتر","updated_at":"2026-07-09T11:29:07.982Z"} +{"cache_key":"ea7f67566b522411983a3dd57a274e75f710f514e992da9e35cbd346b504da61","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"fa","translated":"از ClawHub","updated_at":"2026-07-10T04:28:56.671Z"} {"cache_key":"eab1d4d167b17cbdf61f6763fa850e375a6f762623a929bc24e750048fcd753c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"fa","translated":"خلاصه: {summary}","updated_at":"2026-06-16T14:18:33.052Z"} {"cache_key":"eae4fe1b6601efb2820d63370dd515def3892e359ca5b5a1f2238cb536cad99b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"fa","translated":"فیلتر بایگانی نشست‌ها","updated_at":"2026-07-09T10:01:43.762Z"} +{"cache_key":"eb09755dc1c65e19bd275d5a2b680bb6f4a3069e470c5e00d6137d91d39a1cd5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"fa","translated":"خانه و رسانه","updated_at":"2026-07-10T05:22:47.120Z"} {"cache_key":"eb0a62ceb2d3d0371bfe8359c7e0b649063855519e431f6832efbe55d7d84403","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"fa","translated":"تغییر نام نشست","updated_at":"2026-07-02T14:31:11.668Z"} +{"cache_key":"ebaaa88c5b46ff49d44b8db2d3f565e6476b05b7b1a1081dbfbe2545cdc9a64c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"fa","translated":"حذف {name}","updated_at":"2026-07-10T02:29:53.714Z"} +{"cache_key":"ebc3e5623ad8d8cfb5a12bfcb94ef702c90f8a7c5629ca1736e080ad8b0e49f0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"fa","translated":"نام سرورها از حروف، اعداد، نقطه، خط تیره یا زیرخط استفاده می‌کنند.","updated_at":"2026-07-10T02:29:48.669Z"} +{"cache_key":"ec6aa3dcc6ce64cc8c0001b7d63edc8f5a93ff22337314b382dd5e9255c99c05","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"fa","translated":"برای یافتن افزونه‌های کد و بسته، حداقل دو نویسه وارد کنید.","updated_at":"2026-07-10T02:29:34.621Z"} +{"cache_key":"ec6ae8ef2c8f46543283baf42278ba27abff047181da72eed5a70e3a05a32839","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"fa","translated":"نسخه","updated_at":"2026-07-10T09:47:52.730Z"} +{"cache_key":"ec771905ab66209a88554e90e8f3a43cb2371048f1d800629db7d46febf7007f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"fa","translated":"دوباره تلاش کنید","updated_at":"2026-07-10T02:29:34.621Z"} {"cache_key":"edbcd8d376b4c76eb8fe55bbe06e4cd04ccc287c3c30926b462e5f203cb07322","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"fa","translated":"باز کردن جزئیات استفاده از زمینه","updated_at":"2026-07-05T10:16:36.046Z"} {"cache_key":"ede1541c9883467e30a69e28e42f9a7645dbf141314de4413d907bb822661669","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"fa","translated":"تشخیص‌ها","updated_at":"2026-06-16T14:18:33.052Z"} {"cache_key":"ee07d9c38ec34d86d93ae159dee46e342e635bd09a2593177ab6fc4ba2197a15","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"fa","translated":"اولین فایل‌های منطبق نمایش داده می‌شود. برای محدود کردن نتایج جستجو را دقیق‌تر کنید.","updated_at":"2026-06-16T14:18:48.730Z"} {"cache_key":"ee8b3624a766411ab26229d03c2e5d2807c2c48a4ea885ee32e72d00b2b42d0b","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"fa","translated":"مدل‌های برتر","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"eed0b4edffee3f8177346e12d6ee2a3d4a735c235a9d8ab94e653ac33df6fe6d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"fa","translated":"استفاده از گفتگوی فعلی برای درخواست‌های بازبینی","updated_at":"2026-06-16T14:18:33.052Z"} +{"cache_key":"ef5ac243793538cfcac8ab6bd014439c3790e5517bd532903ca4717ee300f431","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"fa","translated":"جزئیات ساخت Control UI","updated_at":"2026-07-10T09:47:52.730Z"} {"cache_key":"ef8a8aaeebe8f269cf3a2c56ca5f1893fc8685d67f8256b62ac869aad5c9d0eb","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"fa","translated":"میکروفون اضافی‌ای یافت نشد","updated_at":"2026-07-06T17:34:07.650Z"} {"cache_key":"f0332a96808dc2d03c12d0abb8b1f09a7a7710cf24708b57002fd92f23dc5af6","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"fa","translated":"اقدامات","updated_at":"2026-07-05T21:01:42.282Z"} {"cache_key":"f0562c95b72b6f07b09521db6761a791f501a32ea913d2de41023d10ffc073cd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"fa","translated":"هنوز یادداشتی از اپراتور وجود ندارد.","updated_at":"2026-06-16T14:18:40.803Z"} @@ -308,10 +428,15 @@ {"cache_key":"f10d218fb1295745ed689095752712ff7dccad268aa0740bc645e99af166f565","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"fa","translated":"{count} خوانده‌شده","updated_at":"2026-06-16T14:18:48.731Z"} {"cache_key":"f172dd5638b7ddfd049be254a95d47ee9f060d7a2dbc491bde0b5ae4cf3c6d12","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"fa","translated":"{count} وابستگی انجام شده است.","updated_at":"2026-06-16T14:18:40.803Z"} {"cache_key":"f193cecba8cbe37c15140cdf713a1b0598f55226232a583e47e18864f50b4d83","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"fa","translated":"مدل","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"f1b2e98d67c65a68fc11026982310ddbcae65683ad17ec35ab961f65fbeb576e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"fa","translated":"Gateway آفلاین است","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"f2208997e475eac37b5ec3d9aadd4b4408976d0c631a6f69579254fac75456b2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"fa","translated":"هنوز فایلی در این نشست تغییر نکرده است","updated_at":"2026-06-16T14:18:40.803Z"} {"cache_key":"f2505b1b018dc6a03bc138b8ae68c22c14701ac09e1eb3fb3818a577b6ba8287","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"fa","translated":"دستور","updated_at":"2026-06-16T14:18:51.277Z"} {"cache_key":"f256ff7647458ebde002579a4a5f1c93375cf6a35dbe75aa1292c8c021cdbe16","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.streakDays","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"fa","translated":"{count} روز","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"f3141bd2bc6a1a3db04c73d58e5d840f163c32fced5f6db23cac726a3318a865","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"fa","translated":"فقط مرور. این Gateway اجازه تغییر افزونه‌ها را نمی‌دهد.","updated_at":"2026-07-10T02:29:59.743Z"} +{"cache_key":"f4b5e63c94ad608e3f08448abddf32b05d09750f364fdc80e8dc6c91e93802cc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"fa","translated":"کانال‌ها","updated_at":"2026-07-10T02:29:48.669Z"} {"cache_key":"f4bd1e57495fd4de54425c3213c29356dd7c3e9cb4f92a10d5c80a809fa0193b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"fa","translated":"آماده","updated_at":"2026-06-17T14:17:45.319Z"} +{"cache_key":"f55ee6cd37e8734ed935f4565df23894a33f62f70e2ed20d19904c22435ea966","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"fa","translated":"پیکربندی","updated_at":"2026-07-10T02:29:53.714Z"} +{"cache_key":"f576b43ce0443ea84c783f1e3c6670c9a3b7643248674c574cda9947f9536dfb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"fa","translated":"منبع تأییدشده","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"f5f5dd02ec00d0e5cf6ae12ab66dfff6a3f6829583f60e748d5c260afa1030c3","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"fa","translated":"مرتب‌سازی بر اساس","updated_at":"2026-07-06T23:41:23.355Z"} {"cache_key":"f692ec8dd98ae7135a148e44bd7812bf062aa08eed067e968ee60d5c31dfac48","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"fa","translated":"خوانده‌شده","updated_at":"2026-06-16T14:18:48.730Z"} {"cache_key":"f6f8d10d5c6161177fc19e288e8c787280eaa9abb297251338a1efd240d6651a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"fa","translated":"مسیر فضای کاری","updated_at":"2026-06-16T14:18:48.730Z"} @@ -320,6 +445,8 @@ {"cache_key":"faa09181b4eecc9fdf8fbdebfbb0f76bed9e6a7a5271cde490782229f88dc8b5","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"fa","translated":"میزبان‌ها","updated_at":"2026-07-09T10:01:43.762Z"} {"cache_key":"fb7d1fa78a10d7f85914aee2870bb81ca931e2a87ca266184c8b380391dadfc2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"fa","translated":"برداشتن سنجاق نشست","updated_at":"2026-07-02T14:31:11.668Z"} {"cache_key":"fc281b186db31721cae978c1279f1178c2348b454106107070f41c723c099cfb","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"fa","translated":"Русский (روسی)","updated_at":"2026-06-26T21:43:47.038Z"} +{"cache_key":"fd6b0330e695218f2cf76970b6b64286390531b2f403cf3c51d3355b5a4e9d06","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"fa","translated":"در حال افزودن…","updated_at":"2026-07-10T02:29:48.669Z"} {"cache_key":"fe1ed1e5dc2decd1deafe5dadd7a87d6e8f6b6a7f3f8af77cbb60f022456aa73","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"fa","translated":"ورودی میکروفون","updated_at":"2026-07-06T17:34:07.650Z"} {"cache_key":"fee1ecf6de721566cb0ee367343fc7f17d6a3d7d1f72d7be9e76c9f398d08702","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"fa","translated":"{count} تغییر‌یافته","updated_at":"2026-06-16T14:18:48.731Z"} +{"cache_key":"ff317bc30ecc4228784e8b455a68450f7242df45e6ed947fecba66c2f4fa2225","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"fa","translated":"افزونه کد","updated_at":"2026-07-10T02:29:53.714Z"} {"cache_key":"ff96c5795be4a5bdec897907415509ec536faef255920cd4d9e64c9bd78bc76c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/fa.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"fa","translated":"فعال","updated_at":"2026-07-09T10:01:43.762Z"} diff --git a/ui/src/i18n/.i18n/fr.meta.json b/ui/src/i18n/.i18n/fr.meta.json index 54ee117017f0..79dba44e4464 100644 --- a/ui/src/i18n/.i18n/fr.meta.json +++ b/ui/src/i18n/.i18n/fr.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:26.288Z", + "generatedAt": "2026-07-10T09:47:05.914Z", "locale": "fr", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/fr.tm.jsonl b/ui/src/i18n/.i18n/fr.tm.jsonl index 9614814b256a..9c9f5af5329f 100644 --- a/ui/src/i18n/.i18n/fr.tm.jsonl +++ b/ui/src/i18n/.i18n/fr.tm.jsonl @@ -1,170 +1,237 @@ {"cache_key":"00234d09f2794602f4f76bdfe8617401a7778917c7b2bf3ffbb03c894419d0f7","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"fr","translated":"Chargement des microphones…","updated_at":"2026-07-06T17:33:45.160Z"} {"cache_key":"00af9b2b278f6da91a0836776926b2a3b73b97e0c5ed5b98b295d9785aa9d027","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"fr","translated":"Chargement de l'espace de travail de session…","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"00ecedc99bdac773bb3592300d262ab677f30b1e8cc8a7cd55bb671a101addff","model":"gpt-5.5","provider":"openai","segment_id":"connection.reconnecting","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Reconnecting…","text_hash":"27b80374e1151af6df7824a358606c77502548bff4d467e4ae2e146801f601ce","tgt_lang":"fr","translated":"Reconnexion…","updated_at":"2026-07-05T21:55:29.170Z"} +{"cache_key":"01780fd986bdcc7fe784147a9a534d77137d5bfcb4dbc65157b235dd216c57a1","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"fr","translated":"Signalée par la connexion Gateway active ; distincte de ce build du Control UI.","updated_at":"2026-07-10T09:47:05.904Z"} {"cache_key":"028865b404599f60f598f79d88da1c9049b92dc5a528ac3722d6ab2ee16bc926","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"fr","translated":"Agent","updated_at":"2026-07-05T14:39:49.624Z"} +{"cache_key":"081240400c9d484e7e79697db4286b0845d91065b3f532d4e795353745391801","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"fr","translated":"Maison et médias","updated_at":"2026-07-10T05:22:13.016Z"} {"cache_key":"084e6dbd8d02fb9614914233d275176036a810e1579919065826b82e390b7fe5","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"fr","translated":"{count} requêtes","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"08699dbf6d43eb9b0cbd657a6699ce1e2153a2f0658e12095403222c3023ee64","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dragSessionHint","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Drag to move between groups","text_hash":"3e8692b1cd1c1f9a606a779f1037aa390c885fde224ddb841df9259e8aab03ae","tgt_lang":"fr","translated":"Faites glisser pour déplacer entre les groupes","updated_at":"2026-07-05T14:39:49.624Z"} {"cache_key":"08a750ddd48d4a982d9fbd14639b38f6d5461ffc37d07dbe062404aaa12447b6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"fr","translated":"Désactivée","updated_at":"2026-06-17T14:14:32.183Z"} {"cache_key":"08a9d1a3f15c6d026bee0d8b374f53953b92cf416f86ab51d2228d77a6319e7b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"fr","translated":"Actualiser","updated_at":"2026-07-09T10:01:43.739Z"} +{"cache_key":"097c0a4d5fea1caf8950b7f70c2a029f967cc53beabb6d9059e3ef680172266a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"fr","translated":"Depuis ClawHub","updated_at":"2026-07-10T04:28:23.274Z"} +{"cache_key":"0b68a196765c9218675ac9051aaa75004a1fac8459ab1b19baf8f4def9adc1d2","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"fr","translated":"Plugins","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"0c542180a4ce7d309128a82a18bdc74cb58428bf0feb59f1b49e6ba6d0488a12","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"fr","translated":"{count} affichés","updated_at":"2026-06-16T14:14:38.496Z"} +{"cache_key":"0c785245118a343b487c40d42285216a321f51b8fea53d36b56eb8f4bb4d480e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"fr","translated":"Serveur MCP en un clic","updated_at":"2026-07-10T02:24:45.578Z"} +{"cache_key":"0cdcba6cd59130297cad970566c0ad278a0ceca9bd56b62932770b568e958dd3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"fr","translated":"Rechercher dans ClawHub","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"0db0d861cc72ed879a57792f8523e90c3ee60722b4aa6929a2ce044a253874e8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewBlocked","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Blocked","text_hash":"18f2a0947f9d6523991b29b450307f22773f57d65f7efb98d48a167df04d6b1d","tgt_lang":"fr","translated":"Bloqué","updated_at":"2026-06-17T14:14:32.183Z"} {"cache_key":"0e35020d1adb415eb12da2e7664a2a10258ceac5aa34e4f1ccde3f0193b8f9eb","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"fr","translated":"Inactive","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"0e4b9c05b139c190952060fb88b6941e6b67eb375455366a809eeb78992de60b","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"fr","translated":"Pièce jointe ajoutée","updated_at":"2026-05-30T15:38:23.998Z"} {"cache_key":"0ebf3031872afc9f1d9ab83044cf8543f9be006020153dcf041392637a14fdc4","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"fr","translated":"Activez le partage des sessions Codex sur le Gateway ou un ordinateur jumelé, puis actualisez cette vue.","updated_at":"2026-07-09T10:01:43.739Z"} +{"cache_key":"102ebdfe5b558e81f319214d872a7f00a5b4a635f9f0010d508909e080ec923b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"fr","translated":"Activés","updated_at":"2026-07-10T02:24:45.579Z"} {"cache_key":"1061a461f1cded95803b4b80842d708eefa8639e8f98cc83b894e9c4049bb93b","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"fr","translated":"Restaurer","updated_at":"2026-07-05T21:00:55.929Z"} +{"cache_key":"107fdda4b11a97ff3600fdb69dec76f85c4192d60fc0f8a98043dcd17296549b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"fr","translated":"Nécessite une attention","updated_at":"2026-07-10T02:24:45.579Z"} {"cache_key":"10a71530d545b73727a8bf867acf9450cd23be9cb7bbe02edfb89eea7ff52a66","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"fr","translated":"Commande","updated_at":"2026-06-16T14:14:40.922Z"} {"cache_key":"10c47c1f85d37e29ce8e5d39c4fb55a31878f742cd3731dce30ef89ffd6266a7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"fr","translated":"Densité de carte confortable","updated_at":"2026-06-17T14:14:32.183Z"} {"cache_key":"11b685e8bc937c3f3a8cccf7984408a1803d5bca4bddfce6bf1f74d1bb994cea","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"fr","translated":"MCP","updated_at":"2026-05-31T05:36:40.482Z"} {"cache_key":"11f38606779c84950d52fe00444b6a7cc0cafda8ebfb556516ffc3c1787f89b8","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.runtime.cron","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Cron","text_hash":"dd9d24965dbedc026915308732b77c1af68dcf52d3c0ca2421b1fdb0d197aca1","tgt_lang":"fr","translated":"Cron","updated_at":"2026-07-06T08:42:32.187Z"} +{"cache_key":"125921179ab78626b8d2b86e460a288fc4f3e79233d58497a058e7e0cf9a97af","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"fr","translated":"Travail et productivité","updated_at":"2026-07-10T05:22:13.016Z"} {"cache_key":"1262fb9d4880e002aea94b13dd7ca75df4734fdf963fac6c7c655757cae5646b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"fr","translated":"Session Codex sans titre","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"127526bce2459285625f3d800371e550e4d1d76f82d98c4b50a42eb9584a4d0c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"fr","translated":"Actualiser l'espace de travail de session","updated_at":"2026-06-16T14:14:33.243Z"} +{"cache_key":"12de24de4963ccde705e14e1b64cbb8be231dff65a5f085dd6dba2fd0c5a988a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"fr","translated":"Installation…","updated_at":"2026-07-10T02:24:56.668Z"} {"cache_key":"145f6ee918a43d1b18f1b804a46bcd53be629bf767c419bfa9d024df0078444a","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.status.failed","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Failed","text_hash":"031a8f0f659df890dfd53c92e45295b0f14c997185bae46e168831e403b273f7","tgt_lang":"fr","translated":"Échoué","updated_at":"2026-07-06T08:42:32.187Z"} +{"cache_key":"165d7ff28846baf00ebe11ffd83163187a5d0e47cfa7c6488293ca1319ac89a7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"fr","translated":"Nom","updated_at":"2026-07-05T21:00:55.929Z"} {"cache_key":"16a93b1f00240d80d35b21351370279d6a3cf9c2a9df7129db4681c9d706e094","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"fr","translated":"Aucun worktree géré.","updated_at":"2026-07-05T21:00:55.929Z"} {"cache_key":"16d4f32494008e2155d74568455778ced1700a1c62ac15dd3f2f314ea5cec066","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.usageCredits","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Usage credits","text_hash":"fbc841b791a14110e06a9913d3d69153b9cc4cf9542b856821b357a09a7c08a4","tgt_lang":"fr","translated":"Crédits d’utilisation","updated_at":"2026-07-09T11:49:23.923Z"} {"cache_key":"178ac4dbab2ab70c12baccaba1e29af30254c564ca9c6ac42e589bea89e88ac2","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"fr","translated":"Filtre d’archivage des sessions","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"193a027d27061ee7de015b356ae38b8e2b41f3d1b6c6c25b62bcf92b835cca1e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"fr","translated":"Locataire : {tenant}","updated_at":"2026-06-16T14:14:26.985Z"} +{"cache_key":"19479f38cdfc93beeb1d103e5d2fbc2ff7863f4590a5aa14b5b7920129ca7d75","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"fr","translated":"Rechercher des plugins","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"19a2dfca17792e57db3d8190d8446902ff7f995966691a370b575e79d84ac0f6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"fr","translated":"Ajouter une décision, un blocage ou une note de preuve...","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"1b40206bca6f64dc2373064e63e846049a70ccaf1f882baeaa35d64bd1ee3591","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"fr","translated":"Hors ligne","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"1badc8ec37f3de047ab11f96a0029ddc3036aaa079b38099c789876304b8f1b0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"fr","translated":"Développer l'espace de travail de session","updated_at":"2026-06-16T14:14:33.243Z"} +{"cache_key":"1c161a7cbe8b57321524d30dec60b55a7db5cbe4e79ec5b30adbb49ffffa0b7d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"fr","translated":"Filtrer les plugins installés","updated_at":"2026-07-10T02:24:45.579Z"} {"cache_key":"1c5f87a260a2836bdb049ea59e31620a2d59e0879b43d0207f92a64a946f1fa9","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"fr","translated":"Le microphone sélectionné est indisponible. Choisissez une autre entrée ou l’option par défaut du système.","updated_at":"2026-07-06T17:56:30.924Z"} {"cache_key":"1cc235967bf9e738046472d651b35350a9cc43cfa4be1c9021cebab91911863c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"fr","translated":"Artefacts","updated_at":"2026-06-16T14:14:38.496Z"} {"cache_key":"1d77b7aea09025155b896b62f7cd8b4a2724c5ccc6dc06c47fb92c64ebd1c7d6","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"fr","translated":"Actives","updated_at":"2026-07-06T08:42:28.841Z"} +{"cache_key":"1d7b1d7fea5af788b056f54afc8a7bb03e96de542d7d1173148e93d5755fbd51","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"fr","translated":"Source vérifiée","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"1dbcda198a2075b61f25320ebf6da48377dbfdbe02a12167d2e55071744d8441","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.active","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"fr","translated":"Actives","updated_at":"2026-07-06T08:42:28.841Z"} {"cache_key":"1dfd8f335c574b5b17d3bc5d093241f9a55f81b3e843b363f56688b9eb6939c5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"fr","translated":"{count} bloquées","updated_at":"2026-06-16T14:14:33.243Z"} +{"cache_key":"1f36651e45892ff9d377be335473b96ed6513a285742e5416e4fee11ddba3165","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"fr","translated":"Plugins","updated_at":"2026-07-10T02:24:56.669Z"} {"cache_key":"21e8c75a1d1195121d70203fc266bcbc03b756e14a84533ff18c2292bda91f4e","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"fr","translated":"Statut","updated_at":"2026-07-05T21:00:55.929Z"} {"cache_key":"2309c1ac36a8a19d601737e764f6784226f2ba21edd0c8cda475fa7a1510255f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"fr","translated":"Exécutez /pair qr à nouveau pour générer un nouveau code de configuration.","updated_at":"2026-07-01T10:32:03.163Z"} {"cache_key":"236a27550be410308499e667fba0cbb26be45766179fd5043fdc248894168591","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"fr","translated":"Actions","updated_at":"2026-07-05T21:00:55.929Z"} {"cache_key":"254fb975ffa11b3a15104dedc3cc15142c1be6ab1ae6f251436e74ec7cb75c7a","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"fr","translated":"Tokens de la dernière exécution","updated_at":"2026-07-05T10:16:09.189Z"} {"cache_key":"256bdfea02a1285fd9a2fe6b4e59c771da27740dd3e0270ac1333a391b0c0bbc","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"fr","translated":"Gateway","updated_at":"2026-07-09T10:01:43.739Z"} +{"cache_key":"25ddcd5e79bf4da8417308a1ee79e94fcec425da5a2eb041e38794bca1c390cd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"fr","translated":"Gateway hors ligne","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"26781b76bf720fbf124cd4d66490db5c759edebbd11030a074411c58de099b0e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"fr","translated":"{parent} (manquante)","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"271f63b345efbb0cdf89a170073a46785fecd4b1997a045d35b4146b38c9a699","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"fr","translated":"Créer un instantané et supprimer {name} ?","updated_at":"2026-07-05T21:00:55.929Z"} {"cache_key":"27ce8e37b65777b3f85840ba03dfb77e82253f310a0add1db17653d9e7649bec","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"fr","translated":"Session","updated_at":"2026-06-16T14:14:38.496Z"} -{"cache_key":"29471ec86f3a3925ec2d4ea2e59002e5a0840aeb79ef8bbc0300e8af1c775b2d","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"fr","translated":"Sons de homard","updated_at":"2026-07-10T04:50:09.936Z"} {"cache_key":"29543289b89e37bfcf5463f542622dbc78302bfc7b168de33bc9c12a4a75a80b","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"fr","translated":"Examinez, affinez et appliquez les propositions avant qu’elles ne deviennent des skills actives.","updated_at":"2026-05-31T21:48:25.015Z"} +{"cache_key":"2bdc5152de290d48705998872b49290e693b03d6b62920d6aee2ceb8a0475454","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"fr","translated":"Disponible","updated_at":"2026-07-10T02:24:53.076Z"} +{"cache_key":"2ca7b9aa28d0799f801f0c4fa89f28332fd2eb104134440ae12f9db7288f0e57","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"fr","translated":"Serveurs MCP","updated_at":"2026-07-10T02:24:49.792Z"} +{"cache_key":"2d02854927dc047e0869970f9acc2a811a1d3330a28d076092903757abf93201","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"fr","translated":"Rechercher des plugins","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"2d02eda4cb1b2cf09f9d6fcd1f3071cb2fba7dd198185cb50b47c72e994096c6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"fr","translated":"hôtes","updated_at":"2026-07-09T10:01:43.739Z"} +{"cache_key":"2d0a7be6fbc9729baae35e3f0027459e697969a1b47dea3317a8b5e35223541d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"fr","translated":"{name} installé.","updated_at":"2026-07-10T02:24:56.668Z"} +{"cache_key":"2d0d2638850e94c61cf725b2d159f11cd4d17e57ed228754b45afb73d0991f89","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"fr","translated":"Serveur MCP {name} ajouté.","updated_at":"2026-07-10T02:24:49.792Z"} {"cache_key":"2d664c38a84db160608b83c689aa2128735a6b849459831f057675cf6f40c46b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitHours","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{hours}-hour limit","text_hash":"c9091350c3c5c4e3c54dae43eec58cd35555724276a0acc388b98239a573f9df","tgt_lang":"fr","translated":"Limite de {hours} heures","updated_at":"2026-07-09T11:49:23.923Z"} -{"cache_key":"2d804dc17ad73d9ecf4e594bc4884d78b9cd87efb1903bbfa25b6415649c6186","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"fr","translated":"Ancrer en bas","updated_at":"2026-07-10T06:08:12.054Z"} +{"cache_key":"2d7fad6c5cafdc8990269e352897bd3a62489060eafc713c5cb60616bac9e8cc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"fr","translated":"Suppression…","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"2f5c0d4d98314b8109548a8930ca5a33f1fe4524fdb3732d3a0926367d414e0e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"fr","translated":"Moyenne","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"2f7fb7335938fd29ef05e0ceb033a1a748e2d86d6c9937fb5f3200cf5d6bfc74","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"fr","translated":"Scinder","updated_at":"2026-07-06T22:56:24.145Z"} +{"cache_key":"30481d2f38e57fad61d8a89f95617a3988bff031fc12a8a87f79a5a4750d1e93","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"fr","translated":"Package","updated_at":"2026-07-10T04:28:23.275Z"} {"cache_key":"3191d7697e74cdb24a5cc32e85babed792d8d28fcf41a3752e7bcba4e9b082c3","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"fr","translated":"~{percent} % du contexte utilisé ({used} / {context} tokens, approximatif)","updated_at":"2026-07-09T07:40:36.986Z"} {"cache_key":"32508a245b7f297458454d0d6b421f18bfb8e5b30cc485b6c8efb83efe906823","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"fr","translated":"60s","updated_at":"2026-06-17T14:14:37.466Z"} {"cache_key":"332aa29d6dc5e485013d1490b2de888ccd79e840cb107e67ac89eb4c4b374455","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"fr","translated":"Ouvrir les détails de l’utilisation du contexte","updated_at":"2026-07-05T10:16:09.189Z"} +{"cache_key":"33b0d5d4bf562b1bfe44d18847cb802cd225f24880fa2177f8ca3a4cb9d159a3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"fr","translated":"Désactivé","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"33f08936ac956a25ff1afbce1f6967a17269c18d5c829f5fc007dde85c338703","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewAll","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"All cards","text_hash":"2306120917506b5998ec702f3661068b102dac538ba4c9e4634d65fe33eea98a","tgt_lang":"fr","translated":"Toutes les cartes","updated_at":"2026-06-17T14:14:32.183Z"} {"cache_key":"3485fcb7e8e509359a4023863bf391eb0cbfbdc177ef8015226c3040a94aef4c","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.subtitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Calendar windows ending {date}","text_hash":"f01adb920b86724f393ee7bca5ea4a90bd5a777d39f6191ed9c13530ceb7851d","tgt_lang":"fr","translated":"Périodes calendaires se terminant le {date}","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"35481b71eba2317119d4dbf7dbed0f878b2be2d53e7b666729eeed5f8c10d827","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"fr","translated":"Commentaire","updated_at":"2026-07-01T01:07:07.533Z"} -{"cache_key":"35ef5175eca4c1d0b317868f104d2b63d02819d9c3cb7f8fa4c4b55341e45fac","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"fr","translated":"Afficher les fichiers de session","updated_at":"2026-07-10T06:08:12.054Z"} {"cache_key":"3649ba8a2871d126143be5a4e1ac1f92245d45218aeed48e2a2ffacfafd18214","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"fr","translated":"Chargement des sessions Codex…","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"36516569da22cb699e4e4cf9c2bcc57ef4ecd897559292191e79b6b5f23c4f51","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"fr","translated":"Vue en lecture seule des sessions Codex sur ce Gateway et chaque ordinateur connecté qui les partage.","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"366d97e5504f39bb1cb1e1fa656024a34801377ef5fa7356b07b80cd48f480b7","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"fr","translated":"Utilisation du contexte de session : {used} sur {limit} ({pct} %)","updated_at":"2026-07-05T10:16:09.189Z"} +{"cache_key":"3733d8f93c4ab5d1989e512cff1292a01068bfe5a480281fde3886fa30a0118b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"fr","translated":"Parcourir ClawHub","updated_at":"2026-07-10T02:24:41.383Z"} +{"cache_key":"37e99d51dd2fc670b9ac49f4afe6f3991d8a40e3661a2861582420464bb84367","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"fr","translated":"Problèmes","updated_at":"2026-07-10T02:24:45.579Z"} {"cache_key":"38901d2baac04e7856a6d2e79c3cbe22fa97b1d281595ea4b15d85d604285bee","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.openUsage","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Open usage dashboard","text_hash":"bae5e40b055c195a780a0dc06042d60353da51ab582610096c5cb0d269484c00","tgt_lang":"fr","translated":"Ouvrir le tableau de bord d’utilisation","updated_at":"2026-07-09T11:49:23.923Z"} +{"cache_key":"38eac1e9e6498142ac9a9b23c55ac3817c0fd1160651986f1635fee425f06dd8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"fr","translated":"Vie quotidienne","updated_at":"2026-07-10T05:22:13.016Z"} +{"cache_key":"3963bb1d6ca267b922d18b9cdd622f0f3e4387a24e8354b13eeb161eb53e48e9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"fr","translated":"Connectez-vous pour parcourir les plugins installés et recommandés.","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"3a1b658e2766ee33c4a8154d7d81cc7fcaefff6a4118e2e08ce5d29f41434b66","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.restoreSession","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Restore session","text_hash":"35e4dc9befd3b3a29b50938839af0efb41b08051988dde53e1c1e73d1c2a039f","tgt_lang":"fr","translated":"Restaurer la session","updated_at":"2026-07-02T14:30:13.470Z"} {"cache_key":"3b48c583025003c0cb0d4c3cf5855b3e8b958dc256f51b97d55fe50d4f377679","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"fr","translated":"Ouvrir dans le navigateur par défaut","updated_at":"2026-07-09T11:02:48.820Z"} {"cache_key":"3bc46432de64f9d82a3e78b6cbc8170448add64ef00783823c1f0266d24ad3b8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"fr","translated":"Cartes explicitement assignées à l'agent par défaut configuré.","updated_at":"2026-06-17T14:14:32.183Z"} {"cache_key":"3c0184dd360912c8947b9a78652bf0b39064c358953f3403ff700329ef79a36f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"fr","translated":"État du tableau de travail","updated_at":"2026-06-17T14:14:37.466Z"} {"cache_key":"3c8df1c3cf1b9b89ac7d771171aacde57dbfb30b1f92314aafd9e33e54db0812","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"fr","translated":"Les paramètres avancés nécessitent un accès administrateur","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"3cb1081b70aa9b070a66d0853311d0abe28342fc8fe9b58d29477a04fa0f4929","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"fr","translated":"Build","updated_at":"2026-07-10T09:47:05.904Z"} +{"cache_key":"3ce8f87cb0f2e5fddad69908a017e1afe6c7567615537047f0b6cd6d651ec8fb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"fr","translated":"Saisissez au moins deux caractères pour trouver du code et des plugins groupés.","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"3ced3592ea6acebeac1c5b2e06684c1aabd1fdc1deed38906e62320a9fe51bd4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"fr","translated":"{agent} (par défaut)","updated_at":"2026-06-17T14:14:32.183Z"} {"cache_key":"3edc00a38a3d13ced2578a684c2ae62a7bcd6cc73e235c78fb64d7a572b8b8fa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"fr","translated":"Skills : {skills}","updated_at":"2026-06-16T14:14:26.985Z"} {"cache_key":"3f2a1680c4c8f175feb2765b734b9dfbeb633b1c333c3ed7d1d00945c8a7dae1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"fr","translated":"Aucune carte ne correspond à cette vue","updated_at":"2026-06-17T14:14:37.466Z"} {"cache_key":"40546e90cf39a2dafd476f982b890514b8468f0d8937c957cbef62cf59b66f73","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropOpenHere","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Open here","text_hash":"b08e2fd2e872adcb575b305187b9db8482369325806953ce80190fc2dc1ab9fb","tgt_lang":"fr","translated":"Ouvrir ici","updated_at":"2026-07-06T22:56:24.145Z"} -{"cache_key":"405c4cc9b4e285aaf936d79665f98c6d745f2dbd2e13af2dca003757a33ff884","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"fr","translated":"Rechercher","updated_at":"2026-07-10T06:08:12.054Z"} {"cache_key":"41417f07a0c6ed543378910a910566667149f9b110fab6e5ffb36d64400e9f12","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.badge","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Expired","text_hash":"424a2551d356754c882d04ac16c63e6b50b80b159549d23231001f629455756e","tgt_lang":"fr","translated":"Expiré","updated_at":"2026-07-01T10:32:03.163Z"} +{"cache_key":"422ad9c1d3c53291b8d5160cdff82880f2f08832e75f2fea7fd9cf539659670e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"fr","translated":"Fournisseurs de modèles","updated_at":"2026-07-10T02:24:49.792Z"} {"cache_key":"424f9b28aaa8357013433e8caad46c51ad5141083f8de91f9215824cad9d34e3","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"fr","translated":"Orchestration","updated_at":"2026-05-30T15:38:23.998Z"} {"cache_key":"4255a719f4f69f4be7edecc3dbdc5279ceb09478ea0e2d4f428d4b10b5dd6740","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"fr","translated":"Dossier parent","updated_at":"2026-06-16T14:14:38.496Z"} +{"cache_key":"42a9e3bcb3f332b85cdc3c53db87838f64d7ad09c440d1d8df6f21da187716be","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"fr","translated":"Ajouté","updated_at":"2026-07-10T02:24:45.579Z"} {"cache_key":"4348d8b8b481e750f43855decc77578211c8b11edff0aab7474256f612664206","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.runtime.subagent","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Subagent","text_hash":"d6cb4188b8fa57aae3e4ca3a1210c9afe7ca995375c2fb36d90a1fa73529a44e","tgt_lang":"fr","translated":"Sous-agent","updated_at":"2026-07-06T08:42:32.187Z"} {"cache_key":"445667ee63b3998cda03cc9f148048d488fa2a70a04e052be534e751f9b86cc3","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"fr","translated":"Ouvrir dans la barre latérale","updated_at":"2026-07-09T11:02:48.820Z"} {"cache_key":"44af3c13b3d3654d758b55ff2be9d8ad98ef796691eaab42a796a2434baa2c7d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"fr","translated":"Date","updated_at":"2026-07-05T14:39:49.624Z"} {"cache_key":"45a8d7c9e418e635734022b7e862febd2111b66de5bc2a44a5a4063b66691e50","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitWeekly","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Weekly · all models","text_hash":"144f0e5ca031e40c0cba8a53a9dcb4d9534c74edd976587231da2cd14b4944df","tgt_lang":"fr","translated":"Hebdomadaire · tous les modèles","updated_at":"2026-07-09T11:49:23.923Z"} +{"cache_key":"45e78665a03db4bd66b33198d7d444c8c6790396491df55878ae16aed5286bbc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"fr","translated":"{enabled} activés, {disabled} désactivés, {issues} avec des problèmes","updated_at":"2026-07-10T06:08:49.325Z"} {"cache_key":"45f77c4535f74f1e1b676ac2ecc391404f91a9c8b4c84ffc37d34273717001c8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"fr","translated":"Modifiez la vue, la recherche, la priorité, l'agent ou le filtre d'archive.","updated_at":"2026-06-17T14:14:37.466Z"} {"cache_key":"4667b37b6fd6426af22fc905b46caad8f5b3f36ea33cf521c3e3ea151c9e0aeb","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"fr","translated":"Violation du protocole","updated_at":"2026-05-30T15:38:23.998Z"} {"cache_key":"466df8deac3e9fc53aad06b96fa1049818b2b4800029e9a7cd875c36b1157d30","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.emptyRecent","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No recent completed tasks.","text_hash":"71aceaf6accb5308950898b4d2fd7d938fd190cc7cf6314f000466577ed8de24","tgt_lang":"fr","translated":"Aucune tâche terminée récemment.","updated_at":"2026-07-06T08:42:28.842Z"} +{"cache_key":"47013c4ad55bd7d209c7f86a19135cada9043d408e806cc392b4c202fb5e2470","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"fr","translated":"Les noms de serveur utilisent des lettres, des chiffres, des points, des tirets ou des traits de soulignement.","updated_at":"2026-07-10T02:24:49.792Z"} {"cache_key":"47100c749023e0e173a6e87f2187d80d2925ee743b18a6e6a32f7da166feea49","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"fr","translated":"Restaurez cette session pour envoyer des messages.","updated_at":"2026-07-02T14:30:13.470Z"} +{"cache_key":"473334e917d2cedd95ed6b2cd4b90662edebffb0e431eaff920a6a037c91edf2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"fr","translated":"Outils","updated_at":"2026-07-10T02:24:49.792Z"} {"cache_key":"47ad1b7de1374aac2cfc474c632d4490af75f34702a705194fe7bcb5e5f6d310","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"fr","translated":"Realtime Talk nécessite l’accès au microphone du navigateur.","updated_at":"2026-07-06T17:56:30.924Z"} {"cache_key":"47e30e6a54e4acb67442f35402515c1a99e9e6b78ab66d45fe0e92895426b8a5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"fr","translated":"Aucune activité","updated_at":"2026-07-05T14:39:49.624Z"} +{"cache_key":"47fec87686e8a3af2f36603a4fdae439dc07150719861366149c79955e692923","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"fr","translated":"Voir les détails","updated_at":"2026-06-16T14:14:26.985Z"} {"cache_key":"4824a546c58c73b812aefc3b0586dbbb84dcf0416d42300c89fb365b4cebc002","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"fr","translated":"Aperçu","updated_at":"2026-06-16T14:14:40.922Z"} +{"cache_key":"48527a4f03b7e9760ba262ccc8a5cdb910037d680dee2af8c0c7a419fe879a20","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"fr","translated":"Mémoire","updated_at":"2026-07-10T02:24:49.792Z"} +{"cache_key":"48e93b7d00a3c699e45bbad0a01397e39c87e94ccd9eb885495cafd8a0021e31","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"fr","translated":"Découvrez un plugin mis en avant ou recherchez dans ClawHub pour étendre OpenClaw.","updated_at":"2026-07-10T02:24:45.579Z"} {"cache_key":"48fb045efa0639bbcff4d0d13045485758dfb03b29eeba30fa029861f919ed76","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"fr","translated":"Fil","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"49657a9bcd2000bec294a95b7fd79b113df274d6a74ef93382ad799593ebdfa6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"fr","translated":"Rechercher des sessions Codex","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"49c628bfa30ff74b544bfbccc64eee8918e74e2854835f5aabfd56d5114256c4","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"fr","translated":"Déplacer la session vers un groupe","updated_at":"2026-07-05T14:39:49.624Z"} {"cache_key":"4a89f35579bd9d4cb52527a62258f4a49ac70aee4e74574fd8c7cd80ea504fe2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"fr","translated":"battement {age}","updated_at":"2026-06-17T14:14:37.466Z"} +{"cache_key":"4aa806c34d81a9a16e2fe9e48a80e8f14dc52eac92313a9e66df5b10a9b0ed6d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"fr","translated":"Fermer","updated_at":"2026-07-10T04:28:23.274Z"} {"cache_key":"4ac700808f572afd6546dc0ae78fbadb8a02ef8aea0c6db3a460894afd56338c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"fr","translated":"Mis à jour","updated_at":"2026-06-16T14:14:26.985Z"} {"cache_key":"4aca4ab28db0c59e4ba5cd669e6214b94be4e00580bbbea3616c96a8eeece452","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"fr","translated":"Nouveau groupe…","updated_at":"2026-07-05T14:39:49.624Z"} +{"cache_key":"4afe49f7bd6ce798ad8de22f285c87f5d5a721627cd0c8b4918911d01bf4610e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"fr","translated":"Ajouter","updated_at":"2026-07-10T02:24:45.579Z"} {"cache_key":"4b5db0ad286694866b63bc0cc6e371abefbff497099982cfc517f7681ede0e9c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"fr","translated":"Chemin de l'espace de travail","updated_at":"2026-06-16T14:14:38.496Z"} {"cache_key":"4d1c670522c8374ec8bf4004ecdf2df6153c2553637f3f5e0fe4e242c5928673","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"fr","translated":"obsolète","updated_at":"2026-06-17T14:14:37.466Z"} +{"cache_key":"4f2e8d35a027a2509c166339fc32911395d8d589097e1dfa097d6ba8a804057c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"fr","translated":"Connectez des serveurs Model Context Protocol pour doter votre agent d’outils supplémentaires. Les modifications s’appliquent aux nouvelles sessions d’agent.","updated_at":"2026-07-10T02:24:49.792Z"} +{"cache_key":"4fab3d1c6622dd0436d22cf0fc9b1f16d75e1e1028787da681dba64be27a4771","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"fr","translated":"Découvrir","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"4ff4268771ec7e318270a2cbebb0038128971ca954bedf744519ced4144a4f87","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.perDay","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"/ day","text_hash":"122faff7033fbaa4fac55b95788a16f370e13ab272d734f33bfcf15021170fe7","tgt_lang":"fr","translated":"/ jour","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"508d8ba945c4b7079e6b27b147be30042dc3df0a3684b8d0469ae467860f7119","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.untitled","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Background task","text_hash":"dba3626059c35bd2e98b0d10db53d9832106dca8a364c3f6106f2788b4d032c6","tgt_lang":"fr","translated":"Tâche en arrière-plan","updated_at":"2026-07-06T08:42:28.842Z"} {"cache_key":"5122b87f1257c4a84049372ffc6c6a24836fbb9f18a58407350c39b1a54f3020","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"fr","translated":"Type","updated_at":"2026-07-05T14:39:49.624Z"} {"cache_key":"5141910c57fb2558f451f18f8b90bb0f60eb86a6b8e0dc6de89ad93b5be8cf44","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"fr","translated":"worker {state}","updated_at":"2026-05-30T15:38:23.998Z"} +{"cache_key":"51cd03db7965398bf2d3486c348be741472fa76ed4d0eaecae2e92e86cc318cf","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"fr","translated":"Impossible de copier le hash du commit","updated_at":"2026-07-10T09:47:05.904Z"} {"cache_key":"52b016beef2059b321a9cba3b7eecebe951c89414837597b03641e763ad0a422","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"fr","translated":"{count} session","updated_at":"2026-07-05T14:39:49.624Z"} {"cache_key":"52b4758a7dd38e57f35fc7bb361e6cfb4c65bd72299fd083ddc150236aa31430","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"fr","translated":"Racine","updated_at":"2026-06-16T14:14:38.496Z"} {"cache_key":"535a8aa891502c8f1c0a0d7ba619e8bf1ff64e4ae9309cdffb1875f961c54912","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"fr","translated":"Aucune entrée microphone n’a été trouvée.","updated_at":"2026-07-06T17:56:30.924Z"} +{"cache_key":"54805cb2d1873f9eed23e46f2c8152a66d6b3b8448851f129f3d7ca6c1843f5f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"fr","translated":"Supprimer ce plugin ?","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"5480feb777d91dc759403e6ad76292c9cab5329cda4b349839557238494b84c9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"fr","translated":"en ligne","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"578bb582711633223c7729d971ee2bdb4eed82aea839375438c2d01a9ffe0053","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"fr","translated":"Erreur de l’outil","updated_at":"2026-05-31T06:43:56.223Z"} {"cache_key":"581efbf0d49d2cd68a87a9b290385f463f67595930b8001a1124cd67ceaad410","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"fr","translated":"Dernières tâches terminées, échouées et annulées.","updated_at":"2026-07-09T21:53:18.146Z"} {"cache_key":"58301673e3a99cd4120a852d09e7b02bd6910264d0a03b50d96375b29e95bcde","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlockedTitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Waiting on dependencies: {parents}.","text_hash":"50fb8f9b1326b69bd67d25583ddb4f70b9d75ae6e3ff8a9056a9361daa4b7d8b","tgt_lang":"fr","translated":"En attente de dépendances : {parents}.","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"58fdd7dc05c78a34950c9c6673f8645dca07bbf8acc1b98245f0053e44b27313","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"fr","translated":"Groupes personnalisés","updated_at":"2026-07-05T14:39:49.624Z"} +{"cache_key":"5a533486ce3d81ba36fc9581780dfcc743d07d10761ec5f9835a7fdaa401365c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"fr","translated":"ClawHub","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"5a61afd8e13a832b6e8506b0b4bb16b3289e5eb3cdea7ab8ab1644508cecb194","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"fr","translated":"Afficher uniquement les sessions archivées.","updated_at":"2026-07-02T14:30:13.470Z"} +{"cache_key":"5b1a1f76b54cfae1063a35e0377af129ae74f94e384f46ff9f6809f555309674","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"fr","translated":"Plugins de la communauté sur ClawHub","updated_at":"2026-07-10T02:24:45.579Z"} {"cache_key":"5b2e0dd2b5bb202e6ecef6fa600de352d52bd94c344b9d543deffdf7563d2456","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"fr","translated":"{count} artefacts","updated_at":"2026-06-16T14:14:38.496Z"} +{"cache_key":"5b46f066072f1c5c6155c6f519d12bf5322ad719d9d3ada675ccef901de59d4c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"fr","translated":"Activer {name}","updated_at":"2026-07-10T02:24:56.668Z"} {"cache_key":"5bb0b721ebc755b2676aa27b98c9f23bbd760718c50553f2c4210ae61e4d07b6","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"fr","translated":"Échec de la création de l’instantané : {error}\n\nSupprimer sans instantané ?","updated_at":"2026-07-05T21:00:55.929Z"} {"cache_key":"5bc8019001e7a0367c3f99398dc9c2ce155837a5b2c710ba829542c3c185d2cb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"fr","translated":"Notes de l'opérateur","updated_at":"2026-06-16T14:14:26.985Z"} {"cache_key":"5c307aff8a311320396f004379dfae07eb259b5d571aeec5be1d9434cf434891","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.status.completed","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Completed","text_hash":"22a970d2e5b1cc233e462be7c7b64e135a275bb09d83d87683bf4236c43113a1","tgt_lang":"fr","translated":"Terminé","updated_at":"2026-07-06T08:42:32.187Z"} +{"cache_key":"5c525f24dc9a942cb884cfa1d8fc51f28f445564d2fc6fb73322a873aef133a3","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"fr","translated":"Commit","updated_at":"2026-07-10T09:47:05.904Z"} {"cache_key":"5d00df2458f95482fc2608b8b57fa266f2e259785acb0d5c8e1eb5221c498b06","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"fr","translated":"Détails de la carte","updated_at":"2026-06-16T14:14:26.985Z"} -{"cache_key":"5d3ca94169cca4780b9b52be6cb640fa1f7e19fa64f6a55f4c4adcf362c3b7f3","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"fr","translated":"Lobsterdex","updated_at":"2026-07-09T23:55:52.873Z"} +{"cache_key":"5dac542e5281a1f2140d04234efc752a86ab1cd721109165d4c5f1ace966532e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"fr","translated":"Activer","updated_at":"2026-07-10T04:28:23.274Z"} {"cache_key":"5e558b657ccaf02af17707249b719ad1bd7debb134f069adffbf755d8c9aff15","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"fr","translated":"Diagnostics","updated_at":"2026-06-16T14:14:26.985Z"} {"cache_key":"5e7423e31cb02ad7039dc5457bce70cf780cdec5d8999a83cc1c7f3392bd8e3a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"fr","translated":"Ignorer l'erreur Talk","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"5e85b5ae39863a564926f72c2b081b7fb8f2974051a0350df3933a0eaa579314","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"fr","translated":"Nœud","updated_at":"2026-07-09T10:01:43.739Z"} +{"cache_key":"5ed57d75a472f179041fcd414acc3823c462b1ae1a88e024d0ff4cc91aec2f68","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"fr","translated":"Version","updated_at":"2026-07-10T09:47:05.904Z"} {"cache_key":"5f16d115ffe9e89761fff4bcaf5ed813a8f4de140bd458d6ad0c8cbbc087d9af","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"fr","translated":"Serveurs MCP, authentification, outils et diagnostics.","updated_at":"2026-05-31T05:36:40.482Z"} {"cache_key":"5f210b70ec285a1fdb5309333b64ed2f2efbf2a51def2ca7e0e079bf9f612706","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"fr","translated":"Aucune note d'opérateur pour le moment.","updated_at":"2026-06-16T14:14:33.243Z"} +{"cache_key":"5f6f0a3f8c7523c59168734b9cee5b4d91eed45257edf3e63e53dc44b36e51d1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"fr","translated":"{name} activé. Un redémarrage de Gateway est nécessaire pour appliquer la modification.","updated_at":"2026-07-10T02:24:56.669Z"} {"cache_key":"5f7c421af66cbd61cf05969b1caae9b2be804ca09542d1022ee6d399a874e03d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"fr","translated":"{count} dépendances sont terminées.","updated_at":"2026-06-16T14:14:33.243Z"} +{"cache_key":"5ff416e5690dfc90ce9bc1af54552c28889d6e0d0af4d69925af3e2304656ea8","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"fr","translated":"Copie du hash du commit","updated_at":"2026-07-10T09:47:05.904Z"} +{"cache_key":"5ff46c7e7aa82a531cda7fc2b5310c2122db5dd08a5be5863fe2df4f2791eebe","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"fr","translated":"Reconnaître le risque et installer","updated_at":"2026-07-10T02:24:56.668Z"} {"cache_key":"601a5638ff5882532b96cc03e01de84b2de7b97875493053ec13bf8fbafc84ea","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.title","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Context usage details","text_hash":"0e04e44654b5a2abf769dcd2f82a32e0501a41689d6635d7f718978c160958f0","tgt_lang":"fr","translated":"Détails de l’utilisation du contexte","updated_at":"2026-07-05T10:16:09.189Z"} {"cache_key":"60a2bb147da19a4a5e31480c337048eda4fbfd6a2014dd85e12cc8aa040fe09a","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"fr","translated":"détaché","updated_at":"2026-07-04T21:23:55.379Z"} -{"cache_key":"60dc1cc104e832868d96ce0b027f734c1b51caa07c5945e5c47308189999b936","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"fr","translated":"Ancrer à droite","updated_at":"2026-07-10T06:08:12.054Z"} {"cache_key":"61d03a973ba766f19e26eea4e653020f3ccc0ec326eb08e102cb48ea9d459d35","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"fr","translated":"Résumé des sessions Codex","updated_at":"2026-07-09T10:01:43.739Z"} +{"cache_key":"6352593b6819a35b7753f534a043f3c42c20d8cb7e0268fcff572403ffe4e0f9","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"fr","translated":"Control UI","updated_at":"2026-07-10T09:47:05.904Z"} {"cache_key":"63e4957541f877f72a4d210a7ce8c39e43f16951d068093e2d3baee663a8d34c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadingMore","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"fr","translated":"Chargement…","updated_at":"2026-07-09T10:01:43.739Z"} +{"cache_key":"6555268dc439dd00ed0bb6c6a0280d6f3eb215f13102e4b423ff8226cf547866","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"fr","translated":"Consultez l’avertissement ClawHub avant d’installer ce plugin.","updated_at":"2026-07-10T02:24:56.668Z"} +{"cache_key":"66d376ba5aa0f56251257d6f52718105a73be67328db26f11bae88a5d935d9fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"fr","translated":"Trouver sur ClawHub","updated_at":"2026-07-10T02:24:45.579Z"} {"cache_key":"67ca21d363a785e3b9a2e41848560836983a23cd988eb8add97bcebe06a84b46","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"fr","translated":"Vue du tableau de travail","updated_at":"2026-06-17T14:14:32.183Z"} {"cache_key":"6873dceab2140b65dd67865854394a016cb5c45df49a05031942ea180fec406f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"fr","translated":"Hier","updated_at":"2026-07-05T14:39:49.624Z"} {"cache_key":"68f6b2e5cc499a1d635c7fd9b2363b1b9d0047d4d7007488dced4c0c6d795330","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"fr","translated":"Session","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"6907b932e1fb95df1ea4b28373823160cd50370e6fca9eeda725e8b5eea5a201","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"fr","translated":"L’accès au microphone est bloqué. Autorisez-le dans les paramètres de site du navigateur pour lister les entrées.","updated_at":"2026-07-06T17:56:30.924Z"} {"cache_key":"6a7849ff15ea111f06a321fd96464667ee69938ab69a94ba33a5b6b02ad7f386","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"fr","translated":"Ajouter une note","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"6abe60843e794988fefd7905ac60565e6a5f0e835efd5548fdc85bae0396dab2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"fr","translated":"Densité de carte compacte","updated_at":"2026-06-17T14:14:32.183Z"} +{"cache_key":"6b2ac508b349dffff1c846ca4777eb037b9b9c9549dc34d7ddffe06836879656","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"fr","translated":"Désactiver {name}","updated_at":"2026-07-10T02:24:56.668Z"} {"cache_key":"6b3b656273d0f13e29ae1e0286cf8c5cba6662e46f6657d1108bb9230565cc7c","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"fr","translated":"Relancer le répartiteur","updated_at":"2026-05-30T15:38:23.998Z"} {"cache_key":"6b5bc1b76cbb911552e1681c93aa43d7a30e0a9e0740ccbcffdf834a6fb51f73","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.openSession","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Open session","text_hash":"b205bb47f81a30968789eac28cefb848c4b849245d4d12f9311557c5f56ce770","tgt_lang":"fr","translated":"Ouvrir la session","updated_at":"2026-07-06T08:42:28.842Z"} +{"cache_key":"6b94b732924dd7b889a0a9194657b5af38af773774ed9d41686c9ef55921e7f9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"fr","translated":"Essayez une autre recherche.","updated_at":"2026-07-10T02:24:45.579Z"} +{"cache_key":"6b988dd4a58fd4e8565ab10efde3728844b66ae865afc320559a3b1a503f9078","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"fr","translated":"{name} supprimé. Un redémarrage de Gateway est nécessaire pour appliquer la modification.","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"6d131d2dce8bc8e9af357b9a64e8ec6fe700330113b8c99025101e2655f63607","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"fr","translated":"Élevée","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"6d6454acd26ce0d2128b3b1d12ad85272a493ae9adf2e84709d8367506f70dca","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.resets","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Resets {time}","text_hash":"5a0f8c1b2755ee505e02e19fadc7377ad48df63cc7d3399c20228fe3edc37cb1","tgt_lang":"fr","translated":"Réinitialisation {time}","updated_at":"2026-07-09T11:49:23.923Z"} +{"cache_key":"6e53f3afd5c31b7db98bd8fbe2995b0e653a8cfb9f4bc3aedfaf50a972273f0d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"fr","translated":"Saisissez une URL http(s) ou une ligne de commande.","updated_at":"2026-07-10T02:24:49.792Z"} {"cache_key":"6e9380a5fd9b07dc3d5af81793bd2f092f48aef97daad895270663e0e70a683d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"fr","translated":"Archivée","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"6ee4700695cb437e9ca635a8d61793548a701d4755daf6a71484698aa6533063","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"fr","translated":"Copier le chemin","updated_at":"2026-06-16T14:14:40.922Z"} {"cache_key":"6ef2cd73b1ddfdd8b71f51ed60a7b9779cfdf83dc16cdd7bbc7ce8f8eff21759","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.runtime.acp","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"ACP","text_hash":"75ad69d7586c3d7e42c1ac14e80c7938dc0e7413f7f6f867c3be14d5304cc66b","tgt_lang":"fr","translated":"ACP","updated_at":"2026-07-06T08:42:32.187Z"} -{"cache_key":"6f737472007ee3829eb36eaae448a3ded7380cf8e971b0c387fa063094c11615","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"fr","translated":"Petits glouglous au toucher","updated_at":"2026-07-10T04:50:09.936Z"} {"cache_key":"7002d22e03ddb1e5bcc6c8e00a5f82751bdaa35003b2f337f8e71a1ab891e77b","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.taskCountOne","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"1 task","text_hash":"cba293c13f302204af2ae5b202d80ea840fdf1cf7904d59e1a62efbadf1e5256","tgt_lang":"fr","translated":"1 tâche","updated_at":"2026-07-06T08:42:28.842Z"} {"cache_key":"70ffd7a78b610cc2643444d10e4aa03c2e553a1166ecc02d6b54c9a309df2ab3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"fr","translated":"Cartes sans agent explicite.","updated_at":"2026-06-17T14:14:32.183Z"} +{"cache_key":"712f2c0228dc35c542ba0932f17d4f523844ffabfd72ebfc0317c90c51499a17","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"fr","translated":"Copier le hash complet du commit","updated_at":"2026-07-10T09:47:05.904Z"} +{"cache_key":"713519c262c9b1c06367da06b6fb10a3aec12b1f499639ceadec282b9fecb0a5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"fr","translated":"Paramètres MCP","updated_at":"2026-07-10T02:24:49.792Z"} +{"cache_key":"71e2b1ca9c5cfd134d5b922fbc6af881e61c3d444f24067d131e0abf613ffed7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"fr","translated":"Codage et infrastructure","updated_at":"2026-07-10T05:22:13.016Z"} {"cache_key":"71f0a585503d91582dcde4674c25037bbaac82732490db87e5bd912739f04454","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"fr","translated":"Trier les sessions","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"7234248cfbec5b77523f43e81b72e3e2a0ebea267e12e5771d704c10f6498a1d","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"fr","translated":"Actions de lien","updated_at":"2026-07-09T11:02:48.820Z"} {"cache_key":"72efc8bd26b1f658ae81f731834aa1450426c96903d2086366e810a5790be95f","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"fr","translated":"Ne vient jamais","updated_at":"2026-07-09T20:51:32.819Z"} {"cache_key":"7326bfc1b896e188b85434fa1b3660fc59c02c85b1cc1d814063eb0c84bd71be","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"fr","translated":"Nom du nouveau groupe","updated_at":"2026-07-05T14:39:49.624Z"} {"cache_key":"739924a29500b99f0e7cdb1448e7b51daa1907699dbe46686a6e116e9a5f32f5","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"fr","translated":"Microphone {number}","updated_at":"2026-07-06T17:56:30.924Z"} +{"cache_key":"73b794e8ee83189ae0b090bad0073e8c3523035b67b12c8fceff8d28159e4f3a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"fr","translated":"Aucun élément à découvrir ne correspond","updated_at":"2026-07-10T02:24:41.383Z"} +{"cache_key":"7494d3175b2f9ae1fffa816a3bc6d1dba94970ad6d2f60e3fc7b2c6ebc70023a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"fr","translated":"Rechercher dans ClawHub","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"7495390a09799ce1841fa41dc6a9daca111dcde994af650fde947b06baa46445","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"fr","translated":"Reconnectez-vous au Gateway pour actualiser les sessions Codex.","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"74aa575c1879fb4ef4bb9d61d5de69b77f866e0e2cd5a078ffa6f31b1deb4fe8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"fr","translated":"Renommer le groupe…","updated_at":"2026-07-06T23:40:56.800Z"} +{"cache_key":"75d1f9d1332145504112034d0417444e822e755c1c8ee42cf59bfb66b5fc8e4d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"fr","translated":"Source","updated_at":"2026-07-10T04:28:23.274Z"} {"cache_key":"75eeffde33d9a4f451b77a2e7fffeb88539d8d8d32811da06ce468da6916db3d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"fr","translated":"Preuve","updated_at":"2026-06-16T14:14:26.985Z"} {"cache_key":"7645e0eedba437e1cac2433e0bf38b1ee2255ea40c88f6b5450bab93f24bb1ff","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"fr","translated":"Affichage des premiers fichiers correspondants. Affinez la recherche pour réduire les résultats.","updated_at":"2026-06-16T14:14:38.496Z"} +{"cache_key":"76a66e9f35a6b00727385b8006afdd04b9f858facc03c2d0d265f8ed48a6dcb1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"fr","translated":"Installer {name}","updated_at":"2026-07-10T02:24:56.668Z"} {"cache_key":"770518abebf7a78c6588cd6d026cd7691be706b273106fb1678679262ca6d737","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.cancelFailed","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Could not cancel the task.","text_hash":"604b3f1a92694f8b8ccf5cd07a47947d3cc1a4b6c0fd5719a36dba2ffbe38b17","tgt_lang":"fr","translated":"Impossible d’annuler la tâche.","updated_at":"2026-07-06T08:42:28.842Z"} {"cache_key":"78cc82a6282b5f7b980cf96128494d5dbcf42077806877b4592b2402e06b3cd8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"fr","translated":"Dépendances","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"78f8165fa3056168bc8f1b4d58d130fc71ab8073e561cfdfa9f3c3e14c5e16c7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"fr","translated":"Renommer le groupe","updated_at":"2026-07-06T23:40:56.800Z"} {"cache_key":"7a210978ff934e1d1ba8b5585c3aebebeaa999cc0f8945c1bd5887eb9b290dba","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"fr","translated":"Modèle","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"7a892f1a07fa5eed5fd7e780b03068b554eb39341a067e0ffb4f1889b79290db","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"fr","translated":"{name} installé. Un redémarrage de Gateway est nécessaire pour appliquer la modification.","updated_at":"2026-07-10T02:24:56.668Z"} {"cache_key":"7ac7d349892690195de768cfaf98b198a274dab96b92406c199bb3f83564b28e","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.cancelTask","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Cancel {title}","text_hash":"74513d73b6ce74627b24c7f8a82fc52ffb27f69f27e07ecc6efbb64f25d4180d","tgt_lang":"fr","translated":"Annuler {title}","updated_at":"2026-07-06T08:42:28.842Z"} -{"cache_key":"7b647a2c346e109a90d22a712758859308ab5cd2ee736b77b8ae879ac7dc5a91","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"fr","translated":"{seen}/{total} visités","updated_at":"2026-07-09T23:55:52.873Z"} {"cache_key":"7b89af9b738646ccb50364ac9873eeadadbbe27bc01d9cfbbfd36e8b55ac45a7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"fr","translated":"Épingler la session","updated_at":"2026-07-02T14:30:13.470Z"} +{"cache_key":"7c043cfabe6f92a5a2410669f1dab4c6fdac316e580fcf86040d6d28ce18a722","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"fr","translated":"Le serveur MCP « {name} » est introuvable dans la configuration.","updated_at":"2026-07-10T02:24:49.792Z"} {"cache_key":"7c080dbae61c58ee3f14258bdbfe35f939b47f96b2d2e89dca5d18f2bd6343e6","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"fr","translated":"Toutes les sessions","updated_at":"2026-07-03T07:37:43.296Z"} {"cache_key":"7c3405c55121a4709f55eb8572e0ff2d1e5be7571bf76cd86ea6c6dcbee14d15","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"fr","translated":"Sessions sur tous vos ordinateurs","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"7caa9a415394d00b8d1c232cdf394ec58e5e38381f22a841b720e317c8fada93","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.agent","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Agent: {agent}","text_hash":"b0a224d2a72b2aa43d4e0a1ffa0523c8c5da621a16408810fcb0385da86054a4","tgt_lang":"fr","translated":"Agent : {agent}","updated_at":"2026-07-06T08:42:28.842Z"} {"cache_key":"7cab0e0501ed3357d85b25a52f5c424b26bef99c43b3af80fdf000ef13dcb74c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"fr","translated":"Non regroupé","updated_at":"2026-07-05T14:39:49.624Z"} {"cache_key":"7d635da233e17b0287c6201c6da2bd2576211a62e0d18e0601fbe917a651e484","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.loadFailed","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Could not load tasks.","text_hash":"a4d24c89cb53e14f67055c1cdc6c0f98bca7e013ad8e533cabef5d276381e106","tgt_lang":"fr","translated":"Impossible de charger les tâches.","updated_at":"2026-07-06T08:42:28.842Z"} {"cache_key":"7db98ed1985cdddbda35001dc08b5334f248249d3dbd05104971d0139b53e53c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"fr","translated":"{count} modifiés","updated_at":"2026-06-16T14:14:38.496Z"} +{"cache_key":"7e3bd15a31f71cfee172cdcfd4b0cb005e7d04a9253b6a15a91bc01d7c604c7f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"fr","translated":"Aucun plugin trouvé","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"7e84bdee7d7e5174f0a2263dd0ed661b6e477cfb4449c5bbccc918372248bdda","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"fr","translated":"Worktrees gérés","updated_at":"2026-07-05T21:00:55.929Z"} {"cache_key":"80057a262d4c8ce778913b118081d8d5ac2ca431339622cd948c3abb459cfed4","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"fr","translated":"Connecté","updated_at":"2026-07-09T10:01:43.739Z"} -{"cache_key":"8058e2574f200e6429a744540d1bd4dcfdeb062a07d3bc85186035f4d9cfa71c","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"fr","translated":"Faites glisser pour ancrer à droite ou en bas","updated_at":"2026-07-10T06:08:12.054Z"} +{"cache_key":"806cf237efb57e8022110bcd5372406a38399f3ff51e5f625d0c4332da6ba4c8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"fr","translated":"Désactiver","updated_at":"2026-07-10T04:28:23.274Z"} {"cache_key":"80a24d10e17a2b6e164a8ed86e94cef759725b137408bb7fb91241f4bc29d9c6","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"fr","translated":"Passe de temps en temps","updated_at":"2026-07-09T20:51:32.819Z"} {"cache_key":"810b51afce34bdcaf6f590104802bc3f9aaa917675f8457b57fddff3278c64c0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"fr","translated":"en cours","updated_at":"2026-06-17T14:14:37.466Z"} +{"cache_key":"82ae5ff1dbbd42addc88594db9b0eaf08a12a5c26ceb23b2de34fa6a846877e7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"fr","translated":"{name} ajouté. Authentifiez-vous avec « {command} », puis redémarrez le gateway.","updated_at":"2026-07-10T02:24:45.579Z"} {"cache_key":"830c6f7c1c6e1259d1699d45acde8eb078c3353efed749edc936c5efa7b80199","model":"gpt-5.5","provider":"openai","segment_id":"connection.retryNow","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Retry now","text_hash":"5148c3e20576923b589bd801ea84dc376213b82fbf8694f64437b621f1690615","tgt_lang":"fr","translated":"Réessayer maintenant","updated_at":"2026-07-05T21:55:29.170Z"} {"cache_key":"8327dc093fbd4221e4b659ff68e37c949fe03e3c8bdea7847ee7acceb801f94e","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"fr","translated":"La saisie vocale en temps réel nécessite l'accès au microphone du navigateur.","updated_at":"2026-07-06T22:42:06.767Z"} +{"cache_key":"839e5bee2a12ae73e30314c7716b724b58ea81f01571b48caea3aa5a52e188e5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"fr","translated":"Aucun plugin facultatif installé","updated_at":"2026-07-10T02:24:45.579Z"} +{"cache_key":"8471eea909a465dbf630f640bbec4a2066c1b400e9140945689b119a2d7eea98","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"fr","translated":"Autre","updated_at":"2026-07-10T02:24:49.792Z"} {"cache_key":"848947490a75aa035590ac67ebc5646349001e07b4acfdca70d0c863df679b05","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"fr","translated":"{count} prêtes","updated_at":"2026-06-16T14:14:33.243Z"} +{"cache_key":"85aa814f6d27d685baa8ee213b5de0ad5edd82c3f46c4e52f3d8a2e07ecf97ee","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"fr","translated":"{name} désactivé. Un redémarrage de Gateway est nécessaire pour appliquer la modification.","updated_at":"2026-07-10T02:24:56.669Z"} +{"cache_key":"85ce62f8daa9a7c706777a05e998fb157d24af2bdc08fe4808baa0a16fc296ee","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"fr","translated":"Configuration","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"862ae26ea822ed677c9389fbe4e68110d0f50d298c5d35fed4ee64bf2013b495","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"fr","translated":"Espace de travail : {workspace}","updated_at":"2026-06-16T14:14:26.985Z"} {"cache_key":"87ca4c9a7e190d5663fe2cf4c59ab00f5d2b03922e0fc4562eb3f87b89093582","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"fr","translated":"Parc Codex","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"899c54e4537943aa09fb972d4ed1160342eaa6d28da0c2d27d9c992ab5e02edd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"fr","translated":"Tâche Gateway","updated_at":"2026-06-16T14:14:26.985Z"} @@ -172,35 +239,50 @@ {"cache_key":"8a407cc06ec5c609e1eee29c0d973582c258dcb68fe007a4f57ed5e71351be57","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"fr","translated":"Fenêtre de contexte","updated_at":"2026-07-05T10:16:09.189Z"} {"cache_key":"8b6ed1715f1c83100bcb5e86d65a3eaab7b42a07476aca5dbc92a25cc0a5b88a","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.invalidResponse","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"The gateway returned an invalid task list.","text_hash":"7aa61df7c36183096eba8284474d80ba8df86966ca8d8eed803e54a9fa938996","tgt_lang":"fr","translated":"Le Gateway a renvoyé une liste de tâches non valide.","updated_at":"2026-07-06T08:42:28.842Z"} {"cache_key":"8d53af57f69db68d6c9c73501a4cccdb878660a2f410f8b62bd255391be33753","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"fr","translated":"{agent} (non configuré)","updated_at":"2026-06-17T14:14:32.183Z"} +{"cache_key":"8db5738908cdde1f78f3646ab976efc9d1e5e0ec2e9eae379e961fcb6151f936","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"fr","translated":"Installer","updated_at":"2026-07-10T02:24:56.668Z"} +{"cache_key":"8e0d1ff83889a6173dd09a936e4d41ed319d5c99aed52edcfcf3f2065868c09d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"fr","translated":"Inclus","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"8e3d4e69fb978bf18b3e69ce3cfb24f012e2b3d3268451ac4c8e2a198a7bf381","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"fr","translated":"Travail en arrière-plan en file d’attente et en cours d’exécution.","updated_at":"2026-07-09T21:53:18.146Z"} {"cache_key":"8ecafab89950c6b64ae2da092f1ff324f73026c41d9a7748b334114b36921bfb","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"fr","translated":"7 jours","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"8f06525900f13a5e36695bc02d3ac91aae42b666b37b9a23caa9096441ffd1b3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"fr","translated":"Obsolète","updated_at":"2026-06-17T14:14:32.183Z"} +{"cache_key":"8f1dd3cbb68f6ef3ba3a0e93e4ea4bfdac059f2ed75978a2535bbfe7f1cea52c","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"fr","translated":"À propos","updated_at":"2026-07-10T09:47:05.904Z"} {"cache_key":"8fb42eb44abd2bd897ce802bee490cc134a0c87388361cac93acd9252258f5cb","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.runtime.cli","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"CLI","text_hash":"e759793341ff3757eaa76e814db0170ec13b6b0a988a742d9a81240c505f48ec","tgt_lang":"fr","translated":"CLI","updated_at":"2026-07-06T08:42:32.187Z"} {"cache_key":"8fbe3ddaee1855b6f3532db5de8e15561946607e558f67713b5d697ef238891e","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.tasks","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Background tasks: subagents, cron runs, CLI.","text_hash":"86b1cdd143e0bee775431403456aa967dad1c7f0a952e10200c332d8ba382d35","tgt_lang":"fr","translated":"Tâches en arrière-plan : sous-agents, exécutions cron, CLI.","updated_at":"2026-07-06T08:42:28.841Z"} {"cache_key":"907b09795789cf241ab4c1f560071c47dca23b82e4753a7a236f92801226603e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"fr","translated":"Épinglée","updated_at":"2026-07-02T14:30:13.470Z"} {"cache_key":"912c845bf86c50b9569c3c3f425d1016695cd0c3897f1d7a178d7b943609248b","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"fr","translated":"{count} jours","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"9244e32437a990b196d898ff7a014d7e789606a235c038141cdd2acd3e5a4ed1","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitFiveHour","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"5-hour limit","text_hash":"26d04fad786b1e3a08fd957ec893b0457b72a2926da0ee63847aea9037951d24","tgt_lang":"fr","translated":"Limite de 5 heures","updated_at":"2026-07-09T11:49:23.923Z"} +{"cache_key":"92be440cd0e68b20352d16c5f420ccae7cc62d03c5058d6c7c173091067ff02b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"fr","translated":"Chargement des plugins…","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"936fb9e00da2a3644614b5804c2efa72fde53cd398cfaea6daeb4f35ea5ac6da","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"fr","translated":"Hôtes indisponibles : {count}. Les autres hôtes restent disponibles.","updated_at":"2026-07-09T10:01:43.739Z"} +{"cache_key":"951ffb76e24031f9f7da27a6dbae18ca120741b12ff3532a5fb0917db9a1d010","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"fr","translated":"Actualiser","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"95f90b7f222de72dd86b680cc5c17d4c88d2367c3de07c8111930b4cf901bf95","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"fr","translated":"Nettoyer maintenant","updated_at":"2026-07-05T21:00:55.929Z"} {"cache_key":"96116292d6f062e3ae27a509224a1119f36a5fc5849ca66bff3f8a2a20f1fa34","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.status.timedOut","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Timed out","text_hash":"9718cc761cfd5810041ef007ae258fa1308b8487d0f30c5f36a442f8fe5f76c5","tgt_lang":"fr","translated":"Expiration du délai","updated_at":"2026-07-06T08:42:32.187Z"} {"cache_key":"967f8313ca28e793e44686d5cc03aa93f3e0ee149b45cde549a8292ef0244f3b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"fr","translated":"{count} h","updated_at":"2026-06-17T14:14:37.466Z"} {"cache_key":"96a761aa83f58ae83de0513925995b1e4d6b2b889c4b62651a87ac6d2763728f","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"fr","translated":"{count} jetons d’entrée","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"975b46ad937541c02836213cb6a1b8809ea4653e1a42f42ff483b40c3d8e46e1","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"fr","translated":"Supprimer le groupe « {group} » ? Ses sessions seront déplacées vers Non groupé.","updated_at":"2026-07-06T23:40:56.800Z"} +{"cache_key":"977ca5ac5a5249b370301a9a30096b09c667a10c8d5df69d8d201ecf4cfb4bf4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"fr","translated":"Recherche dans ClawHub…","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"97b4a3ac5b843ef74fdbcff58f1c2982f1d552746399496b627739c4de7b68f6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"fr","translated":"Rechercher dans les titres de session","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"985c7bf9ceb4920aba727dfb9a3e2faecf627f12446dd21242781739b0969454","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"fr","translated":"Aujourd’hui","updated_at":"2026-07-05T14:39:49.624Z"} {"cache_key":"986854b4ba372b725ef75a0356de1baad04b9f7cd7e60eaaa1ef6bb9cc0bfa9f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"fr","translated":"Révision","updated_at":"2026-06-17T14:14:32.183Z"} +{"cache_key":"98a74344fe2e7db7f0b4292aa2c3801fc8a1150cc0725738ad0746b0c6f8a0d8","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"fr","translated":"Indisponible","updated_at":"2026-07-10T02:24:56.668Z"} +{"cache_key":"990e49b6d297f21d7733dd4ec4c6d110632844c8ad09dcbc148a65b530a00558","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"fr","translated":"La configuration n’est pas disponible ; actualisez et réessayez.","updated_at":"2026-07-10T02:24:53.075Z"} +{"cache_key":"997f8d2cb3d6a48b090f5dfb727fc1f5055ef6325aca4170b26da048f4f1fea9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"fr","translated":"Un serveur MCP nommé « {name} » existe déjà.","updated_at":"2026-07-10T02:24:49.792Z"} {"cache_key":"9c50d9db0cd45b064b9244da54e52274506ce429291257708505edec0ae03110","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"fr","translated":"Résumé de l'espace de travail de la session","updated_at":"2026-06-16T14:14:38.496Z"} {"cache_key":"9c80474055f276791cf6e8b06ae7622c30f4cfe9ab78b206676b251f3e4a415a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"fr","translated":"Erreur système","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"9cc94a25a091ca21d68a5bc1a2138cdc8761b577ba284eedf637ec4d9f376ea6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"fr","translated":"Aucune session active sur cet hôte.","updated_at":"2026-07-09T10:01:43.739Z"} +{"cache_key":"9cd254e8b81376198b0b71d3fcf71bb55687bb2671eaa6d4e645597434c92fcd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"fr","translated":"Connectez-vous au gateway pour modifier les plugins.","updated_at":"2026-07-10T02:24:56.668Z"} +{"cache_key":"9d176a2b674550f8a600cc0c3c824a4b5ea8945f1968da41607282266e1e3c37","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"fr","translated":"Moteurs de contexte","updated_at":"2026-07-10T02:24:49.792Z"} {"cache_key":"9d3dbb1a19dbf277efcb3c80ae06367b737306e22712664fb22ff83fec8635f7","model":"gpt-5","provider":"openai","segment_id":"usage.daily.compressedScaleHint","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Square-root scale keeps low-usage days visible.","text_hash":"9515e7c6db149c32b64dba95a43e31a61d53dce8f11fe98683b234fb1cfd1920","tgt_lang":"fr","translated":"L’échelle en racine carrée permet de garder visibles les jours de faible utilisation.","updated_at":"2026-07-05T20:24:32.108Z"} +{"cache_key":"9e120a85e9c6f29d2e55114237825b57d346ff4121456a88b0cf2f5f4473c289","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"fr","translated":"Connecteurs MCP en un clic et recherches ClawHub soigneusement sélectionnées pour les services populaires.","updated_at":"2026-07-10T02:24:45.578Z"} {"cache_key":"9e7c745916d465fa40eeeebf992ccca3e863c0e1dd100136064029601b65ff46","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"fr","translated":"{percent} % du contexte utilisé ({used} / {context} jetons)","updated_at":"2026-07-09T07:06:21.455Z"} {"cache_key":"9f893f8cd3f593215d89793794cc6cae70e36e76a7dba6e7cf827c1d2decf241","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"fr","translated":"Aucun hôte Codex trouvé","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"9fa88da14d96bc28a795a873dba48b03600f5a666836619a9373c90333dd0007","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"fr","translated":"Visites du homard","updated_at":"2026-07-09T20:51:32.819Z"} {"cache_key":"9fdf6853b304face70e08c6ff9668d904f688392273cc448722d1eb275d5fabc","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"fr","translated":"Par défaut du système","updated_at":"2026-07-06T17:33:45.160Z"} +{"cache_key":"a13d6125bcfaaef709d3ce2d4f3da1b776d663fd81adab72141114cb6cca52e5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"fr","translated":"Préparation de la recherche…","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"a20d3c7263b6279d4fa2aa712d1b8e3da90e8f4f03a2b27439bcf94bdea3b139","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"fr","translated":"Résumé : {summary}","updated_at":"2026-06-16T14:14:26.985Z"} {"cache_key":"a3c9541f8f2ad9655aa3e8fb26377fcd1b74545c4a39921264097ede6fbd7fdf","model":"gpt-5.5","provider":"openai","segment_id":"connection.offlineHint","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Live updates and actions are paused until the connection returns.","text_hash":"7a60105cdafb6aa95b9081a370308a9ccd495199c9bfb90d3e0f70af68680f26","tgt_lang":"fr","translated":"Les mises à jour en direct et les actions sont en pause jusqu’au rétablissement de la connexion.","updated_at":"2026-07-05T21:55:29.170Z"} +{"cache_key":"a45ce922eaba5f4282caa243a2f35b2b28cfb04cda377f038ec561cf0d0269dc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"fr","translated":"Indisponible","updated_at":"2026-07-10T02:24:56.668Z"} {"cache_key":"a4772bbc71a0c72df5ed517a5f797bb4b225f1c5a1c5e0eaeab8070da311a13e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"fr","translated":"Archiver la session","updated_at":"2026-07-02T14:30:13.470Z"} {"cache_key":"a497402fa9c26ae89b6ace98e172ad09963fa3b6c529dd08fad9b3b5ff5ae430","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"fr","translated":"Envoyer les demandes de révision à la session de discussion actuelle plutôt qu'à la session d'atelier de la proposition.","updated_at":"2026-06-16T14:14:26.985Z"} +{"cache_key":"a4c381c0fcd08b00833972c400863a051a06eef424ae80ba542af904338386f3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"fr","translated":"Ajouter un serveur","updated_at":"2026-07-10T02:24:49.792Z"} {"cache_key":"a4ce1e6bf3192c51ac02dcac5c4f8257c6f463dad22d2fba311e8c81b9f1949f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"fr","translated":"Aucune session archivée sur cet hôte.","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"a66fd73a5cb8320cb17077351f3778ab13271c3c2ff5af9a652bbd7cac9ad6b5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"fr","translated":"Fichiers du projet","updated_at":"2026-06-16T14:14:38.496Z"} {"cache_key":"a71bfd639c8a0eddb11d0e6a929e63eb918c442210e2d80b40f0076e7082de34","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"fr","translated":"Rechercher des fichiers","updated_at":"2026-06-16T14:14:38.496Z"} @@ -210,34 +292,49 @@ {"cache_key":"a8ee16008a634cb944cf433fedacb19d2ffb603742dc3abdf03ed0716b50a57c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"fr","translated":"Agent par défaut","updated_at":"2026-06-17T14:14:32.183Z"} {"cache_key":"a9a16e96b09cc7d9d4a5c421c5aaf7674497cfbaebdd7697db65d87fda69b733","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"fr","translated":"Aujourd’hui","updated_at":"2026-07-05T14:39:49.624Z"} {"cache_key":"aa05cbcdd6afc1a01029a74336f78104d6dbc72b8f6783dfa4d403395804ac93","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnly","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Archived only","text_hash":"da7ebd8c482f38dc2a5b693a0ec25aaa04ea7b5fa3713cce9fa41a28f2201a6b","tgt_lang":"fr","translated":"Archivées uniquement","updated_at":"2026-07-02T14:30:13.470Z"} +{"cache_key":"aa6b40cb0eb7e7756f7fb8513f07e3ad172a24acdd9e86fcee6eff7eec2db966","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"fr","translated":"Serveur MCP {name} supprimé.","updated_at":"2026-07-10T02:24:49.792Z"} +{"cache_key":"aaaf5e582fc30f77c87d65d51556520d61fc699b2d08501b4b1e25343a24fe73","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"fr","translated":"{name} désactivé.","updated_at":"2026-07-10T02:24:56.669Z"} +{"cache_key":"ab2de9dcd954fdbb52e1134c01923e890e3cf27c092424e31b9dc98a7adf1486","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"fr","translated":"Consultation uniquement. Les modifications de plugins nécessitent l’accès operator.admin.","updated_at":"2026-07-10T02:24:56.668Z"} {"cache_key":"ab429001453beacc7a0148b2079394fce8c3123ace3dee241cfeb049846fa62c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"fr","translated":"bloqué","updated_at":"2026-06-17T14:14:37.466Z"} +{"cache_key":"abadac69ae6a6d33938c5a4213937815b31f316ef723fdb4832f9144189e6d59","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"fr","translated":"Tous","updated_at":"2026-07-10T02:24:45.579Z"} {"cache_key":"abae67d105c36ba283f11c4f60b359e11176efb0a50728d398ca805539de7f2f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"fr","translated":"Impossible d’accéder aux entrées microphone.","updated_at":"2026-07-06T17:56:30.924Z"} {"cache_key":"abfda9afae1f403798dce518d7c34539faa365428eb188b65c58bd3578283620","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"fr","translated":"Ce navigateur ne peut pas lister les entrées microphone.","updated_at":"2026-07-06T17:56:30.924Z"} {"cache_key":"ae1c4f710fd0b813ec9fc5f7de8294f953bad91984d826da10faaabd81ba9ae3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"fr","translated":"preuve manquante","updated_at":"2026-06-17T14:14:37.466Z"} +{"cache_key":"ae3bb8d214f9b5857ba982e0db0ecfc47c76ba41322a1552a3fb1af14587f52e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"fr","translated":"URL ou commande","updated_at":"2026-07-10T02:24:49.792Z"} +{"cache_key":"ae755c417527011228c6703371491c6ce76c27945751f10d8ddf3f558d4d3c4f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"fr","translated":"Traitement en cours…","updated_at":"2026-07-10T04:28:23.274Z"} {"cache_key":"aebc06b31bd0f72c34dc505ef1571fa58d518362ac30fa609967bd4f60484072","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"fr","translated":"Principaux modèles","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"aed90dc6280045598d163409ef823bbd1c0ae4cae6fc9755d7ff296bea88dbb8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"fr","translated":"Exécution","updated_at":"2026-06-16T14:14:26.985Z"} {"cache_key":"aff5a1544cce789af1653110d9185d1bf578e02438f504fa77af76ff73c3fb3b","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.status.cancelled","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Cancelled","text_hash":"d353a99eb4556847ceeb3c306ac886cf6b4fa13043eb1864b9aeb0607fd5f2cc","tgt_lang":"fr","translated":"Annulé","updated_at":"2026-07-06T08:42:32.187Z"} -{"cache_key":"b09b1f574ebfcaab57dec79cbebda5829b1ffba08c932643361d4c440d22bd50","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"fr","translated":"{name} · première visite le {date}","updated_at":"2026-07-10T04:20:32.008Z"} {"cache_key":"b0c168a2e6ac1dbd6a08f25d2564be870ca7b20f3ba9f35fbec1f71e15ba6e6b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"fr","translated":"CWD","updated_at":"2026-06-16T14:14:40.922Z"} {"cache_key":"b0d2c0967af01f3d8dad7b872d72255bff91f9e1491d950500305cdda3606901","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"fr","translated":"{count} jetons en cache","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"b0d8cd5074cb51b4b6c07ed8fa179b541e932e62ee1715e900d0cbd57d3651ba","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"fr","translated":"Entrée microphone","updated_at":"2026-07-06T17:33:45.160Z"} {"cache_key":"b0eb0963aaaa5eacdebfc95b0b1bb553369b2a5922194829e8df941bac36c3a8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"fr","translated":"tentatives échouées","updated_at":"2026-06-17T14:14:37.466Z"} {"cache_key":"b1cf4c4341e5e13d9508b82b2f4a70c20e75fe25e98e7904234240fee9306c01","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"fr","translated":"Actives","updated_at":"2026-07-06T08:42:28.841Z"} +{"cache_key":"b2035892a51f1c96a5053ba547ee00b37292c9490dc2c77f3f475b83701991ea","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"fr","translated":"Nécessite votre attention","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"b21b499cc121e0a22018207024c7bc87b8e92de4e21ec0430885b100f00d6904","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"fr","translated":"Aucun fichier correspondant.","updated_at":"2026-06-16T14:14:38.496Z"} {"cache_key":"b25de68151f5f48d70acf38cf7137da975dde4769f176315ef0cda3e9192c9ba","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"fr","translated":"Nouvelle conversation dans le worktree","updated_at":"2026-07-06T04:56:10.810Z"} {"cache_key":"b2b37cf46f8bbba6df02845010fc1b777b52535ec215cb041678f94f50bee5ad","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"fr","translated":"Stockée","updated_at":"2026-07-09T10:01:43.739Z"} +{"cache_key":"b37b0a0a0222ef01eb5589d702c8c137eaa79317f91a98184f21de23b12c7d9f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"fr","translated":"Catégorie","updated_at":"2026-07-10T04:28:23.274Z"} +{"cache_key":"b3ac75c698027b40e7581f0b2c587cda2eef5f711edc4f547599f462eaca7e95","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"fr","translated":"ClawHub n’a aucun résultat pour « {query} ».","updated_at":"2026-07-10T02:24:41.383Z"} +{"cache_key":"b3e5ed72c40182268b69314303f995b90838f41088b096a1e6a6b4e8d825026a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"fr","translated":"Installés","updated_at":"2026-07-10T02:24:45.579Z"} {"cache_key":"b5a97e4f50d2d855633038611c07028877e486b4dfbdfbd95e67aa6a10aed1de","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"fr","translated":"Plus dans les paramètres","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"b6d68f6572c63c873c13d35f161ef9cc38483f67a9b9662445ea074acd680ed4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"fr","translated":"Utiliser la discussion actuelle pour les demandes de révision","updated_at":"2026-06-16T14:14:26.985Z"} +{"cache_key":"b6f431eb9e5c82fe554e427a1edeeab4a4ede7576a549e4f46075f8074c2bf38","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"fr","translated":"Catalogue de plugins","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"b73c07687f92b896d93825be662c1db0b17e09bc9c2965300cb87b02ba906d8a","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"fr","translated":"Aucun microphone supplémentaire trouvé","updated_at":"2026-07-06T17:33:45.160Z"} +{"cache_key":"b7f85401d948d158128a68836d4736ee8a027a011c767be91776fdc0953e4669","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"fr","translated":"Plugin de code","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"b8da071449693eb7d9e89345d91e1edd4a687129e21a4966ab121c5d7c1a2862","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"fr","translated":"Voir les détails","updated_at":"2026-06-16T14:14:26.985Z"} +{"cache_key":"b8e1888a56c84aadfd1cffd3a6e6b99edda596bd5b348571883ee7f9d659a846","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"fr","translated":"Installez et gérez des fonctionnalités optionnelles.","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"badfd3d137e60b3582157fb6a4afd4788b3d11939008f2b84da44b8b34136da9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"fr","translated":"Aucun fichier modifié dans cette session pour le moment","updated_at":"2026-06-16T14:14:33.243Z"} +{"cache_key":"bb98491a5f31e62c51f11dc50f5af1df7bb24d19e93adc7d2db2a46081e02050","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"fr","translated":"Global","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"bc60942ce176cf214140d660e911a338b452ad900474d4babd4d9ab2a897466c","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.title","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Cost Windows","text_hash":"d085ca9b7dffb14e13dd359e697260f29a1201cc065356abc06b7e3ed3fafd64","tgt_lang":"fr","translated":"Périodes de coût","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"bc9904c49788d97a2f27902a8f087c23d266ef3ca0e6d6c96df9547dbe90f54e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"fr","translated":"prêt non attribué","updated_at":"2026-06-17T14:14:37.466Z"} {"cache_key":"bdfdbb3aea12cc2a90a8dfed0804800180dd1ea048727b8b9772244fffd4a2a1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"fr","translated":"Échec de l'actualisation","updated_at":"2026-06-17T14:14:37.466Z"} {"cache_key":"be27e99ebe691dae16cef909c18ff5292aca21fa9123aff5b3374f2a9c88ffd5","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"fr","translated":"Dernière activité","updated_at":"2026-07-05T21:00:55.929Z"} {"cache_key":"be6a92d80f86e7f0517082527765d3fb3c9fc2b6e5018a4af2347e5879781b57","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.empty","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No background tasks yet.","text_hash":"e920d0a7849ab499c0eb22fe353bad656795e9a48c55e72edc58a04e2dff58b1","tgt_lang":"fr","translated":"Aucune tâche en arrière-plan pour le moment.","updated_at":"2026-07-06T08:42:28.841Z"} {"cache_key":"bef535e7635a45bf77d764f80a9e2b7dc173fdeea801e0039566227172ea9dfa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"fr","translated":"15s","updated_at":"2026-06-17T14:14:37.466Z"} +{"cache_key":"bf17ecd1fcc84c31229f887b1998f6b3ab5ad2b5a8667f527ecb53f98afc3e5e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"fr","translated":"Canaux","updated_at":"2026-07-10T02:24:49.792Z"} {"cache_key":"bfad2f9e64a059ffbb82f9ff0cfcb05729f7c99e7703fc2c3c19f7493871e7fa","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.cancelling","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Cancelling…","text_hash":"91b104db05da1b2d48c57a5aa60128f660e6572f89835ec858f6eb25b8f4af0f","tgt_lang":"fr","translated":"Annulation…","updated_at":"2026-07-06T08:42:28.842Z"} +{"cache_key":"bfc93c07ee5c874ccaeb55430f666b3ff72bc685628627a2fe6fccc58549a1dd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"fr","translated":"Supprimer","updated_at":"2026-07-10T02:24:53.075Z"} {"cache_key":"bff9e9d6c21068b2333181dbd4976ef3056cdd8d502937aa49a1bdbcc752007f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"fr","translated":"QR d'appairage expiré","updated_at":"2026-07-01T10:32:03.163Z"} {"cache_key":"c187b665e4f049067e46d4aa5e81a148ad921ad10f52fa0d4d0bc3cb42ce2308","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"fr","translated":"Les paramètres Talk avancés nécessitent l’accès operator.admin.","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"c2ad01204fbf7466b5e4e7a4f67f6acbfcce78e915e9feb47107250b068b6c05","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"fr","translated":"Récemment terminé","updated_at":"2026-06-17T14:14:32.183Z"} @@ -245,11 +342,13 @@ {"cache_key":"c3f3445804d6d40711ed4f179aae2863ee1d667dd2e9cf44131128b741140937","model":"claude-opus-4-8","provider":"anthropic","segment_id":"tasksPage.status.running","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"fr","translated":"En cours","updated_at":"2026-06-17T14:14:32.183Z"} {"cache_key":"c474a1515a769d2f83c2b5f640c81eab4ee4644270f4742822080e64fd49c6df","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"fr","translated":"Preuve manquante","updated_at":"2026-06-17T14:14:32.183Z"} {"cache_key":"c4a7e1723aad5a006fede7d87b811516a2650ca61ea80d078f07918f5947b19f","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"fr","translated":"{count} pièces jointes","updated_at":"2026-05-30T15:38:23.998Z"} +{"cache_key":"c4e9bba3df46bfdd04020d43baabe62e89effd7434910602f0a812662c3a6f90","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"fr","translated":"ID du plugin","updated_at":"2026-07-10T04:28:23.275Z"} {"cache_key":"c57b6089a8064cf26172436a1e12bc7cc7b9a38b747a13ea3bb5f69143dac266","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"fr","translated":"Tableau : {board}","updated_at":"2026-06-16T14:14:26.985Z"} {"cache_key":"c64faca6f54bfc43e0ae21e59efce762658b40416a64c3c830d37c1a3b5e7bef","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"fr","translated":"Aucune session de cet hôte ne correspond à votre recherche.","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"c6b3c85420f9e62fc17ac0fdc3f4cea1741dff6f37ff13bad37b1bf780ef3e0f","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"fr","translated":"Catégories de coût","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"c767629f9438c5e8ea4d89edb173f220faa72d71d4439e9cf0990152dd7b77f4","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"fr","translated":"Checkouts de dépôt isolés appartenant à OpenClaw.","updated_at":"2026-07-05T21:00:55.929Z"} {"cache_key":"c799809a19e03de288d104fb73957b78b376b1cbf96f3cb073059412eacdbf38","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"fr","translated":"Dépôt","updated_at":"2026-07-05T21:00:55.929Z"} +{"cache_key":"c7fcd469a6f5708b168686ed4c201258a67b95b780b4a0608c88948e9b32a203","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"fr","translated":"Le Control UI et le Gateway connecté définissent l’identité de build.","updated_at":"2026-07-10T09:47:05.904Z"} {"cache_key":"c85905c4a1943074a8ab1f9268d4ab9d93fd4f812cdf2c024b881f003d746cfa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"fr","translated":"5s","updated_at":"2026-06-17T14:14:37.466Z"} {"cache_key":"c887bbafc896df50744c8745177bdd449c1e66a8962c65af5b22e8f3221ac9d2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"fr","translated":"Lu","updated_at":"2026-06-16T14:14:38.496Z"} {"cache_key":"c8e894b844a8746da051fc5c12e652559eef37d502716691e4658aed9e4c8a1a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"fr","translated":"Supprimer le groupe…","updated_at":"2026-07-06T23:40:56.800Z"} @@ -258,6 +357,8 @@ {"cache_key":"c95422088006694ab40b07c613987d2668b0cb47a0c125df150f9f6872b715e2","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"fr","translated":"{count} jetons de sortie","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"ca4f3560f1c3259a3c8c58d0151768624f085c2bfbf4d48f3c30d2fe47fb794c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"fr","translated":"Mis à jour {time}","updated_at":"2026-06-17T14:14:37.466Z"} {"cache_key":"cb49264e87f513faec8b9301db790ce23fef424469204a743337e52a199f291e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"fr","translated":"Conserver le commentaire après la réponse finale","updated_at":"2026-07-01T01:07:07.533Z"} +{"cache_key":"cbc494e287ed36347779c622c025814dd6273a4eb9985b558840dffc85660373","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"fr","translated":"Impossible d’actualiser la configuration de Control UI : {error}","updated_at":"2026-07-10T02:24:56.668Z"} +{"cache_key":"cd6c90688637767c0b4c7382f4f3da4fd8a4dabc3165a9f3c1d7a36b2a2998a9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"fr","translated":"Connectez votre monde","updated_at":"2026-07-10T02:24:45.578Z"} {"cache_key":"cd77f12d0d2e9f4427a199e8f15448b58283cb78c2b9def9a0d985e0da1260c6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"fr","translated":"Sensibilité","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"ce070814382c8b20cf3ea58f2a8eeb7a7a12aaf8bd7965a5eac631d34a56920d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"fr","translated":"Catalogue de sessions indisponible","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"ceea53168997ca7b65bf9974ae044a3bfb38b661e2cb54a1ef1a5e9e7f99b9ec","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"fr","translated":"En cours","updated_at":"2026-06-17T14:14:32.183Z"} @@ -266,23 +367,31 @@ {"cache_key":"cfcaebf0403f267f7763fb983c90291b93ffe7b0918db3b358e374e08926e123","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"fr","translated":"Worktrees","updated_at":"2026-07-05T21:00:55.929Z"} {"cache_key":"d0350ed07e280443fb772ba1be389039f10902a99239608766e4ab55b84e69ad","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"fr","translated":"Espace de travail","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"d0488f998b840872ae71bc8d8209e714ef16aa4216a6b422006b4762744e1289","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goal","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Goal","text_hash":"cdbf6975e8a35b0d03558be6822dfae166482c24fb86b0433f60e8167f5c91e4","tgt_lang":"fr","translated":"Objectif","updated_at":"2026-05-29T21:00:46.685Z"} +{"cache_key":"d10d2a9433b4440a823255003d33179b53bd8b80b788f8ef2db3dd0b3666f47d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"fr","translated":"Ajout…","updated_at":"2026-07-10T02:24:49.792Z"} {"cache_key":"d24fa3ff85165b7d5f6c2d8f296b5490902ec7f4f7b9cc3a21c2efa547af3275","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"fr","translated":"Utiliser la discussion actuelle","updated_at":"2026-06-16T14:14:26.985Z"} {"cache_key":"d26d54f103b4bbb61dc5a45ab84b223e43051b9313a9e49da8da91dc161aa590","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"fr","translated":"{count} journaux de worker","updated_at":"2026-05-30T15:38:23.998Z"} {"cache_key":"d30cc5574e39e6c237ea14b8c0f791d96e14044457a94000ec6098bb3f07cd64","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"fr","translated":"Mode de couleur : {mode}","updated_at":"2026-07-07T08:47:30.064Z"} {"cache_key":"d321120597c21a4c2112eefb541b872d45e34c82c6c3136bc5324eada06c8873","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"fr","translated":"{count} lus","updated_at":"2026-06-16T14:14:38.496Z"} {"cache_key":"d3558c199572e36752ca75345bd725ced01440ee5bad95da4cd74dd216e88739","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"fr","translated":"Charger davantage","updated_at":"2026-07-09T10:01:43.739Z"} +{"cache_key":"d39e85e6c6f38c9df8686a1cb09d5720aff2d1d898ee11e5c51f64feff2b8bc4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"fr","translated":"Plugin groupé","updated_at":"2026-07-10T02:24:56.668Z"} {"cache_key":"d4042ae3c9008b6e58effba20022bc8fad3392ca9ba50876b80b28b401ff4184","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"fr","translated":"Automatisation","updated_at":"2026-06-16T14:14:26.985Z"} {"cache_key":"d438054e1f4e795992b67e7412526e77f0893d60efab62412cee2926bcb3a828","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"fr","translated":"Plus ancien","updated_at":"2026-07-05T14:39:49.624Z"} +{"cache_key":"d4c9c10c2680f2777e950b8aa460e9cf381ded754ad38be4d300ebd40dde6db1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"fr","translated":"Consultation uniquement. Ce gateway n’autorise pas les modifications de plugins.","updated_at":"2026-07-10T02:24:56.668Z"} {"cache_key":"d4e165aa087815a6e72c5641ead31812ba3373dc8a07000bb9f3d9caef7df0e0","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recent","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Recent","text_hash":"690dbe9dc0993c4256683738fc3fd541cfa96f60d299be33343615dd58179d93","tgt_lang":"fr","translated":"Récentes","updated_at":"2026-07-06T08:42:28.841Z"} +{"cache_key":"d7b7736c424b2bbc8112df2cbfba768da8da7d6952294fada2551649adfe9b27","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"fr","translated":"{name} activé.","updated_at":"2026-07-10T02:24:56.669Z"} {"cache_key":"d7e7c590ca7259006bed696ffefdc1ca41205fbe47894658e54f1d2b0c939bcf","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"fr","translated":"Désépingler la session","updated_at":"2026-07-02T14:30:13.470Z"} {"cache_key":"d87387cd9d519bf878b4f986dab78f4bc45b42e10890ac88257a49a1a3940419","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"fr","translated":"Regrouper par","updated_at":"2026-07-05T14:39:49.624Z"} {"cache_key":"d8b82816b2447f9cdf8c1f6e790726787cc313c2e9369bee4b5573e70acc0dad","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"fr","translated":"30s","updated_at":"2026-06-17T14:14:37.466Z"} +{"cache_key":"d91fc8a6cd1dfd882eb426a9dc0c6708ff2d30d7c8b3d1cb33fc29c6631472e5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"fr","translated":"{name} ajouté. Les nouvelles sessions d’agent peuvent l’utiliser immédiatement.","updated_at":"2026-07-10T05:22:13.016Z"} +{"cache_key":"da650b9260f6b27e154267e9d924e26b85d7ae77f5f4e94614c28ed081136229","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"fr","translated":"Aucun serveur MCP n’est encore configuré. Ajoutez-en un ici ou choisissez un connecteur depuis Découvrir.","updated_at":"2026-07-10T02:24:49.792Z"} {"cache_key":"dba4de5b395e649c53c56af6e8683b3ec249196ff14953ec51d61e7dd68914e7","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.lastDays","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Last {count} days","text_hash":"4aa456a0fa9b73dcc14766740b19fc52c452950ccb7bc892499c3c29a4122162","tgt_lang":"fr","translated":"{count} derniers jours","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"dbcc1e6ff0588e27c2292f68df4039426a50b65b151a4cd043db53a9476c8090","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.runtime.unknown","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Task","text_hash":"4bc74b21357c6cf5cca8f66b4d4ee948be64d0396feb434c9645e168ad61ceaf","tgt_lang":"fr","translated":"Tâche","updated_at":"2026-07-06T08:42:32.187Z"} {"cache_key":"dc0cde6fbb2257f11c231f7bc2f1d44e21fb2e2e475249d41f4353ce177c6d58","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"fr","translated":"Copier le lien","updated_at":"2026-07-09T11:02:48.820Z"} {"cache_key":"dcb48055b5aafa2813da3820617d5c5653945c57dfbf0d6cb81d4c7f74049b43","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"fr","translated":"Aucun fichier dans ce dossier.","updated_at":"2026-06-16T14:14:38.496Z"} +{"cache_key":"de5bf6e8ba4a6e5bdd675eac6b1d3f49eac807990cd0ab602993f3e0fe3927ca","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"fr","translated":"{name} ajouté. Mettez à jour le point de terminaison et les identifiants dans les paramètres MCP avant utilisation.","updated_at":"2026-07-10T02:24:45.579Z"} {"cache_key":"dee70ec60c911896eff244b9424d125be13ed5078065ad7ad11270460cad9168","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"fr","translated":"Espace de travail de session","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"def903c07d7e651f99d9b009d9e1b6ed6984186c0bec8ff5314a8341032a6609","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"fr","translated":"Actualisation automatique","updated_at":"2026-06-17T14:14:32.183Z"} +{"cache_key":"df60d81918b6c51f0dc87c9c62a55fa8c3b15503649ef5ee210d29bd89668e41","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"fr","translated":"Activé","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"df7cd4128b09c7b3fa344f5ad65e9dc2ce752edbd1dffef36237744b38f023f4","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"fr","translated":"Branche","updated_at":"2026-07-05T21:00:55.929Z"} {"cache_key":"e12357a302d15450b5851e2fb8cdac311db998d9f4546c5be51b78350438c03e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"fr","translated":"Canal","updated_at":"2026-07-05T14:39:49.624Z"} {"cache_key":"e1367adf4e8cae69469d4ac71114fa347e0bccb6cecdcfd70b2357fbf19ae027","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"fr","translated":"Ouvrir le chat","updated_at":"2026-07-09T08:27:18.039Z"} @@ -295,12 +404,18 @@ {"cache_key":"e5268e44b8a23529194d9ba5c23b221ce7f6f7b33c9a89a38796b65dcb8530be","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"fr","translated":"sessions","updated_at":"2026-07-09T10:01:43.739Z"} {"cache_key":"e558087a282be8525eb74ef395090ebfac5df35d2b0d19649fde4f72dbc134cd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"fr","translated":"Manquante","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"e5974eebd9dde7a10ac616f085d3c37ef2648dc8d05ab48ecf75a52676d3b6bc","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.disconnected","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Connect to the gateway to load and manage tasks.","text_hash":"f809605f626a2f8eeff5c864a30e78d538a878ec5de7934f21d60bc01b81f125","tgt_lang":"fr","translated":"Connectez-vous au Gateway pour charger et gérer les tâches.","updated_at":"2026-07-06T08:42:28.842Z"} +{"cache_key":"e5d2d6b2c49fc6d679701cdb28a87cfcc52334bb0cbb5e34bbb9912c6800886d","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"fr","translated":"Hash du commit copié","updated_at":"2026-07-10T09:47:05.904Z"} {"cache_key":"e601fd3af074100b5ca609dcbecf632f30e3a51fbb4c1010f61a18f17af1f071","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"fr","translated":"Réduire l'espace de travail de session","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"e6a0e18840d6e9ddc9a732663a509ce8dc66dbf938bd2afdba5baf2a05a420ba","model":"gpt-5.5","provider":"openai","segment_id":"tabs.tasks","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Tasks","text_hash":"b3a60e61a5233d0506ac737405a2a45280349683cac68722f18d0b73eb495ef4","tgt_lang":"fr","translated":"Tâches","updated_at":"2026-07-06T08:42:28.841Z"} +{"cache_key":"e75a115827905463178ee116c9539930948c5a80d70f65a08b7f62c875750b10","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"fr","translated":"Supprimer {name}","updated_at":"2026-07-10T02:24:53.076Z"} +{"cache_key":"e7b5b6aeb7d1fc76bea9abed61f98c27d9a8826aeae031a0219b8630e2155c29","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"fr","translated":"Version du Gateway connecté","updated_at":"2026-07-10T09:47:05.904Z"} {"cache_key":"e7ce17017703abfa56accdea7fd8c7cec085be211a621f43e7cebff5f58ea654","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"fr","translated":"Non assigné (utilise {agent})","updated_at":"2026-06-17T14:14:32.183Z"} -{"cache_key":"e84baf75241f693386554462c8185d4395f7eb61e5efd447caf4c470534c6f15","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"fr","translated":"Silencieux","updated_at":"2026-07-10T04:50:09.936Z"} +{"cache_key":"e81d4659dd50cec612d1eda798d0bc2c90779ce2674a8461ccdb0d4ec34ddb4f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"fr","translated":"Aucun plugin installé ne correspond","updated_at":"2026-07-10T02:24:45.579Z"} +{"cache_key":"e82efc0cfc2b99adfe44ce1a57c80a01bedade4269ba8687ff784bc4432e61de","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"fr","translated":"Détails de build du Control UI","updated_at":"2026-07-10T09:47:05.904Z"} {"cache_key":"e8cc817b71a29e04910077228a6a2062cc9008e42829f503ef7198b9192efd69","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"fr","translated":"Checkouts de tâches d’agent isolés et instantanés de récupération.","updated_at":"2026-07-05T21:00:55.929Z"} +{"cache_key":"e8febab6b2d159532e62409b177229949d538d4544044728747e0a92a6bdbb2e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"fr","translated":"Actions de {name}","updated_at":"2026-07-10T04:28:23.274Z"} {"cache_key":"ea55fad91205f9fdce8210dea4000210abdc156e2a239dd2924bdf0e15302caa","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"fr","translated":"{count} sessions","updated_at":"2026-07-05T14:39:49.624Z"} +{"cache_key":"ea6a14f3cbfc57bdea45e3e3ab8ae736357f80ed819035b9535bd18cc866c46c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"fr","translated":"Serveurs MCP","updated_at":"2026-07-10T02:24:49.792Z"} {"cache_key":"eb03dee31268817aa1b689c74d3f10c797851b0c7e9296d541e24ff816c9be61","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.planUsage","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Plan usage","text_hash":"eb55e9232d2a7503c819491be60761e99458daf4947df9676c5cc86b653f59f4","tgt_lang":"fr","translated":"Utilisation du forfait","updated_at":"2026-07-09T11:49:23.923Z"} {"cache_key":"eb18f6460240e23a168fc9de3dbdb8b9970724916a02c55a09ffda1b21e32eab","model":"gpt-5.5","provider":"openai","segment_id":"connection.lostTitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Gateway connection lost","text_hash":"ec6cd265976239ff6fc4f227bb25e8e6286fe38c3d1c64326dcdbb76c28b515e","tgt_lang":"fr","translated":"Connexion au Gateway perdue","updated_at":"2026-07-05T21:55:29.170Z"} {"cache_key":"eb55d014f4ff8f50d51d3bd6c4accb4baca429cdb02a285a9fcd0e80cb26915f","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"fr","translated":"Planificateur","updated_at":"2026-07-09T21:53:18.146Z"} @@ -311,25 +426,34 @@ {"cache_key":"ec90bf9fc88b09cccccbfb7e33274f816cb5869d692a4406c1224bf0886db290","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"fr","translated":"Restaurable","updated_at":"2026-07-05T21:00:55.929Z"} {"cache_key":"ecb4a7b21d0b781c0b91593d35292e9744d7ee2cb809859a97bab0cf76043f97","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"fr","translated":"Inconnu","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"ecdc1be0d950aeab683ca3bf442d8c820b15127d4d2bed1ce45433ca2ebea713","model":"gpt-5.5","provider":"openai","segment_id":"languages.hi","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"हिन्दी (Hindi)","text_hash":"fab2abfce45382f3031c59477017700a8cb5dfaf8d15379dc24304809b97c7d5","tgt_lang":"fr","translated":"हिन्दी (hindi)","updated_at":"2026-06-26T21:43:30.551Z"} +{"cache_key":"ee9638669c842a80ec9296f4e7ee2d544a108bfbacd12c0096f19409d2b32773","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"fr","translated":"Installés","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"ef20cf4779b1faf9d7e72f0c196d9d3ab4a48ac5ed59f34412ed07be86eb522a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"fr","translated":"Journaux du worker","updated_at":"2026-06-16T14:14:26.985Z"} {"cache_key":"ef8651b25fc9e66a484efa8c31484827299fa1589240dbe3f6b6faf50f8fc6d7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"fr","translated":"Résultats de recherche","updated_at":"2026-06-16T14:14:38.496Z"} {"cache_key":"efc947df0cf72da7bc32079bd35c910cfc6989e683a7e969130f567016490814","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"fr","translated":"Coût quotidien du fournisseur","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"eff01573861d07d32355b75b44a89f0a9c25a77c6186f76cc540bfad2ec4ce6c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"fr","translated":"Espace de travail","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"f041ba32120a8aa9443442de642f027ef4148d54a10fe7ba65b1248e6677a375","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"fr","translated":"Trier par","updated_at":"2026-07-06T23:40:56.800Z"} {"cache_key":"f17ed95b76278c50b592087cc112d448162b91e7a486fe0f3b7c13abf341cb37","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"fr","translated":"Atelier Skills","updated_at":"2026-05-31T21:48:25.015Z"} +{"cache_key":"f355eee105e4883176f5fe0de210678a276c9e6a0fe6f2368f6130a135553cbd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"fr","translated":"Plugins officiels","updated_at":"2026-07-10T02:24:45.578Z"} {"cache_key":"f35669581e6e7aa1ce077ed0861750cbea6514b670fa0186dd6d9e6ed3e395b8","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.taskCount","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{count} tasks","text_hash":"1d43774da9d4e2aabcff69b02e03591836a632f430121f8ecdaf2f115a250233","tgt_lang":"fr","translated":"{count} tâches","updated_at":"2026-07-06T08:42:28.842Z"} +{"cache_key":"f380b382f31ddd30ce70d078f232242461bbc67ef1a8abe3e978d7b8438c7d24","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"fr","translated":"Identité intégrée lors de la création de cet artefact de navigateur.","updated_at":"2026-07-10T09:47:05.904Z"} +{"cache_key":"f3de8a2431d6294f1be4375faf06225516d1910653c8adfc1e1e62458b5dc3f4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"fr","translated":"Réessayer","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"f418809d90cb219c8110d7a026431dab4a63f6a89ceca68999ac2de56d49f7bd","model":"gpt-5","provider":"openai","segment_id":"usage.overview.costShare","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{percent}% of cost","text_hash":"1d0533da07d6ee21af9d1d02f4636bd9f70df239ad62388b0a415e550ee2de8b","tgt_lang":"fr","translated":"{percent} % du coût","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"f42654393355af2fd06a0ecd1454af48e9b41f59a0871b879a97a3cead5f6569","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"fr","translated":"Options du groupe {group}","updated_at":"2026-07-06T23:40:56.800Z"} +{"cache_key":"f4c8936c6ce397aff9398ab9857cc342c961072c3151fceda4e6cdbee4a3bb81","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"fr","translated":"Officiel","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"f64768f6c44cbc4669b202bd7e2326d8bdf394673bb741b50a6a7e547a7a4354","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"fr","translated":"Inconnu","updated_at":"2026-06-16T14:14:33.243Z"} {"cache_key":"f66ed36e8fc5edf56e4c228748a9be1d51b2d4cac0e0a57fd3734517c956c69c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"fr","translated":"Renommer la session","updated_at":"2026-07-02T14:30:13.470Z"} +{"cache_key":"f6d46ab21119d5912b7ed8d49ea38a97c8a1b17d7531f5d9f725503beb2950c5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"fr","translated":"Fonctionnalité OpenClaw facultative.","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"f76778ded0bc5824cc349859e9cd274784a88e1be021155600a37abc4b0c8d3e","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.budgetValue","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"{used} of {limit}","text_hash":"e191398f92416f35cb6279f7206d2b67cdee04ce46932a1ece17c8c18ca3636e","tgt_lang":"fr","translated":"{used} sur {limit}","updated_at":"2026-07-09T11:49:23.923Z"} {"cache_key":"f77ad88f824118b4b9c4d2bedd2fde2c6f82962461ee7c45c1ea641d958ca1b1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"fr","translated":"Protocole du worker","updated_at":"2026-06-16T14:14:26.985Z"} {"cache_key":"f77f24dd6d1b674d31f32ba4a99d7f3b048128d54ce4f32e8e233027e17ed81f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"fr","translated":"Cette semaine","updated_at":"2026-07-05T14:39:49.624Z"} {"cache_key":"f7e1debf3b2c92177c1c7427824e020fb2b4ecc68b1154a9a51525bfd68a849e","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortCreated","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"fr","translated":"Créé","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"f83ba4dc2057d3bfdccc6094fd5c5c860646b941480b651ead8307dc37f75830","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"fr","translated":"Les entrées microphone sont occupées ou indisponibles pour le navigateur.","updated_at":"2026-07-06T17:56:30.924Z"} +{"cache_key":"f885b3aeebd2731bbfe22e6b369ed53b89e82c5fb0634756b971a073ce0b588a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"fr","translated":"Sélection","updated_at":"2026-07-10T02:24:41.383Z"} {"cache_key":"faa7f865d7b3bb036dd703281b2b8efb480fac88b07808dd4ca9a7e02563fd19","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.emptyActive","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"No queued or running tasks.","text_hash":"00db4a453c2e92f4d807847fc0d8d340708ed9ab547280ce376ba1d610bcb5a6","tgt_lang":"fr","translated":"Aucune tâche en file d’attente ou en cours d’exécution.","updated_at":"2026-07-06T08:42:28.842Z"} {"cache_key":"fb6686fd89bfeddf30898c0d757d0d1ddb8f99f0e963caa158bd53ad334abde1","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.selectedRange","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Selected Range","text_hash":"95917ae71066a19c266cd4530068f4bf775ed2401951ebf37ab0c91daa1a67d3","tgt_lang":"fr","translated":"Période sélectionnée","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"fc609f266b51d6f0dd8c26007ba694f96d323b98a4ac2c83282a46b2d82c7b94","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitDaily","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Daily limit","text_hash":"1e4ce9cd955f07b1b79cddb1bec9df28d4033d4238c0e54b0b766239133afc8c","tgt_lang":"fr","translated":"Limite quotidienne","updated_at":"2026-07-09T11:49:23.923Z"} {"cache_key":"fdf35debad083bccc14e4150ddf0d3ea9d7ab588e70751112546b618fed7d928","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"fr","translated":"Aucun","updated_at":"2026-07-05T14:39:49.624Z"} {"cache_key":"fe4c7b853a38db3e5948fa65bf5a02558ce5960dfeecf7bedad12fdf808aca18","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.loading","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Loading tasks…","text_hash":"9ae9f7d835d95a2cf1362c130da3a0ebacae4331dbb431e60e1735477591bf7b","tgt_lang":"fr","translated":"Chargement des tâches…","updated_at":"2026-07-06T08:42:28.841Z"} +{"cache_key":"fe86a1e5b3feb9bfbab6c2b0678a3a5702522a526c3ad0b91947a3f510bbaf8e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"fr","translated":"Annuler","updated_at":"2026-07-10T02:24:53.076Z"} {"cache_key":"feb2150897114b0cd2f0b0df4d5e4b4c1f34daf7966cb4eb60f6fc199d9df5f0","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"fr","translated":"Dernière mise à jour","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"feee58c9934ad37bdd2c1e2b593dbbef7d768b470ced137157b24b1d5e9b952c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/fr.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"fr","translated":"Automatique","updated_at":"2026-07-06T20:20:02.809Z"} diff --git a/ui/src/i18n/.i18n/hi.meta.json b/ui/src/i18n/.i18n/hi.meta.json index 9a2aa7354b24..7e6ae6ca81b9 100644 --- a/ui/src/i18n/.i18n/hi.meta.json +++ b/ui/src/i18n/.i18n/hi.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:26.413Z", + "generatedAt": "2026-07-10T09:47:11.711Z", "locale": "hi", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/hi.tm.jsonl b/ui/src/i18n/.i18n/hi.tm.jsonl index 72f254177168..10e2df5b283f 100644 --- a/ui/src/i18n/.i18n/hi.tm.jsonl +++ b/ui/src/i18n/.i18n/hi.tm.jsonl @@ -23,6 +23,7 @@ {"cache_key":"02b473badf19b5a3027dbd188fcb44c0f8b044b8f77ff26770c45c291e7c0341","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.emptyFilteredHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Clear or change filters to see scheduled jobs.","text_hash":"828abf818da2a558d07becfc4f045b7346227dc0538cd2fe386b7b6a1a482868","tgt_lang":"hi","translated":"शेड्यूल किए गए जॉब देखने के लिए फ़िल्टर साफ़ करें या बदलें.","updated_at":"2026-06-26T21:37:15.387Z"} {"cache_key":"02c9dda19d3d3be542ecd6d41e11e277cefd460a664aa0c95f44a262ea8a2b38","model":"gpt-5.5","provider":"openai","segment_id":"workboard.newCardHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Queue work for an agent session.","text_hash":"bc6467cb367e94180ff44ac5624d55350e88d3cb27c6b934cefec56e33f4c67b","tgt_lang":"hi","translated":"एजेंट सत्र के लिए कार्य को क्यू में जोड़ें।","updated_at":"2026-06-26T21:32:04.902Z"} {"cache_key":"02f36358bd9af4557b2bb4dd72b49fc93e6d453d8ff89df5f6b017c3ac3eaa58","model":"gpt-5.5","provider":"openai","segment_id":"activity.status.done","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Done","text_hash":"11a6767d5674c7e45f7e00dc525762275b3a48491ad6045427d2609cc496c516","tgt_lang":"hi","translated":"पूर्ण","updated_at":"2026-06-26T21:31:52.012Z"} +{"cache_key":"0334dfe9ce8f5c53e9777b1fcadb97c80e2176547954398e70b89684391fe648","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"hi","translated":"इंस्टॉल किए गए","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"035ece280885b47bcb7c566c2ba9325ca86e0adb01825cc181b8231070e7ffea","model":"gpt-5.5","provider":"openai","segment_id":"usage.loading.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Usage Overview","text_hash":"4e59a10f60e0e162e55c1c8399a7bc68792b9120c5f57b11f522afd6d0f1971e","tgt_lang":"hi","translated":"उपयोग का अवलोकन","updated_at":"2026-06-26T21:34:31.303Z"} {"cache_key":"0398eba9772c4d2b7f78c806ddd428fe8cb419914268acbef39c259bb7a8e4fe","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.profile","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Profile","text_hash":"d696a35bdd1883da07a8d6c41bb7a3153381b23aa197629ee273479a6eaa5a9c","tgt_lang":"hi","translated":"प्रोफ़ाइल","updated_at":"2026-06-26T21:29:48.427Z"} {"cache_key":"03d15a3dce13cf9b15b810b6f714b24364b9e162f8887e11fffa9f144f50fd5e","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"hi","translated":"सत्र संदर्भ उपयोग: {limit} में से {used} ({pct}%)","updated_at":"2026-07-05T10:16:11.934Z"} @@ -30,6 +31,7 @@ {"cache_key":"043b5ca1b1708f1f7d8a6d24c9a97966ffb3b6d2e3ee2a84e2a1df47ce2e5e43","model":"gpt-5.5","provider":"openai","segment_id":"cron.errors.everyAmountInvalid","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Interval must be greater than 0.","text_hash":"891c3b04cad99bfb63e3cf4186f158d3b3b7273655bbf419990a75408728b85e","tgt_lang":"hi","translated":"अंतराल 0 से अधिक होना चाहिए।","updated_at":"2026-06-26T21:38:17.792Z"} {"cache_key":"0468c49e15e79a277d204adcdc343e8d2b12b5482630daacd7c16cf23bfd9f47","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"hi","translated":"पुनर्स्थापित करने योग्य","updated_at":"2026-07-05T21:01:02.212Z"} {"cache_key":"04d98afb322429e1f177f02cddb0c67926e407dacaa0fcafe4fbb1901067ebe4","model":"gpt-5.5","provider":"openai","segment_id":"agentTools.connected","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"hi","translated":"कनेक्टेड","updated_at":"2026-06-26T21:31:18.653Z"} +{"cache_key":"04ed6240403077b57299cf78cfed859a90adbb5cfe4382a776a97167285a98f9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"hi","translated":"जोखिम स्वीकार करें और इंस्टॉल करें","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"04f7e6bb58380f060d9d52afe66778a696b18bd382ee2b0b84e29af519e93fc8","model":"gpt-5.5","provider":"openai","segment_id":"common.version","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"hi","translated":"संस्करण","updated_at":"2026-06-26T21:29:32.270Z"} {"cache_key":"0502ce4d5afdb26e3de1fa07f964ea239e335970cefb03e378eb7524359839f0","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.announceDefault","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Announce summary (default)","text_hash":"957972745edc1a6bff9600816b6c3e9599ca2b22f84e2aba567ced448b9f2589","tgt_lang":"hi","translated":"सारांश announce करें (डिफ़ॉल्ट)","updated_at":"2026-06-26T21:37:46.380Z"} {"cache_key":"05345ceea7fb398efd0ac65ff4e15c009cfc8b2d95d7441913a5df37dd6dd0b8","model":"gpt-5.5","provider":"openai","segment_id":"activity.duration.minutes","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{minutes}m {seconds}s","text_hash":"c4521614d0a2513f44ec2d33ec20386b1a12d284c269c5cf3952479d44e702d9","tgt_lang":"hi","translated":"{minutes}m {seconds}s","updated_at":"2026-06-26T21:31:58.515Z"} @@ -47,8 +49,10 @@ {"cache_key":"06f548181732a4502a27e37bc6ef947c9006dd0f6b3b19b6da11241071baaf27","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.pairing.upgradeSummary","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"This browser is already known, but the requested access changed and needs a fresh approval.","text_hash":"bb0a826825d024c1652afd538a1c292b0167a74b4b610c82fdf38863a0dcb1f6","tgt_lang":"hi","translated":"यह ब्राउज़र पहले से ज्ञात है, लेकिन अनुरोधित access बदल गया है और नई स्वीकृति चाहिए।","updated_at":"2026-06-26T21:35:56.265Z"} {"cache_key":"06f7aa21616621a6a417fd4dd363670d058613b467790611086fee8d28dcde02","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.pairing.stepApproveId","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Approve this request: openclaw devices approve {requestId}.","text_hash":"1e9c932c2042f5c7af72b679de5f41019f086dcb4563a6940e925207738a2840","tgt_lang":"hi","translated":"इस request को स्वीकृत करें: openclaw devices approve {requestId}.","updated_at":"2026-06-26T21:35:56.265Z"} {"cache_key":"070652a6ee0f33878872817c77dc6c968c9ea228981de1b47b0dbb5c92741974","model":"gpt-5.5","provider":"openai","segment_id":"agents.channels.noAccounts","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"no accounts","text_hash":"11397ad5e7303cdd127ac98987b3c52e35c06a11428c6e7503a128dd96749dbd","tgt_lang":"hi","translated":"कोई खाते नहीं","updated_at":"2026-06-26T21:30:49.011Z"} +{"cache_key":"070a8eb9641be17452dc5430ef0c3a67117766714cf2a7d73ac9de4245e5c00e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"hi","translated":"अनुपलब्ध","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"073b8e84c8972cf054e26880ea2881b51801a2c11abd4a6b0631a8e8648edbe7","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.closePane","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Close pane","text_hash":"7fa0f9613d919e167b0f9aa03c22809d446af293eb6c3bac6866bae66d2656c9","tgt_lang":"hi","translated":"पैन बंद करें","updated_at":"2026-07-06T07:23:39.104Z"} {"cache_key":"07549bd3add7af955ce8527904a04f6751bd74a15909f5a0639e0228a201c4df","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.noChannelData","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No channel data","text_hash":"28b65b08b938c27634e6f67a7d8835da8b4e8cbbcc5413da8b6a24afd9c767f2","tgt_lang":"hi","translated":"कोई चैनल डेटा नहीं","updated_at":"2026-06-26T21:35:13.036Z"} +{"cache_key":"076924b53531f2c24b828d3f2fa3aa624a1e2a358b1061cd37ca6bd4d57f2a51","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"hi","translated":"इंस्टॉल किए गए और अनुशंसित प्लगइन ब्राउज़ करने के लिए कनेक्ट करें।","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"078bfe1a33b18dac3f66bc9b249b9fcc63203507525a352698b1e1d69acce3b7","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.cached","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"cached","text_hash":"3673014e72b67383be302485694555a57ad393afdebaed6ded110a775bd0556d","tgt_lang":"hi","translated":"कैश्ड","updated_at":"2026-06-26T21:35:07.144Z"} {"cache_key":"07a8a85018a03dfac64bef5dc9ba97a32aaaf76b71445b92f33fcdfb83d1cf13","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.minRead","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} min read","text_hash":"ba43151afaf01bf1e02c6edad8da835d0dedf91b7f2f572fcdea186c5dc353f9","tgt_lang":"hi","translated":"{count} मिनट पढ़ने का समय","updated_at":"2026-06-26T21:30:58.804Z"} {"cache_key":"07f6e3ce46bd3a17cd624f03e3e216fb3bc79a08904fc700bf04b37d7885c7f6","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"hi","translated":"रूट","updated_at":"2026-06-26T21:36:39.137Z"} @@ -60,6 +64,7 @@ {"cache_key":"08eef0940916338980ae4f9267e01afb9959c808fd4c8b742078faa635ef0f7c","model":"gpt-5.5","provider":"openai","segment_id":"cron.errors.systemTextRequired","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"System text is required.","text_hash":"7b13b35a0dabfa257fada59d07a81a0559c20e8a5049419e4969e2c538f110e5","tgt_lang":"hi","translated":"System text आवश्यक है।","updated_at":"2026-06-26T21:38:17.792Z"} {"cache_key":"08fd1332d1101bc3a500d9d7579be7b8dd604d0edce138ca6213ee172775c908","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.runDuration","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Run duration","text_hash":"b5e9698b25697ec71f0947df28e6b08438033fe73b1b87ac7362766d77b45b97","tgt_lang":"hi","translated":"चलने की अवधि","updated_at":"2026-07-09T10:13:22.376Z"} {"cache_key":"08feb59a86484a48eb458425a800b8efdb3fa08fa7a10050004f3be4c63539b0","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.topModels","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Top Models","text_hash":"163641c5cd55adfe74c2e8a61aa371761cfec8697297bd85a5f7fea0e723e8d6","tgt_lang":"hi","translated":"शीर्ष मॉडल","updated_at":"2026-06-26T21:35:07.144Z"} +{"cache_key":"09492b1eb22584f43c43ed55c02a969858763ba0aa7e5f8dcb13b70746a35e32","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"hi","translated":"लोकप्रिय सेवाओं के लिए वन-क्लिक MCP कनेक्टर्स और चुनी हुई ClawHub खोजें।","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"096a1039b886dba84c59ff8461bbd591a09dd4ece898f1eda32e2b663fffaf89","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.header.off","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Dreaming Off","text_hash":"fe2f15fef986e674efb95de86adba35f11455f29f9d3b045d0cf23196666cca9","tgt_lang":"hi","translated":"Dreaming बंद","updated_at":"2026-06-26T21:33:54.151Z"} {"cache_key":"0a7263928fa187fbe96014564e6da8720e3ce271d1ae2b2166fc3b8ea2f5ddd3","model":"gpt-5.5","provider":"openai","segment_id":"usage.export.dailyCsv","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Daily CSV","text_hash":"84cace61dc7bdfca594e2a15b42e4325fb280c3dc02c4059b824fa01f485721d","tgt_lang":"hi","translated":"दैनिक CSV","updated_at":"2026-06-26T21:34:43.709Z"} {"cache_key":"0a9ed8cf42dfe94c558899d48fc5289f673678702093c186025aa6593efa68b8","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.footer.close","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"close","text_hash":"310ff200149b44a32f124023d7caba19a1a890763a980606813d3a3d4a085d36","tgt_lang":"hi","translated":"बंद करें","updated_at":"2026-06-26T21:33:46.154Z"} @@ -70,6 +75,7 @@ {"cache_key":"0bac9120e0ecd101ae5baece5b08f8f31164fcf33f729666e2afac0d0906c5b6","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"hi","translated":"Worker प्रोटोकॉल","updated_at":"2026-06-26T21:32:11.358Z"} {"cache_key":"0bb5b338354b5118a8890c156ec388416d77b621ce081ea7d78654dca94a636b","model":"gpt-5.5","provider":"openai","segment_id":"agents.copyIdTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Copy agent ID to clipboard","text_hash":"af2bccd7856c791343d66ad6a2e6aa1a3d4d478754b4da90254fc0c4da3d88d3","tgt_lang":"hi","translated":"एजेंट ID को क्लिपबोर्ड पर कॉपी करें","updated_at":"2026-06-26T21:30:33.640Z"} {"cache_key":"0bfbf760055d64afe4e1a68f5b6cbd22b76c418017918155bd66db262df306c9","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.toHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Optional recipient override (chat id, phone, or user id).","text_hash":"6aa519f1c3c449607f1a4c8d7fc326fd8fff58ade6e6dde4752e77f4eae34287","tgt_lang":"hi","translated":"वैकल्पिक प्राप्तकर्ता ओवरराइड (chat id, फ़ोन, या user id)।","updated_at":"2026-06-26T21:37:57.526Z"} +{"cache_key":"0c32558cfb405a6380da834dd3f20d9b77e66fc526a00931e16438266cb59279","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"hi","translated":"चैनल","updated_at":"2026-06-26T21:31:23.820Z"} {"cache_key":"0c6fa15966c4abaeb131c314eccb9abdc952995b79855cefbaacf414326598f9","model":"gpt-5.5","provider":"openai","segment_id":"agents.tabs.tools","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"hi","translated":"टूल्स","updated_at":"2026-06-26T21:30:41.032Z"} {"cache_key":"0c72e186eb54090fa52b5a852f313616f3fda7686e1ba8ed04477bc214d6392c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"hi","translated":"कोई गतिविधि नहीं","updated_at":"2026-07-05T14:39:53.244Z"} {"cache_key":"0c770d2df621d6d3dcea75c22fa5223f2c3f004c2272c98d15b98199dd46afb7","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventCreated","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"hi","translated":"बनाया गया","updated_at":"2026-06-26T21:33:00.304Z"} @@ -80,6 +86,8 @@ {"cache_key":"0d29401d3a579215e2c2571960365da61eb7861d2d1b97f382aff50af2cc284a","model":"gpt-5.5","provider":"openai","segment_id":"instances.lastInput","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Last input {time}","text_hash":"04c40c4d7fa4438b7d6afe2f3997bc427522d67e80f8adc42ee0269eed294760","tgt_lang":"hi","translated":"अंतिम इनपुट {time}","updated_at":"2026-06-26T21:30:08.627Z"} {"cache_key":"0d43dcfbfb200ef123949cc2d2e886718c7cb41aca7e441be6fc974577fad8d2","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.collapsePreview","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Collapse preview","text_hash":"90e8d06c0309d797a91911f446a0d6218d659c7c8769e2ab4034bc6e0c4c008d","tgt_lang":"hi","translated":"पूर्वावलोकन संक्षिप्त करें","updated_at":"2026-06-26T21:30:58.804Z"} {"cache_key":"0dbb6a3184f79f47161c2746bee2b34bf07c8972cf01fcd88e1fbc074844354a","model":"gpt-5.5","provider":"openai","segment_id":"cron.runEntry.noSummary","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No summary.","text_hash":"cc652bed88c52ec5625d8d89e21caae70f02ab89216fee147fa9991c2b647f92","tgt_lang":"hi","translated":"कोई सारांश नहीं।","updated_at":"2026-06-26T21:38:12.145Z"} +{"cache_key":"0dc5196efceb73b50776fe5e5076daa3de991dcbc845baaa9a74dde665bb0975","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"hi","translated":"अभी तक कोई MCP सर्वर कॉन्फ़िगर नहीं किया गया है। यहाँ एक जोड़ें या Discover से कोई कनेक्टर चुनें।","updated_at":"2026-07-10T02:25:24.766Z"} +{"cache_key":"0e1f98c00f76b42d7521d40545904cd2beb96028521e52c6a6c6d164b586c56c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"hi","translated":"इंस्टॉल किए गए प्लगइन्स फ़िल्टर करें","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"0e4f63d0ba5a15804e1c7d514b7e98bddea564ef3ba7d44d1644459814736488","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.emptyPromoted","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No recent promotions to inspect.","text_hash":"8567f5da8f4809b0d871de3a50793ea5a7e89050f9768f2850a625f96ef6a35b","tgt_lang":"hi","translated":"जांचने के लिए कोई हालिया प्रमोशन नहीं हैं।","updated_at":"2026-06-26T21:34:11.503Z"} {"cache_key":"0e82ac3bcfef80ee097dc33315d6b48e3a42d957e7f5f313dff04371a7bb066f","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.schedules.hourly.label","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Hourly","text_hash":"eab0cd8fdf9bccecc74e5a010b32af35986e3929184a599f5aea3b8195340ee2","tgt_lang":"hi","translated":"प्रति घंटा","updated_at":"2026-06-26T21:36:51.337Z"} {"cache_key":"0e86fde0aa3a7834e99883dd5689fb16e7bf50298138bd86e2c3e7f03112b808","model":"gpt-5.5","provider":"openai","segment_id":"agents.cronPanel.schedulerSubtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Gateway cron status.","text_hash":"f56600509094c3eb8014ac7811bdebc67fd9c8332603859f4718ac6f6ea2f378","tgt_lang":"hi","translated":"गेटवे cron स्थिति।","updated_at":"2026-06-26T21:30:49.011Z"} @@ -136,10 +144,12 @@ {"cache_key":"14f3f4bc3500ba138abaa283933a29dac735c51abf6eb2c01db7e130fcbaa7a9","model":"gpt-5.5","provider":"openai","segment_id":"workboard.taskStatus.timed_out","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Task timed out","text_hash":"3e79860220ebe6465d212a02a04b5dac8160ada742877d66ca97ba268a9fc40d","tgt_lang":"hi","translated":"कार्य का समय समाप्त हो गया","updated_at":"2026-06-26T21:33:00.304Z"} {"cache_key":"1508e23e77abd9fda863a894c641ab9f6142a115d208bcb7a040e5390d92e1ac","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.duration","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Duration","text_hash":"4fc52a3c4c558b517c463b22d86d0e3b9cfd4255c98fe3510f9075b37ab419c9","tgt_lang":"hi","translated":"अवधि","updated_at":"2026-06-26T21:35:20.292Z"} {"cache_key":"153ce7ed0e3d975cc996b3ad9a8ebcc10f067600ad605a89e013ec8871ac1a93","model":"gpt-5.5","provider":"openai","segment_id":"common.dismiss","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Dismiss","text_hash":"48845bff334a50a59aaecf499f28a7a24c3b4b891b8b18a9f1169ad8e8a6b261","tgt_lang":"hi","translated":"खारिज करें","updated_at":"2026-06-26T21:29:24.057Z"} +{"cache_key":"15511778471600bf69765a1d10ebe5d41cf9eacb42c2ea2347380d0d97999e47","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"hi","translated":"कोड और बंडल प्लगइन ढूँढने के लिए कम से कम दो वर्ण दर्ज करें।","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"157774f1d492eef11b4cf7bf2175da132a9a4eb7d4abecac1ef9376cba0ab398","model":"gpt-5.5","provider":"openai","segment_id":"agentTools.channel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"hi","translated":"चैनल","updated_at":"2026-06-26T21:31:18.653Z"} {"cache_key":"15aad9850dbecefd6842f24a5c4830aeb990471647822d3976cf723c27ddf95a","model":"gpt-5.5","provider":"openai","segment_id":"nodes.binding.formModeHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Switch the Config tab to Form mode to edit bindings here.","text_hash":"af8526a5a7a925ecaa127907fc4e377373054036b27f99251767b5e4a2a135f8","tgt_lang":"hi","translated":"यहाँ बाइंडिंग संपादित करने के लिए Config टैब को Form मोड में स्विच करें।","updated_at":"2026-06-26T21:29:59.416Z"} {"cache_key":"15aada45491520df14548be5446f51d8ca8560de676f7affa976da3c58abecc8","model":"gpt-5.5","provider":"openai","segment_id":"overview.access.showToken","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Show token","text_hash":"2faef0ba40dc420f67de983b6c1be8f0f4b9b60f18409f2d2368b53b3c28a7bd","tgt_lang":"hi","translated":"टोकन दिखाएँ","updated_at":"2026-06-26T21:33:07.229Z"} {"cache_key":"15d2fcfe490cca285c764892c38e1bd80c4ff1da91a2159e66574f43d98eea40","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"hi","translated":"कोई माइक्रोफ़ोन इनपुट नहीं मिला।","updated_at":"2026-07-06T17:56:41.735Z"} +{"cache_key":"15e67725ef30ee1971dfc4c16ad1830af58ef0bcf5a025ac6f91716c36a320e3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"hi","translated":"MCP सर्वर “{name}” कॉन्फ़िगरेशन में नहीं मिला।","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"161f39bf7d1629fa4bf71cf9175e364eb6f78630a8d3649cf23e19978b90d2c5","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.userToolInputTokens","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"User + tool input tokens","text_hash":"55a5b0c65d1ad616ec3eecaaea0f7a76fafa1ec51d2c5f5ad798abb2e8e72699","tgt_lang":"hi","translated":"यूज़र + टूल इनपुट टोकन","updated_at":"2026-06-26T21:35:20.292Z"} {"cache_key":"1620be507cb3274588bdcd7efabd44fe736113d406bb06a418cf6ab415752df2","model":"gpt-5.5","provider":"openai","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"hi","translated":"समीक्षा","updated_at":"2026-06-26T21:32:18.718Z"} {"cache_key":"16777a30d13e6ee214757b2aaefac57a316262854e6f49470bc31cfdb06e9eda","model":"gpt-5.5","provider":"openai","segment_id":"overview.pairing.roleUpgradeTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Role upgrade pending approval.","text_hash":"358d4d3574c1351dc700fe71baca6dfec0b95cd935b9db716db31855aa6e3a2d","tgt_lang":"hi","translated":"Role upgrade approval के लिए लंबित है।","updated_at":"2026-06-26T21:33:25.942Z"} @@ -147,10 +157,12 @@ {"cache_key":"175246de4b5caafbcded386f855bcc373668008ca84fad35e3c0b507ed54a529","model":"gpt-5.5","provider":"openai","segment_id":"workboard.lifecycleMissing","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Session missing","text_hash":"d48d870c4419a406a0883369913c52bff48e48c2c66dacf7a49467905ef1d9bb","tgt_lang":"hi","translated":"सत्र गुम है","updated_at":"2026-06-26T21:32:52.647Z"} {"cache_key":"1779cee645c83f5734d215fed8aeda4dd351601a12be8feca17242b7e77621af","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.all","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"hi","translated":"सभी","updated_at":"2026-06-26T21:35:13.036Z"} {"cache_key":"17846256c3594b7c69cb97710acdfaaa8918c7d18c03398e84abe4362a300c36","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobState.next","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Next","text_hash":"1ff57a29d7c9d11bdf61c1b80f2b289b44c1ea844824d4b94a0d52b6ba5fc858","tgt_lang":"hi","translated":"अगला","updated_at":"2026-06-26T21:38:12.145Z"} +{"cache_key":"178d1f0fcf804667d07d580ed8176b0974027e8552421d5126c1287d469d3356","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"hi","translated":"{name} हटाएँ","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"17953913e286f39f41adcd29190d44f1e5c166ce80d54411ad5ec09cac866162","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"hi","translated":"पैरेंट फ़ोल्डर","updated_at":"2026-06-26T21:36:39.137Z"} {"cache_key":"17b60644ecdec4556ea58b4d83b85efcb9e48ec9ec1676109968d1fd390643fa","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"hi","translated":"सेशन आर्काइव फ़िल्टर","updated_at":"2026-07-09T10:01:43.755Z"} {"cache_key":"17ccf7c9aba9aa2d6598312b6c4d6cb62a528e3473b9b234b3fe34b04050fec7","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.displayNameHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Your full display name","text_hash":"577ade6f04f7c59ea5c0e10122c78353e03e55cbe771b60a6810bd440b02fe06","tgt_lang":"hi","translated":"आपका पूरा प्रदर्शित नाम","updated_at":"2026-06-26T21:29:48.427Z"} {"cache_key":"17d3bf7d56f95de3b3e42c0f00924eda48c7599bb212b81c8d36cd8e06f00f1c","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.open","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Open split view","text_hash":"51e50f7be73433216ae62f58fdbc586372f5a6063ee9978cec96793ef75fa554","tgt_lang":"hi","translated":"स्प्लिट व्यू खोलें","updated_at":"2026-07-06T07:23:39.104Z"} +{"cache_key":"17d8c6f51d2eed42823c90a246d773169e826d35907e0626c08395433bba66bf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"hi","translated":"उपलब्ध","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"17d9b66ac91ded982b3eac20fd3c2574bb39ef146bdece4bf2cf9dfc8aa6105b","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.alwaysAllow","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Always allow","text_hash":"977618bd8bc7eef4d3bada0cf1a791d8362cd5fd8680e9673566abab2e76dded","tgt_lang":"hi","translated":"हमेशा अनुमति दें","updated_at":"2026-06-26T21:31:18.653Z"} {"cache_key":"180416b48877f9125aad40a4208e7dc85cde4c98edcccd6401e63e8c36c04561","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.previewMarkdownTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Preview rendered markdown","text_hash":"eb8966f05a4f2e04dfcd10d0619461dc8a5b4bf6f0918ec287bcd9dd228e3094","tgt_lang":"hi","translated":"रेंडर किए गए markdown का पूर्वावलोकन करें","updated_at":"2026-06-26T21:30:58.804Z"} {"cache_key":"18072df0884f4d0f85fe0141a677d14ad0f12e3de77397ff721792a9306076de","model":"gpt-5.5","provider":"openai","segment_id":"activity.search","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"hi","translated":"खोजें","updated_at":"2026-06-26T21:31:44.582Z"} @@ -179,6 +191,7 @@ {"cache_key":"1a180bf4a6f154be4888787b81b72b741bdff0bb6bd5c10d4a1dc6e48596373b","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.fixFieldsPlural","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Fix {count} fields to continue.","text_hash":"a8631dd4d065e1e2657e8751e47594cd30b8dba25ec9b1ef9921e0340a3f93c1","tgt_lang":"hi","translated":"जारी रखने के लिए {count} फ़ील्ड ठीक करें।","updated_at":"2026-06-26T21:38:06.735Z"} {"cache_key":"1a334fb41caa9dec66d3777c896b5c651162f930cb692e700eba584ec122fddc","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"hi","translated":"सेशन","updated_at":"2026-06-26T21:36:39.137Z"} {"cache_key":"1a4618ad1bfa488d054cd30c0ab7b0c9db4ebd312a646f2b58f1d5aadc9f24ab","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.originLive","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"live","text_hash":"247610f4dedd4ab7247d07dbda19c81ca9817f85820742cad49d407ffae9e4ed","tgt_lang":"hi","translated":"लाइव","updated_at":"2026-06-26T21:34:03.457Z"} +{"cache_key":"1a8a6736c39c772bb95884f8734e5a86e22de22abfd5fb7a93ed68e052a9e9ae","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"hi","translated":"{name} अक्षम करें","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"1a8b24ac49d1348a71b5fdf5f387fe83140adb70309e6dba4a6be9c23b71628d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.fast","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Fast","text_hash":"6c582b62e0e5aa05647388bd045f2e3e5e7f51f479d00d9df592634c8088a22b","tgt_lang":"hi","translated":"तेज़","updated_at":"2026-06-26T21:30:21.093Z"} {"cache_key":"1aaa0a4d7acc5bca47add8d496569ab7d75dc1c6cef0c7d368c59d577a037124","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"hi","translated":"इस होस्ट पर कोई आर्काइव किया गया सेशन नहीं है।","updated_at":"2026-07-09T10:01:43.755Z"} {"cache_key":"1abf456041a616163f99f6b0dba900c4383b0e4f894fc3bc2836452e50dae0d8","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.bestEffortDelivery","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Best effort delivery","text_hash":"3bd441f6fbb7a403ddfbca4d72b456833615ff410acc7942651f571f79f80944","tgt_lang":"hi","translated":"सर्वोत्तम प्रयास डिलीवरी","updated_at":"2026-06-26T21:38:06.735Z"} @@ -198,6 +211,7 @@ {"cache_key":"1d88e55cb73c4264e321a4b41da44f36e6a2922bdd2577f73dd2949c104832b3","model":"gpt-5.5","provider":"openai","segment_id":"debug.snapshotsSubtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Status, health, and heartbeat data.","text_hash":"80c44e86939b84060eed0e92d108b453558de0459dfcdbdd6f682ec6fa5e038d","tgt_lang":"hi","translated":"स्थिति, स्वास्थ्य, और हार्टबीट डेटा।","updated_at":"2026-06-26T21:31:05.913Z"} {"cache_key":"1db8c72d60d401158644e49a9afa5a740e91cb98d6da23a59258c1833adf1fc6","model":"gpt-5.5","provider":"openai","segment_id":"agents.channels.enabledCount","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} enabled","text_hash":"06657a73495329606edc6995665febd5d3a88548251b1a7c9d6f21a507aaf3d2","tgt_lang":"hi","translated":"{count} सक्षम","updated_at":"2026-06-26T21:30:49.011Z"} {"cache_key":"1dcf5cad83efa269187318bfb20c8b53b6cadfa654264baed8dd8ea389202cd2","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.bioHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"A brief bio or description","text_hash":"13c4378cf9fb4be11b124be3ee805740faafd2e3cf09936e4186ae037cade948","tgt_lang":"hi","translated":"एक संक्षिप्त बायो या विवरण","updated_at":"2026-06-26T21:29:48.427Z"} +{"cache_key":"1dcffe03b6d29f413d2daf6aeddce3719b1e0ab91a638cb4985745e0f872c2dd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"hi","translated":"जोड़ें","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"1dd21b04423310411d2d92764a78d05e333c615d46b119e646ba05a1bc565e36","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.emptyHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Create one from a plain-language prompt; advanced fields can wait.","text_hash":"be6372063cab6a5d3b0c9764e1eb1f0b59cfff12aafc6eca771fff1570779ef7","tgt_lang":"hi","translated":"साधारण भाषा के प्रॉम्प्ट से एक बनाएं; उन्नत फ़ील्ड बाद में सेट किए जा सकते हैं.","updated_at":"2026-06-26T21:37:15.387Z"} {"cache_key":"1e0b900e8d78e7da0cb96a7bc6131e903dcaaaf39cc220d3a5bacb8b527fee0f","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.eyebrow","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"hi","translated":"समीक्षा","updated_at":"2026-06-26T21:34:03.457Z"} {"cache_key":"1e42efb9081930014f33a3e6d17ad3e85e035c35caa40ba7b68c0ce0d8963fa4","model":"gpt-5.5","provider":"openai","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"hi","translated":"असाइन नहीं किया गया ({agent} का उपयोग करता है)","updated_at":"2026-06-26T21:32:18.718Z"} @@ -228,8 +242,10 @@ {"cache_key":"2260c9dc3a4c7df2e1657ce474510805aab5109df345c965a18edbb3a2c26073","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.toolsUsed","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"tools used","text_hash":"6b8956397b4b2d4c5ffa56aaa71dedc923afc6618e4043f3c5a0805fdff2d1d2","tgt_lang":"hi","translated":"उपयोग किए गए टूल","updated_at":"2026-06-26T21:34:59.501Z"} {"cache_key":"2292e947427923d3408831c234b287d3bee23e76c9e829371aa34f4a244c8b50","model":"gpt-5.5","provider":"openai","segment_id":"common.probe","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Probe","text_hash":"3bd51ab9c14f9514ea37fac91f5f245e93cf5733bd39ca1652e5525a1d67b5d1","tgt_lang":"hi","translated":"जाँच करें","updated_at":"2026-06-26T21:29:19.678Z"} {"cache_key":"22c5911da4e88ae8da1c8de000df9e40c62daa819221f7b6ae8fa49408e48f9c","model":"gpt-5.5","provider":"openai","segment_id":"overview.pairing.roleUpgradeSummary","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"This device is already paired, but the requested role change is waiting for approval.","text_hash":"6be065f7872c9da91207eaac047a8e9d1638e980449baa4746f51c69d1197695","tgt_lang":"hi","translated":"यह डिवाइस पहले से paired है, लेकिन अनुरोधित role change approval की प्रतीक्षा कर रहा है।","updated_at":"2026-06-26T21:33:25.942Z"} +{"cache_key":"22d658e81369ebbd5c91f172bf5f4700e4b0d223b2a916970dd93df1c9831e15","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"hi","translated":"मेमोरी","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"23095e4147ae915e548212fa28856c6d1a9050f9a800d3c2956d68a8e053a571","model":"gpt-5.5","provider":"openai","segment_id":"overview.access.passwordPlaceholder","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"system or shared password","text_hash":"34a9738798b1867d236d9f47ade0fb12cb06f64709c78661289f169c94336e36","tgt_lang":"hi","translated":"सिस्टम या साझा पासवर्ड","updated_at":"2026-06-26T21:33:07.229Z"} {"cache_key":"2326b8a1ebb743c2ea520786f8900dd57b35d15d08310ed67b3c8a01efd30757","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.name","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"hi","translated":"नाम","updated_at":"2026-06-26T21:37:15.387Z"} +{"cache_key":"2331b63e9c110120d6c5458871fee902ad0900aca2efb622e884768e53c1e324","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"hi","translated":"कनेक्टेड Gateway संस्करण","updated_at":"2026-07-10T09:47:11.706Z"} {"cache_key":"2337ad343f4631786efdd52679ff9f3db6a62dcefb879669d1a282490f91e95e","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.delivery.notify.label","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Notify me","text_hash":"a5b3a74811e60623f753002629d9abfc8455155b316003299a39b9eb2871e8b8","tgt_lang":"hi","translated":"मुझे सूचित करें","updated_at":"2026-06-26T21:36:59.582Z"} {"cache_key":"235724b8fc1e303a7a563a9a8c13b24329ba4996e085f8f5c218d8d74e4bd060","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.timezoneOptional","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Timezone (optional)","text_hash":"88a0be3b8e80be284402e4fbb2b045b98c9e47fd2b66ed9cc6fec4a6e726cf03","tgt_lang":"hi","translated":"टाइमज़ोन (वैकल्पिक)","updated_at":"2026-06-26T21:37:38.564Z"} {"cache_key":"2371f9bc6226555585c2a98fd1aefdb54a45bd2bf398040e736441dcea2c6244","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.webhookHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Send run summaries to a webhook endpoint.","text_hash":"cb5f366ea218ef2d0c803e1c814ed6cc24abd93701d5c5c87e9503869eb11070","tgt_lang":"hi","translated":"रन सारांश webhook endpoint पर भेजें।","updated_at":"2026-06-26T21:37:57.526Z"} @@ -246,6 +262,7 @@ {"cache_key":"24aab0dc758a890375fb983b2be4f8c12449b68481e1ad8a97fe66ccdb09102d","model":"gpt-5.5","provider":"openai","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"hi","translated":"चल रहा है","updated_at":"2026-06-26T21:32:33.484Z"} {"cache_key":"24b7b9f05ce8c65c42005edb02b4c6af11591edfc5a607e102a5373b193c2383","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.scheduleSub","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Control when this job runs.","text_hash":"3f706ce5406a786b764e79024a07de24c744012a2b92ada149860bb76aadc198","tgt_lang":"hi","translated":"यह जॉब कब चले, इसे नियंत्रित करें।","updated_at":"2026-06-26T21:37:31.894Z"} {"cache_key":"24cde00639e85b07518bebeb67c118dd4ce7deb6a57cef996062e0e20fa13b25","model":"gpt-5.5","provider":"openai","segment_id":"logsView.file","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"File: {file}","text_hash":"ea38ba09b5e15042f6981adb617735b87665a0830ef2efad5a8f452059d1b430","tgt_lang":"hi","translated":"फ़ाइल: {file}","updated_at":"2026-06-26T21:31:58.515Z"} +{"cache_key":"24d16fb29b7a2ce9ca95b4f3326e2f549f61f00c0d0c30379c240f4c26f3da00","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"hi","translated":"{name} इंस्टॉल करें","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"24d380e850e92b721d5a76b49c04ed888cd83a76bc382130459efba95de65655","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.closePreview","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Close preview","text_hash":"7d8ab368210c5ae8d2cec7bb577afe1e7cf9489c88f031e0f9de7555c9f20b66","tgt_lang":"hi","translated":"पूर्वावलोकन बंद करें","updated_at":"2026-06-26T21:30:58.804Z"} {"cache_key":"2513db52fc5e1e94335e27113b125df96b47910cc1e50c6ce0130a351f188d6d","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.enabled","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"hi","translated":"सक्षम","updated_at":"2026-06-26T21:37:06.965Z"} {"cache_key":"2527590a686878ac497cc2192336e02d54cbef67a34b66c2642e542d1b653d65","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventLinked","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Linked session","text_hash":"76d8304f83c9c3e45c93544abdf315b970972c5f2ba1a821e561a6e95084f6af","tgt_lang":"hi","translated":"सेशन लिंक किया गया","updated_at":"2026-06-26T21:33:00.304Z"} @@ -267,6 +284,7 @@ {"cache_key":"276473f10a8af71d098f26ace8c5ef7c856682418c595aa446cf977e3a80e351","model":"gpt-5.5","provider":"openai","segment_id":"debug.security.runPrefix","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"hi","translated":"चलाएँ","updated_at":"2026-06-26T21:31:12.170Z"} {"cache_key":"277b3fe02d834944e946aae731c46422b28cea5ef6c562efc23a5da77f86eb08","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"hi","translated":"Board: {board}","updated_at":"2026-06-26T21:32:11.358Z"} {"cache_key":"278e6c12414db9492c7f3ad6d9fa89ae5b90fa151ba98d2541f7b3004e99fab3","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"hi","translated":"कौशल वर्कशॉप","updated_at":"2026-06-26T21:31:23.820Z"} +{"cache_key":"2793a4cecdbbe3b6ed1eaf4b32b65b443150e0358945ba9f65756d00132a3220","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"hi","translated":"हटाया जा रहा है…","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"279b9809cb2e2b28bd63096c44a37f3bf6cea19dc3f54e3dc49903516e869f8f","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.modelMix","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Model Mix","text_hash":"4716263d5596745d99dafb4d7ce95bb8afd089368f8203741451c5915005293c","tgt_lang":"hi","translated":"मॉडल मिश्रण","updated_at":"2026-06-26T21:35:20.292Z"} {"cache_key":"27ea3db45c2d323a5c697f7cc9063c5d4e8cccc017c197cb6a16228bf33133e3","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archived","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"hi","translated":"आर्काइव किया गया","updated_at":"2026-06-26T21:30:33.640Z"} {"cache_key":"28085f29c6d637e693f3da254794c4debd0c035a9e79fa997a78d6ab6592d2c8","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.name","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"hi","translated":"नाम","updated_at":"2026-06-26T21:29:48.427Z"} @@ -281,6 +299,7 @@ {"cache_key":"293b22f16bbfe48f0cce28efde48bb40433ed366dfb3712628edc4c06850c99a","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Token activity","text_hash":"05f1f9836e5173d8ab4539357cfa050c3ad480fc049ddc22cb8fb8ea437997e2","tgt_lang":"hi","translated":"Token गतिविधि","updated_at":"2026-07-09T11:27:28.426Z"} {"cache_key":"29543aa848106ace9290a9f52999e77597b48caaf21af6f80a22a5be90988988","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.expression","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Expression","text_hash":"c67415bcff328a59fd399e2a7ca9691e0044192fb7480ae501644339965d046d","tgt_lang":"hi","translated":"एक्सप्रेशन","updated_at":"2026-06-26T21:37:38.564Z"} {"cache_key":"2972325beba492270139333247c581c76a5626eae46401086b4345a27ce81a12","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"hi","translated":"आपके सभी कंप्यूटरों के सेशन","updated_at":"2026-07-09T10:01:43.755Z"} +{"cache_key":"2976e64adddac277c60d615af7c371d2ba4da5778e374e737376160b5e578ed2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"hi","translated":"सर्वर नामों में अक्षर, संख्याएँ, डॉट, डैश या अंडरस्कोर इस्तेमाल किए जा सकते हैं।","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"298ead8ac622c5e887def66a349d4c00df7274fcbb4a45be3399394205680c94","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.activity","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Browser-local tool activity summaries.","text_hash":"7fecbcaed2f89e3f28e1509f511948082c301546b77f6e16795c953ad08aa11d","tgt_lang":"hi","translated":"ब्राउज़र-लोकल टूल गतिविधि सारांश।","updated_at":"2026-06-26T21:31:33.548Z"} {"cache_key":"29afaf4bcdb3b0adf17ba93dacaf43696ab449685f189bfb9be986ee077fedc8","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.runStatusError","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Error","text_hash":"54a0e8c17ebb21a11f8a25b8042786ef7efe52441e6cc87e92c67e0c4c0c6e78","tgt_lang":"hi","translated":"त्रुटि","updated_at":"2026-06-26T21:37:23.206Z"} {"cache_key":"29ea5edb24a88a12d81c755598065aa693a5584b3aeba4b315e0c5322e644263","model":"gpt-5.5","provider":"openai","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"hi","translated":"चल रहा है","updated_at":"2026-06-26T21:32:18.718Z"} @@ -291,6 +310,7 @@ {"cache_key":"2a95b26b8bfb4d79dacea95f94cd8563c00f992f16cc00130cf65e6406c9cb1e","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.webhookPost","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Webhook POST","text_hash":"d723454d0dc5c8e14aa37fc971854acea7aebcff2f323d537dac4732aacb0aa3","tgt_lang":"hi","translated":"Webhook POST","updated_at":"2026-06-26T21:37:46.380Z"} {"cache_key":"2ab3d5e24e3c6ab13e29483cb21819dd31e3d37f7c10400e985a8bfcc7978bce","model":"gpt-5.5","provider":"openai","segment_id":"usage.loading.badge","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Loading","text_hash":"dc380888c4e2c7762212480ff86eb39150ec70b45009c33bc6adcbd0041384b1","tgt_lang":"hi","translated":"लोड हो रहा है","updated_at":"2026-06-26T21:34:31.303Z"} {"cache_key":"2ab9bcdeea6aa75d853490cf146f5ab9ad6c352278dd2944ea39dd9046475fd5","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"hi","translated":"Gateway या किसी पेयर किए गए कंप्यूटर पर Codex सेशन शेयरिंग चालू करें, फिर इस व्यू को रीफ़्रेश करें।","updated_at":"2026-07-09T10:01:43.755Z"} +{"cache_key":"2ac8207d574b5883583dd762d9d26a50f3ca31d7356abe3cea5b2cb1af985ffe","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"hi","translated":"{name} हटा दिया गया। परिवर्तन लागू करने के लिए Gateway को पुनः प्रारंभ करना आवश्यक है।","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"2ad3d4cdf7d863772bd7b097b238cd724f376a1ebcd12c64d3db05f5ac85914a","model":"gpt-5.5","provider":"openai","segment_id":"usage.mosaic.legend","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Low → High token density","text_hash":"a7e92dca14df67c975094299ace18e888113972db8d134b212857e00d1cac20e","tgt_lang":"hi","translated":"कम → अधिक टोकन घनत्व","updated_at":"2026-06-26T21:35:33.329Z"} {"cache_key":"2ad4bb8d3f3342e419a38c00e8cd60b3be56bdbdd75afd7ac28b5e00ee213245","model":"gpt-5.5","provider":"openai","segment_id":"chat.docsOpensInNewTab","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{label} (opens in new tab)","text_hash":"d52984fc54f2c64defc1fd3cf1fe1826f0f843ecdb5854baec279c5237457224","tgt_lang":"hi","translated":"{label} (नए टैब में खुलता है)","updated_at":"2026-06-26T21:36:16.800Z"} {"cache_key":"2ade14d715ebecbf1790e6e2deac0afeafc6e80a2ac2dab47b7edc1cb526e3d5","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.network.stepUrl","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Check the WebSocket URL and use wss:// when the Gateway is behind HTTPS/Tailscale Serve.","text_hash":"9fa7223c6c3c1256087a9282d8c7d8c484bf04c3dffe3049105f18ed80287601","tgt_lang":"hi","translated":"WebSocket URL जांचें और जब Gateway HTTPS/Tailscale Serve के पीछे हो, तो wss:// का उपयोग करें।","updated_at":"2026-06-26T21:36:16.800Z"} @@ -304,6 +324,7 @@ {"cache_key":"2bcee0adf1d2b84625bb9e62054c91bdb0ad3a5f5fb8c87077f4fcf9e686ff6d","model":"gpt-5.5","provider":"openai","segment_id":"usage.mosaic.noon","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Noon","text_hash":"e227fdfa5daf8a279db1e378933f2c784c8ddd21993dd5220c0106a0247a5f09","tgt_lang":"hi","translated":"दोपहर","updated_at":"2026-06-26T21:35:33.329Z"} {"cache_key":"2bf0274ba04958b18c75ef5e222044b9b86cf52fa51e13b173c9f198daf1ebb7","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.stop","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Stop","text_hash":"cae7d57bc067a514b8e34c9589631a95c7dc051638ddd2a190773269279a99df","tgt_lang":"hi","translated":"रोकें","updated_at":"2026-06-26T21:36:23.330Z"} {"cache_key":"2c16b9b831bf0020ea231245d6e82e006adb58cefa376bdbc81fe3534bdd6abf","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.fillRequired","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Fill the required fields below to enable submit.","text_hash":"d11119bbb0930624a8967cf51effd219f1ce09dd9263ddd22c892687ce771b04","tgt_lang":"hi","translated":"सबमिट सक्षम करने के लिए नीचे दिए गए आवश्यक फ़ील्ड भरें।","updated_at":"2026-06-26T21:38:06.735Z"} +{"cache_key":"2ca35549615455607c26b214b84891bdbbfd4de923f7baf690d44c7a8263620b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"hi","translated":"कोई प्लगइन नहीं मिला","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"2caed58b6e3396440e6f04830f91552ed6c68d13dddda40544d503706bb7a055","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.indexingDay","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"softly indexing the day…","text_hash":"ff48bcdd6ad07670194006da8e1f7c90138be97b7e6f46fb37119baadb7a2455","tgt_lang":"hi","translated":"दिन को धीरे-धीरे इंडेक्स किया जा रहा है…","updated_at":"2026-06-26T21:34:24.815Z"} {"cache_key":"2cb6df18d526113db6431647718d802200d8cbab44bafef7f628e728bfc6cbb0","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phase.rem","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Rem","text_hash":"4c14dc4d912623b7710f1cd7038895f720aa9f374e34e82492fe6e5a16b513cf","tgt_lang":"hi","translated":"Rem","updated_at":"2026-06-26T21:34:03.457Z"} {"cache_key":"2cb843f387b4e5ecdedd856679871ee210397686935bf865640b745fdcff6e99","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobDetail.agent","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"hi","translated":"एजेंट","updated_at":"2026-06-26T21:38:12.145Z"} @@ -312,6 +333,7 @@ {"cache_key":"2cc7eb1b60f8f9901d1a60a321144f57f0409de258cfa5739eb14eb9594583dd","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"hi","translated":"Codex सेशन सारांश","updated_at":"2026-07-09T10:01:43.755Z"} {"cache_key":"2d000d471a26a248ea43b802cc33fd74972a941d11aa4b7afdd5eab1e7602d86","model":"gpt-5.5","provider":"openai","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"hi","translated":"प्रमाण अनुपस्थित","updated_at":"2026-06-26T21:32:33.484Z"} {"cache_key":"2d4120d0afcd18eccf324b44dd8ea5c4facbc3a786ba576f12ce43908602fde1","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.recent","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Recently viewed","text_hash":"8e445e8aa6d23a303c6d6005453d8bb379e5ce63137031f10bed3d257d2fbf2d","tgt_lang":"hi","translated":"हाल ही में देखे गए","updated_at":"2026-06-26T21:35:13.036Z"} +{"cache_key":"2d5a2518f3c39f20922f8d09cf27b72d82929ae944e443a525c6d5f24bff58d1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"hi","translated":"इंस्टॉल करें","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"2d7f4b6c2693ed548df79eff27777b7427fb408e00ecf44d047cda61ea1bc417","model":"gpt-5.5","provider":"openai","segment_id":"overview.logTail.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Gateway Logs","text_hash":"afaa136cec7bf29de97b11e2a94f24663fd1dcba69492b90c4980a6f710e0fc6","tgt_lang":"hi","translated":"गेटवे लॉग","updated_at":"2026-06-26T21:33:40.484Z"} {"cache_key":"2dc22f9d8ad6649f9fb95df27634200a354d4e48f6a54c2bfba777798cd97862","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"hi","translated":"स्थिति","updated_at":"2026-06-26T21:32:39.899Z"} {"cache_key":"2e510a182ec18cbde97df26c8d5a4080bee638f2495c5de43e86d3782dcd17d5","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.steps.when","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"When","text_hash":"cf9c7aa24a26aac4f0ec4b6395cbfdcc055677c3dac87bd6af898bccd66d4e17","tgt_lang":"hi","translated":"कब","updated_at":"2026-06-26T21:36:59.582Z"} @@ -319,11 +341,13 @@ {"cache_key":"2ec4719cad63e61a4a376330f9d2127845802b464ef85b2fddb5de857aea4f88","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.loadMore","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Load more runs","text_hash":"627fcc156ad8a34716755bb53feca47c761b91b0edf23b93571d935cb3f2d02b","tgt_lang":"hi","translated":"और रन लोड करें","updated_at":"2026-06-26T21:37:23.206Z"} {"cache_key":"2ed768dea510d2d7dec3555a8319d58c98cfb153d755ee7906c85abcbcf1928b","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.toolResult","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Tool result","text_hash":"9bb620efa692f707a302a5f42464015a54c20843e2f76f18a1542626b886bb91","tgt_lang":"hi","translated":"टूल परिणाम","updated_at":"2026-06-26T21:35:26.182Z"} {"cache_key":"2ef7cd1159ecdfa841b88404ec51e4ff60de089aee5704a2ca89e08ee914aead","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"hi","translated":"समूह का नाम बदलें","updated_at":"2026-07-06T23:41:00.554Z"} +{"cache_key":"2f0dc59dfdfcbd5a289004f2e25e61d4ac6c131fece33d84d6372c05c515dcda","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"hi","translated":"इस प्लगइन को इंस्टॉल करने से पहले ClawHub चेतावनी की समीक्षा करें।","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"2f23215983b37c8bbe7291fd7e2e39eda1f6f43ef59018ff917f084122668391","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"hi","translated":"सेशन वर्कस्पेस लोड हो रहा है…","updated_at":"2026-06-26T21:36:39.137Z"} {"cache_key":"2f3d2df28d5c901dc5b376b3262befabe1600a37de0a671ed31431e5f73b8640","model":"gpt-5.5","provider":"openai","segment_id":"overview.connection.tailscaleDocsLink","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Docs: Tailscale Serve","text_hash":"331a0eb6bb5691842d5881802ac7756e67763d8687f2ea5d96d4d33b06700c6e","tgt_lang":"hi","translated":"डॉक्स: Tailscale Serve","updated_at":"2026-06-26T21:33:34.535Z"} {"cache_key":"2f5cf9d6c273b133634c9c50d61822a8e19711fb62644b0fad7e6e138086cd38","model":"gpt-5.5","provider":"openai","segment_id":"chat.selectors.clearSessionSearch","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Clear session search","text_hash":"7296bfd468e09713dd4b227ab939243e32ddcbcd7b43d8e1ea78ca79f9c60501","tgt_lang":"hi","translated":"सत्र खोज साफ़ करें","updated_at":"2026-06-26T21:36:30.561Z"} {"cache_key":"2f664c9bdc75e43114d5709e519812553bf734c1be5d97a57ced8f7d9060cab7","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"hi","translated":"सारांश: {summary}","updated_at":"2026-06-26T21:32:11.358Z"} {"cache_key":"2f84a77192431014248339643ef3c490a35e76bab77e647559dd719869a8c4e0","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.review","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"hi","translated":"समीक्षा","updated_at":"2026-06-26T21:34:03.457Z"} +{"cache_key":"2fad48d9efda8f8ef8947e605b0db3c36ad1aefb32789dc0e9a75978fe77b09b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"hi","translated":"ClawHub खोजें","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"2fdeb21925554e7c736b2445ec3a5156b2bbd69b9d7eb88798b3b52215c1e12f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.verbose","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Verbose","text_hash":"2cd57109145ab1cb603c7417e2c382756f332d0fc0f9a43b4d461f7d55f5a09f","tgt_lang":"hi","translated":"विस्तृत","updated_at":"2026-06-26T21:30:21.093Z"} {"cache_key":"300ebb470d7b3abb8336073df669393c01134c9e547bfb7b9901d746569f4d90","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"hi","translated":"असमूहित","updated_at":"2026-07-05T14:39:53.244Z"} {"cache_key":"30406724f47208e9cc4bed20ac647970fe98b393f96d36561b768e50c6fe8eaa","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.summaryWaiting","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"waiting","text_hash":"80cfa3e7f28dde4df64436b652230aff28d7779116d1369c21ef2bbf37261d71","tgt_lang":"hi","translated":"प्रतीक्षारत","updated_at":"2026-06-26T21:34:03.457Z"} @@ -331,20 +355,24 @@ {"cache_key":"3059e4589a53fa7155696b4242aff4612d7b945a1743378f9f7d63a696cc64e5","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.command","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"hi","translated":"Command","updated_at":"2026-06-26T21:37:46.380Z"} {"cache_key":"307e0adad2e2fcb3b2af125d6aab0b25143dc4f5cae61452dc7b06e75ffcf6b9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.minutesPlaceholder","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"min","text_hash":"1f6fa6f69d185e6086d04e7330361bf9001a3b8d0ce511171055dc34eb90c1c5","tgt_lang":"hi","translated":"मिनट","updated_at":"2026-06-26T21:30:15.460Z"} {"cache_key":"30a661d8dd4555d57289ef784a9fc7dab21bd4d57f27c99e8aa7a29ec601cff2","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.streakDay","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} day","text_hash":"a4d254870473ab599749406cae968f3d24c7da6d9082093cf43ee4317175fd2d","tgt_lang":"hi","translated":"{count} दिन","updated_at":"2026-07-09T11:27:28.426Z"} +{"cache_key":"30f565f52a26bb1a161447b3f8f0d9a564481f60cc44672d368a50559ee4df69","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"hi","translated":"प्लगइन","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"30ffb59bb6cae4005c01da15c12bddf3a5643781d8c6bb1b82aab35a8d29f822","model":"gpt-5.5","provider":"openai","segment_id":"languages.fr","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Français (French)","text_hash":"51d624360ae74f9507dda57a5b639a12ee70571f23dd7d954e7c53bdd85372c8","tgt_lang":"hi","translated":"Français (फ़्रेंच)","updated_at":"2026-06-26T21:36:47.054Z"} {"cache_key":"312d4bde926a9a667f923c2cc02eb5cce31dcd401129ac02933c94f37e404a63","model":"gpt-5.5","provider":"openai","segment_id":"cron.errors.cronExprRequiredShort","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Cron expression required.","text_hash":"dcd8b9471afc9f89d49a6279aba723d2f38dcd28f4df55045be674608930bea0","tgt_lang":"hi","translated":"Cron expression आवश्यक।","updated_at":"2026-06-26T21:38:17.792Z"} {"cache_key":"3136cce9ceefc60df6a1ea6e5546238e5bf76ed4218d8f85207b50fe8a56aefe","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"hi","translated":"अपडेट किया गया: {time}","updated_at":"2026-06-26T21:32:11.358Z"} {"cache_key":"317a9714f3789aab9c041a6c1e3862454d9c0cb27cfe56c7e366c3ad32e57d22","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.delivery","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Delivery","text_hash":"52bfe584a5fc450539e2aa651b990fa2415060492a243816ab2994292089c6fd","tgt_lang":"hi","translated":"डिलीवरी","updated_at":"2026-06-26T21:37:23.206Z"} +{"cache_key":"31d5e57f246cf36332043611f43db5f9352af95b8b51243a3a3358929de38755","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"hi","translated":"स्रोत","updated_at":"2026-07-10T04:28:25.445Z"} {"cache_key":"31f490256690c9e54893a601c4bddb82477f6e01d05971b8bf74d36a5c2402eb","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"hi","translated":"प्रस्तावों के लाइव स्किल्स बनने से पहले उनकी समीक्षा करें, उन्हें परिष्कृत करें और लागू करें।","updated_at":"2026-06-26T21:31:33.548Z"} {"cache_key":"321580a74727a0f1c1ca05a762183500e27c5ee9f0c2578b23c370273ab11a70","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.avgCost","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Avg Cost / Msg","text_hash":"3f7ab301fda8d9c6379d4b8f9519c9037507dfd50e86c33c3af34526d5d3b436","tgt_lang":"hi","translated":"औसत लागत / संदेश","updated_at":"2026-06-26T21:34:59.501Z"} {"cache_key":"32316fc0eb05beaa79b024cafd1acc259ced8cc4b19c53d037590042b4cb1bda","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.lightningAddress","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Lightning Address","text_hash":"4e62bd8335f08ccfa0e779e08ddb03cff55255bbef981335dd1ba25521c375ec","tgt_lang":"hi","translated":"Lightning पता","updated_at":"2026-06-26T21:29:59.416Z"} {"cache_key":"325a0b0989cfcec32cc8039ec37a34c197c2588c4f9d1a02a811cd4596671e80","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.authRequired.stepGenerate","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"If no token is configured, run openclaw doctor --generate-gateway-token on the gateway host.","text_hash":"6d1eae106bbcdaa7e1f99d992837e643506a2c593c225ca8a57caf3cd3474fdc","tgt_lang":"hi","translated":"यदि कोई टोकन कॉन्फ़िगर नहीं है, तो gateway होस्ट पर openclaw doctor --generate-gateway-token चलाएँ।","updated_at":"2026-06-26T21:35:43.732Z"} +{"cache_key":"325fccaf650e500efe49769e1f5abba48133c93204fae3264cfcc523d399268d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"hi","translated":"MCP सर्वर","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"326936c0a2dcf22a2a641c625a06fc0e1d0d0b5c507bc3906f231674de0def8a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.checkpoint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} Checkpoint","text_hash":"68cdc96ca56004e18961730551961cbaddab68733cb335a0c2a3be0f44fe1b2b","tgt_lang":"hi","translated":"{count} Checkpoint","updated_at":"2026-06-26T21:30:26.471Z"} {"cache_key":"3274d9daa5161fee2537224a45fdb08b03ba6e09143fa247e3a15b4e2650cff8","model":"gpt-5.5","provider":"openai","segment_id":"workboard.defaultAgent","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"hi","translated":"डिफ़ॉल्ट एजेंट","updated_at":"2026-06-26T21:32:11.358Z"} {"cache_key":"328585ede3ec81f47690ca21c6ddf5d1f246957166870885e68b181ce31bddd6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.compactionHistory","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Compaction history","text_hash":"cc9c4ee1ed1297d8e380e11a4526c3f5906a58bd263cd3294c6b95ec200e25b2","tgt_lang":"hi","translated":"कम्पैक्शन इतिहास","updated_at":"2026-06-26T21:30:26.471Z"} {"cache_key":"329716c7330241756a2a0b29b6d22f90666fc50314ca95abf37a8cc768433ff6","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.legendMore","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"More","text_hash":"d47d7cb0e4f8fd2be5ee07826694c18917d83ca77d0a01698582d05f432db996","tgt_lang":"hi","translated":"अधिक","updated_at":"2026-07-09T11:27:28.426Z"} {"cache_key":"32adbf34e3d2f22daf1d98ffa2b3bd73e12cc8ef2c009fe975fb424820e03c96","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Sessions","text_hash":"6fa3cbf451b2a1d54159d42c3ea5ab8725b0c8620d831f8c1602676b38ab00e6","tgt_lang":"hi","translated":"सत्र","updated_at":"2026-06-26T21:35:13.036Z"} {"cache_key":"32b99a0b647b8adc67031504cee108c4c5a256234cc6f738ff2ed008ccf72906","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.shown","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"hi","translated":"{count} दिखाए गए","updated_at":"2026-06-26T21:35:13.036Z"} +{"cache_key":"32cd2db594d241209510c45f2bae3b4685fe898385fedb4ed5f28bb0bddd362b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"hi","translated":"सक्षम","updated_at":"2026-06-26T21:37:06.965Z"} {"cache_key":"32fa6b1bc2791dca6d47a2873e053631df6f71e39664fd3af8a7930f0317a661","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.origin.stepAllowedOrigins","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Add this browser origin to gateway.controlUi.allowedOrigins.","text_hash":"5dcc3406e0ca77271f52b89fe2e69b49aab8582719c28880cd5729ad47b3fe92","tgt_lang":"hi","translated":"इस ब्राउज़र origin को gateway.controlUi.allowedOrigins में जोड़ें।","updated_at":"2026-06-26T21:36:08.721Z"} {"cache_key":"33006c7895462732d9dcd4956ac507652a185e81804cd1a881c14b51794825e9","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.hours","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Hours","text_hash":"21e8492938abc179410c21f3598f141c4c59a8bf2d3b4e475b7d83e10adfc00f","tgt_lang":"hi","translated":"घंटे","updated_at":"2026-06-26T21:37:38.564Z"} {"cache_key":"332ecbcf7d2edd9cb518b4a7dc5198d5d71909c3a1c31a7a58484576fdb88d49","model":"gpt-5.5","provider":"openai","segment_id":"agents.cronPanel.jobs","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Jobs","text_hash":"2f17a0f8d518e491c5a0c490b2c1991828dd87d173994ba40996e1da59d4e368","tgt_lang":"hi","translated":"जॉब्स","updated_at":"2026-06-26T21:30:49.011Z"} @@ -363,13 +391,16 @@ {"cache_key":"34693cd6bd0cfede32041fba11457189935f9ecccfd10b18e33c03bb313305f6","model":"gpt-5.5","provider":"openai","segment_id":"lazyView.retry","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Retry","text_hash":"942087cc2d41e01304b7195558d093d10c72af8e838c7556d6a02d471ee71852","tgt_lang":"hi","translated":"फिर से प्रयास करें","updated_at":"2026-06-26T21:29:59.416Z"} {"cache_key":"34795d15b4b8f1bb384f18382ee934af4ae26db9791fc2977a33ac85fb11c1bd","model":"gpt-5.5","provider":"openai","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"hi","translated":"तैयार असाइन नहीं किया गया","updated_at":"2026-06-26T21:32:33.484Z"} {"cache_key":"349bff518531a0aba12da68ad5da5392917cb88a6f7e27af64d633a7c511a458","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.skills","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Skills","text_hash":"66d0f523a379b2de6f8d5fba3a817ebc395f7bcaa54cc132ca9dfa665d1e9378","tgt_lang":"hi","translated":"कौशल","updated_at":"2026-06-26T21:33:34.535Z"} +{"cache_key":"34a0f5ed94cabfc19b7b65cc04c3732807a16b75fb2f7e982cf8b93f20445b46","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"hi","translated":"रिफ्रेश करें","updated_at":"2026-06-26T21:33:46.154Z"} {"cache_key":"34ae89e5e5e589f28972dd58fa3851ca16613144fd9fc20ca97e0016d5612fe7","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.stopTalk","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Stop Talk","text_hash":"13d193676d2360f82d70d8a3f9d964c348d618fc59562de2ab91c7930ae084c3","tgt_lang":"hi","translated":"Talk रोकें","updated_at":"2026-06-26T21:36:30.561Z"} {"cache_key":"34cc138f213b72f5e11f4d1de2fc4b754180aa5f201b18bc70c3808b4ec535a8","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.diary.older","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"hi","translated":"पुराना","updated_at":"2026-06-26T21:34:24.815Z"} {"cache_key":"34f1fb9413b39d1741bf92b80c5b8293620a293a1efdbbbabc2a1f1349827583","model":"gpt-5.5","provider":"openai","segment_id":"logsView.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Logs","text_hash":"ea2100dc89ae9fe21fa9b08ab1bf18662dca1e53a3eebd7d03afebcaf5d57515","tgt_lang":"hi","translated":"लॉग्स","updated_at":"2026-06-26T21:31:58.515Z"} {"cache_key":"35266f38bc6371dc772ccd0eb2d47845271b8df2f05f33ad5da694b96a6a164b","model":"gpt-5.5","provider":"openai","segment_id":"common.reload","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Reload","text_hash":"bdc090ec61e3fcfc65f469951dfe00f3f2ecfc6003c44deac8e05b7237092de6","tgt_lang":"hi","translated":"फिर से लोड करें","updated_at":"2026-06-26T21:29:19.678Z"} {"cache_key":"3544f2bdc4eb843e54290f692e3cdf8cad50d4049623857a8e9e4a67e3dc594c","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"hi","translated":"{count} वर्कर लॉग","updated_at":"2026-06-26T21:32:45.360Z"} +{"cache_key":"355cf1b4da245517d1659def46655ded0efa6953299059b7e2f90c304a63c68b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"hi","translated":"रोज़मर्रा का जीवन","updated_at":"2026-07-10T05:22:16.629Z"} {"cache_key":"3561d558ab951413448252c79eefe3446e93d98eb4381a48095e04540c1ad624","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.showArchivedTooltip","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Include archived sessions.","text_hash":"63efdebecf9e6329ec99dec54bc2515758ccf019aa6eefe48619356b17232223","tgt_lang":"hi","translated":"आर्काइव किए गए सेशन शामिल करें।","updated_at":"2026-06-26T21:30:15.460Z"} {"cache_key":"35710d25e4c16b9b0fcdd3103272ed71ba6b76067299b14d878a672ae1983392","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.attachFile","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Attach file","text_hash":"87fbe4fb79b1d700fa6166d7a503779c005919d2fa3c25988aa944aab751d17a","tgt_lang":"hi","translated":"फ़ाइल संलग्न करें","updated_at":"2026-06-26T21:36:30.561Z"} +{"cache_key":"35715b10869f547dc128f869f4badb5abc48a63047f4d639270fd527c80fb406","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"hi","translated":"काम हो रहा है…","updated_at":"2026-06-26T21:29:38.612Z"} {"cache_key":"357bbea88a37e9e8301589b223185cf9adddf150b6e49744facaeae8661923f8","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.cronOption","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Cron","text_hash":"dd9d24965dbedc026915308732b77c1af68dcf52d3c0ca2421b1fdb0d197aca1","tgt_lang":"hi","translated":"Cron","updated_at":"2026-06-26T21:37:38.564Z"} {"cache_key":"3592d3f606bc6c6e93c290934ac9d2b9170c45d4c9d86af46edf99aea5225030","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.timeoutHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Optional. Leave blank to use the gateway default timeout behavior for this run.","text_hash":"f9e62144427ba2922056e13ac5249dfa4690787efa68d2fe18a6e579b7fc9f9c","tgt_lang":"hi","translated":"वैकल्पिक। इस run के लिए gateway के डिफ़ॉल्ट timeout व्यवहार का उपयोग करने हेतु खाली छोड़ें।","updated_at":"2026-06-26T21:37:46.380Z"} {"cache_key":"35a7e8bdea3cfa05f91d669d69f51c927a9ed61611a413acd223e089cdf89257","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.model","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"hi","translated":"Model","updated_at":"2026-06-26T21:34:43.709Z"} @@ -385,7 +416,9 @@ {"cache_key":"36c9bb42561547d157d3702cf19c61916363a26316ea07c57507e7bcc9effc59","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.status.idle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Dreaming Idle","text_hash":"bb633a8129a7ecd9922ff32833ba5d6f74fff826bd83aa15af0aafc9ba8de863","tgt_lang":"hi","translated":"Dreaming निष्क्रिय","updated_at":"2026-06-26T21:33:54.151Z"} {"cache_key":"36f24a5c5903ee889297b4f541187fa9c38d0b305876a8040b6f3cf6467359c3","model":"gpt-5.5","provider":"openai","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"hi","translated":"बिना स्पष्ट एजेंट वाले कार्ड।","updated_at":"2026-06-26T21:32:18.718Z"} {"cache_key":"3713127b35c746e8bd137d122ce57bc4f2ef8b4d33c264642deefea3a29e9a57","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.whenHeading","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"When should it run?","text_hash":"272d37d4ef0408390f6b30ab3362cb5a85990c228cd26a176d5b7b3c337463b4","tgt_lang":"hi","translated":"इसे कब चलना चाहिए?","updated_at":"2026-06-26T21:36:59.582Z"} +{"cache_key":"371cbc9f98110a32a0a11456fb4e28db2e5959fca288caf146b68859b51a9dae","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"hi","translated":"{name} इंस्टॉल किया गया। बदलाव लागू करने के लिए Gateway को रीस्टार्ट करना आवश्यक है।","updated_at":"2026-07-10T02:25:41.019Z"} {"cache_key":"3754bb51c74fe8bb91cc9a7dc4dbf6e3dcd892be4699c347ba779894f8af1667","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.tool","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Tool","text_hash":"2e53bdcd0740867b597599e733c04a994f55fb17c89a61595183a001742e5705","tgt_lang":"hi","translated":"टूल","updated_at":"2026-06-26T21:35:26.182Z"} +{"cache_key":"377ff71f0101aa2491c9f87a452e6f805f718fdaa2dcee8c32bb7579a6a1672d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"hi","translated":"सत्यापित स्रोत","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"37a7b9c6410bcd4c90169d93d21474534821c314c04a5fd2f6fa4e538f0aca71","model":"gpt-5.5","provider":"openai","segment_id":"workboard.engineDisabledRuntime","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{agent} uses the {runtime} ACP runtime. Use default start for that session.","text_hash":"5a51973a498c27afdbbce6e423b4e17d59720f6596f1b9741ce0a55ca74f25a5","tgt_lang":"hi","translated":"{agent} {runtime} ACP रनटाइम का उपयोग करता है। उस सत्र के लिए डिफ़ॉल्ट स्टार्ट का उपयोग करें।","updated_at":"2026-06-26T21:32:25.929Z"} {"cache_key":"37c15a95b0d7e637f46b3b0f2b776f5aab296f36765f488163755d93de937571","model":"gpt-5.5","provider":"openai","segment_id":"nodes.binding.node","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"hi","translated":"नोड","updated_at":"2026-06-26T21:30:08.627Z"} {"cache_key":"37dcae8413c77868e2c1fc6c17a67ab1c9a6bfd90ab1afaa61c5a4bdd6b039d0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"hi","translated":"सत्र का नाम बदलें","updated_at":"2026-07-02T14:30:19.917Z"} @@ -426,6 +459,7 @@ {"cache_key":"3c83036aacb6b737b38423f59254862c5fe24e9e0bf7935fff1ddaa462b0538d","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobDetail.system","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"hi","translated":"सिस्टम","updated_at":"2026-06-26T21:38:12.145Z"} {"cache_key":"3c8f3e0a5020e92e9b479953ee510edf812c902f4d4c053e0daeb9532a170d27","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.statusTimeout","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Timed out","text_hash":"9718cc761cfd5810041ef007ae258fa1308b8487d0f30c5f36a442f8fe5f76c5","tgt_lang":"hi","translated":"समय समाप्त","updated_at":"2026-06-26T21:30:33.640Z"} {"cache_key":"3c9a45f95bf7740d5b2f0f41994055f8f861d8b883ff8ca56f6399326b8b3941","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"hi","translated":"कौशल: {skills}","updated_at":"2026-06-26T21:32:11.358Z"} +{"cache_key":"3ca95638a0bcc136efc71eadba38c5a21ecb77d9754bb61ed1f08a1816fab51e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"hi","translated":"अपने एजेंट को अतिरिक्त टूल देने के लिए Model Context Protocol सर्वर कनेक्ट करें। बदलाव नए एजेंट सेशन पर लागू होते हैं।","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"3cc55898ff4bf7f99b2408671ceff2b875983bde7a817ac4cd7b360bf5539138","model":"gpt-5.5","provider":"openai","segment_id":"cron.errors.systemEventTextRequired","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"System event text required.","text_hash":"b6a571210cc1c529ced733fc25d04ce3fa25c68673d841b33dca8aebcffe130d","tgt_lang":"hi","translated":"System event text आवश्यक।","updated_at":"2026-06-26T21:38:17.792Z"} {"cache_key":"3cc5efd60068c5a44592ad6d7c3b6a906a1a2169a3d56b70075a0de31666cbb2","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.whisperingVectorStore","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"whispering to the vector store…","text_hash":"44f8f2666f20599ad12e2e33ea95c6f37c8a2b422bf438d4bdb59e778ae6a527","tgt_lang":"hi","translated":"vector store से फुसफुसाते हुए बात की जा रही है…","updated_at":"2026-06-26T21:34:31.303Z"} {"cache_key":"3cc70693f91cd8a6d2247e00b0ccbb02e27cbad725ad1c10436cc1cbd07948e1","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.schedule","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Schedule","text_hash":"f4830a1dae2980447c716bd4b5779b7013575ef09f70ef4731457218792487b3","tgt_lang":"hi","translated":"शेड्यूल","updated_at":"2026-06-26T21:37:31.894Z"} @@ -437,9 +471,11 @@ {"cache_key":"3dd41b680824279c37541d336da54cb8fa99a395fc8f89298f05981fa3b471af","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.noResults","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No results","text_hash":"a43619f321175f57a27f2a38da381fd367f6806093031b1f82960bcbf542729d","tgt_lang":"hi","translated":"कोई परिणाम नहीं","updated_at":"2026-06-26T21:33:40.484Z"} {"cache_key":"3e0e28f501e36fec513dd65b9b30af566d507557225523bd916fceb7b4a5bd69","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statPeakDay","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Peak day","text_hash":"c3a0833ac4b7cd06e29368f323fef10520637658605aa35de342df7bac6357f1","tgt_lang":"hi","translated":"सर्वोच्च दिन","updated_at":"2026-07-09T11:27:28.426Z"} {"cache_key":"3e35b43c8619567580cc4ecc4e71b8cdd9d1a8499f5d4751f7d1d464479909b9","model":"gpt-5.5","provider":"openai","segment_id":"languages.zhCN","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"简体中文 (Simplified Chinese)","text_hash":"e34fcc9872e46b54fd22bd89aae921332644df9ff58d7778cba9c4007dbeafb2","tgt_lang":"hi","translated":"简体中文 (सरलीकृत चीनी)","updated_at":"2026-06-26T21:36:47.054Z"} +{"cache_key":"3e377b99f5fdc0f6bb6d61d6ce897a085299b0b67a93cc0513a4d514057f91ac","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"hi","translated":"श्रेणी","updated_at":"2026-07-10T04:28:25.445Z"} {"cache_key":"3edf48ba7dc23fae423f7bcfd877b8178145f41ef940f3df74f5c10346b131f0","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"hi","translated":"कनेक्टेड","updated_at":"2026-06-26T21:29:19.678Z"} {"cache_key":"3ee30074cb227d8aad5719db18f8d3a87c8d2df48d541ddee3f4672cef548280","model":"gpt-5.5","provider":"openai","segment_id":"agents.setDefaultTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Set as the default agent","text_hash":"f588662bdbbb9073d53dee24c3f99bfcbdd13bd639ed73092d2ae59272c19542","tgt_lang":"hi","translated":"डिफ़ॉल्ट एजेंट के रूप में सेट करें","updated_at":"2026-06-26T21:30:41.032Z"} {"cache_key":"3f114e48f95761d517f6d6bb7863a663b3082e2e379785b84eeacac2a0591678","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeTaskLinked","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"task linked","text_hash":"fc7de1e7d6661196a29adcb9b7fa2f8aabf60bd1c6c72cb03223b3342df03e91","tgt_lang":"hi","translated":"टास्क लिंक किया गया","updated_at":"2026-06-26T21:32:45.360Z"} +{"cache_key":"3f5ebb01801d8438ffd0b114c121037dfa936e24cdf25e281e71d9b06479bbb2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"hi","translated":"सक्षम करें","updated_at":"2026-06-26T21:38:12.145Z"} {"cache_key":"3f66067988c4f4a69517a4a799c532f651411ff5255c0460da8b1aca471fa779","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.pairing.roleTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Role upgrade pending","text_hash":"acee64e96b4d2288465df5211db805a9fe611d37f7f69489cefcae8b1f4528bf","tgt_lang":"hi","translated":"Role upgrade लंबित है","updated_at":"2026-06-26T21:35:56.265Z"} {"cache_key":"3f6ac0d782b781187a29e3b5a6afca1258dd038d803e88ca9e34807b6eadddca","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.howHeading","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"How should it work?","text_hash":"be35ecda9f6f7b651ba249b3f5cd27d5636347509afcf80b91e82a0d5043adcc","tgt_lang":"hi","translated":"यह कैसे काम करना चाहिए?","updated_at":"2026-06-26T21:37:06.965Z"} {"cache_key":"3fa95c7a790c85526357c960a33f18e771a894719e322568f222e39bbd2f1b05","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"hi","translated":"पहली मिलती-जुलती फ़ाइलें दिखाई जा रही हैं। परिणामों को सीमित करने के लिए खोज को परिष्कृत करें।","updated_at":"2026-06-26T21:36:47.054Z"} @@ -458,10 +494,13 @@ {"cache_key":"41767babb85fe40e0e03a1e0b1f90a2f1c614104e83f55bbb80011d40a917f84","model":"gpt-5.5","provider":"openai","segment_id":"debug.eventLogTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Event Log","text_hash":"ad46380cee0c03bd2d8f9c6d0d91b724118c796a9d9eb5f167fc8da4d7cfd2b7","tgt_lang":"hi","translated":"इवेंट लॉग","updated_at":"2026-06-26T21:31:12.170Z"} {"cache_key":"419ee5e95ea7ba8c18a3609cedf203ba52df64f8100f8e2d0a6fa887f420aa5d","model":"gpt-5.5","provider":"openai","segment_id":"workboard.lifecycleIdleDetail","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No active run","text_hash":"87e6c43b902cea706f76dc5dc51dea5b5e141edd20e1c0a8a31e6850fb60833b","tgt_lang":"hi","translated":"कोई सक्रिय रन नहीं","updated_at":"2026-06-26T21:32:52.647Z"} {"cache_key":"41ac496687c03da4160235ec67ba2be2d7a6fdd5f61c7b7db09299cdb6484565","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeArtifacts","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"hi","translated":"{count} आर्टिफैक्ट","updated_at":"2026-06-26T21:32:45.360Z"} +{"cache_key":"41b6378a9b79d2261531459fa508f0f8da629c1dc10de5018cab359b4e35528e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"hi","translated":"आधिकारिक प्लगइन्स","updated_at":"2026-07-10T02:25:14.442Z"} +{"cache_key":"41d1e418f61df489496b11c3e88acf576f7cd024c9fe79c560073186c63ae311","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"hi","translated":"शामिल","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"428554e6bbf20a66affcbb30c8977d3384a3eac83dea47adb209f1b59175e898","model":"gpt-5.5","provider":"openai","segment_id":"activity.session","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"hi","translated":"सत्र","updated_at":"2026-06-26T21:31:52.012Z"} {"cache_key":"42b0c846b65dbf72c762c3a21b080cc4c80bf519f66f259e648fcd90bc331728","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"hi","translated":"{count} पढ़े गए","updated_at":"2026-06-26T21:36:47.054Z"} {"cache_key":"43238d4c4675253ff1400abe3b9991c4c7fa5a3cb2af4bc6fdd05be4cd284ce1","model":"gpt-5.5","provider":"openai","segment_id":"channels.generic.subtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Channel status and configuration.","text_hash":"af598d2e3f8e7a9dcacdc23e2865c738ceced7ac9c98bb19ff0fde64e76d5be0","tgt_lang":"hi","translated":"चैनल स्थिति और कॉन्फ़िगरेशन।","updated_at":"2026-06-26T21:29:38.612Z"} {"cache_key":"432f28ba0e5e1231a8df80ba867ab8b41362a9dbee64020e3b9a5bdd16cc7d6c","model":"gpt-5.5","provider":"openai","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"hi","translated":"डिफ़ॉल्ट एजेंट","updated_at":"2026-06-26T21:32:18.718Z"} +{"cache_key":"43333c61bcae7c68a078fc92d0f0ee0cc6b1ce185e1be5a55791e0df1bdd510b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"hi","translated":"वर्कस्पेस","updated_at":"2026-06-26T21:30:58.804Z"} {"cache_key":"433fa77f3a35c15206cec24c06c3ec99d42a1024ce286174e6792e7da77b0bcd","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.seconds","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Seconds","text_hash":"381a8e9699052f3a958001510611a9634e7cef8aa6a1421cb7e7f6e119f91edc","tgt_lang":"hi","translated":"सेकंड","updated_at":"2026-06-26T21:38:06.735Z"} {"cache_key":"434403180e2ebdf285747ec5742cfe2e530258e445c582aee04628cdc4fa16d3","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.emptyTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No scheduled jobs yet.","text_hash":"1a9aea39a9d508aa68ec86002fb75bf6636358775b5a223e971471561dc5abc3","tgt_lang":"hi","translated":"अभी तक कोई शेड्यूल किया गया जॉब नहीं है.","updated_at":"2026-06-26T21:37:15.387Z"} {"cache_key":"43512cc2535b1837feff0bab56b8fe161523e5fc2a3df390089c1d5622d454a9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.loadingCheckpoints","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Loading checkpoints…","text_hash":"28f4a96c140d1effc48388a1f67e650dfcf892df7003d38cd0ebeab22d65ba34","tgt_lang":"hi","translated":"चेकपॉइंट लोड हो रहे हैं…","updated_at":"2026-06-26T21:30:33.640Z"} @@ -473,6 +512,7 @@ {"cache_key":"4468dd80297b7f3f6fcbfec43abfd69f66af7cba9a05fb1a034845da92bedf8a","model":"gpt-5.5","provider":"openai","segment_id":"login.showPassword","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Show password","text_hash":"6aeaa6a53d09dcad071fdda6280b1e7c42aa164cd0514304ff162e7da440ffaa","tgt_lang":"hi","translated":"पासवर्ड दिखाएँ","updated_at":"2026-06-26T21:35:43.732Z"} {"cache_key":"44884b95fd46ad557a2501ab2c1426f40b5fecd2ccf7396f80d0a42a7d9164a7","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolRun","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} run","text_hash":"269b72554d7e530ba9a8a05270baba9af1ea6a9f02bb4889bf75ef0b3bb20c44","tgt_lang":"hi","translated":"{count} रन","updated_at":"2026-07-09T11:27:33.869Z"} {"cache_key":"44c263d11e1b16650bfaeb4955c204f196d9bd1e0967544b245828fb2ef02988","model":"gpt-5.5","provider":"openai","segment_id":"usage.common.emptyValue","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"—","text_hash":"bda050585a00f0f6cb502350559d75532ae3b244c9498b996e7c5df2d98dfc8d","tgt_lang":"hi","translated":"—","updated_at":"2026-06-26T21:34:31.303Z"} +{"cache_key":"44d173ab241a76721386fb10f606c89028dca85f9ec8de55d820acc3809b3c7a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"hi","translated":"वन-क्लिक MCP सर्वर","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"450d4b80c1dd754bb4e1b49f83664c355a80075f480cac183b193e3eaf089688","model":"gpt-5.5","provider":"openai","segment_id":"workboard.live","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"live","text_hash":"247610f4dedd4ab7247d07dbda19c81ca9817f85820742cad49d407ffae9e4ed","tgt_lang":"hi","translated":"लाइव","updated_at":"2026-06-26T21:32:39.899Z"} {"cache_key":"452cbd90fb12f9f80f6bf6248ce2718559f8a1b26c66bd613abbaa8b3dd015d9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"hi","translated":"नए समूह का नाम","updated_at":"2026-07-05T14:39:53.244Z"} {"cache_key":"453dab1bd9f815d50e2ca5168fdab3a5e1805d9c18c64a66cb2871bcdea064cc","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.schedules.weekly.label","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Weekly","text_hash":"2975132481a7a6957cfa95055d04e706f21f1a613f448d0a17463f2eacca4636","tgt_lang":"hi","translated":"साप्ताहिक","updated_at":"2026-06-26T21:36:59.582Z"} @@ -491,6 +531,7 @@ {"cache_key":"4655bbf79cba7eab9578f835631e6c24348c54f987cf20408b373ecdf298a866","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.channel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"hi","translated":"चैनल","updated_at":"2026-06-26T21:37:57.526Z"} {"cache_key":"46647e64e32dd11b3ec7b02d8c87af0b47e6caa59276b7519a30c0bcde0ba97c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"hi","translated":"पिन किया गया","updated_at":"2026-06-26T21:34:37.383Z"} {"cache_key":"4677042df4f414e8266008d2317415b07282a965faf81d510cbbb949bb77a5ef","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.tool","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Tool","text_hash":"2e53bdcd0740867b597599e733c04a994f55fb17c89a61595183a001742e5705","tgt_lang":"hi","translated":"Tool","updated_at":"2026-06-26T21:34:43.709Z"} +{"cache_key":"46d00c9f163b4f0c5053f795903bee668be3f4ebf0b7ca0fdfa3b20233464f1c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"hi","translated":"समस्याएँ","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"46ddd616fb81810a8d4e1332c5116ab5109331ee9f14b04d1c0c9ca80070c305","model":"gpt-5.5","provider":"openai","segment_id":"activity.visibleCount","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{visible} of {total}","text_hash":"9ba4e8a044fb7345bfed5e198ae4d10bcf326b845d2cecc7459c6739a81588af","tgt_lang":"hi","translated":"{total} में से {visible}","updated_at":"2026-06-26T21:31:44.582Z"} {"cache_key":"46dfb525ad3a9827dd206968e31af4342b576e1a06f9cfc7beba37a3b45f30d8","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobState.status","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"hi","translated":"स्थिति","updated_at":"2026-06-26T21:38:12.145Z"} {"cache_key":"47063e7a0fb876defe62abec64781498b64fd98b92286041a2ae1e7e9e2c4208","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.spend","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Usage","text_hash":"8d59829c1e15afe1a7fae93e8e5e32d8511bec5fd598a09f4fea6033b31e8a66","tgt_lang":"hi","translated":"उपयोग","updated_at":"2026-06-26T21:31:23.820Z"} @@ -498,6 +539,7 @@ {"cache_key":"473dbe0c7e807538580696ab158adf18118f0fb581d53adb3c2cbc79f7f8a919","model":"gpt-5.5","provider":"openai","segment_id":"workboard.disabledHelpStart","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Workboard is disabled. Enable","text_hash":"10a5b9ffaec507bdc3516021c98c28fa81dfeca9f2dfddcbf3d65e19e0bb52cd","tgt_lang":"hi","translated":"Workboard अक्षम है। सक्षम करें","updated_at":"2026-06-26T21:31:58.515Z"} {"cache_key":"47467ca97ece424e64ccf36d5af810bc355254e156ee6eb123def9869349f0eb","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventClaimed","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Claimed","text_hash":"ddcd2779294a61f056090b2bbc47444816ff791ed0cf9ec295821e82a384ef81","tgt_lang":"hi","translated":"क्लेम किया गया","updated_at":"2026-06-26T21:33:00.304Z"} {"cache_key":"477ee018839037fceaa7d342343f2fc55ea21246d522212fa5f37215dc0a8c14","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.searchConversation","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Search conversation","text_hash":"42c60071a9546a4a8e15a97ec5037957203d4a0e35e23cbc52664fc7bb189f61","tgt_lang":"hi","translated":"वार्तालाप खोजें","updated_at":"2026-06-26T21:35:33.329Z"} +{"cache_key":"47b7f279a62480fb8c03518dad2f53e29d67896625edfc3c174cf4bf4f5a87fc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"hi","translated":"ClawHub खोजें","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"47cf57099675ed839a88424aab2957369426601611f05cecca17e76a3734162d","model":"gpt-5.5","provider":"openai","segment_id":"chat.welcome.hintAfterShortcut","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"for commands","text_hash":"ac0118309984f4848096ed87ecb0f402984b15d82ad8c47ebd183dabc57c7e3c","tgt_lang":"hi","translated":"कमांड के लिए","updated_at":"2026-06-26T21:36:23.330Z"} {"cache_key":"47de2d3f07212729b4a3d0bb0b80c269cff53766040488923b257de4c0376a64","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.hideSessionDetails","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Hide session details for {count}","text_hash":"b087cfae8608379df7c7cbb35354d004b7b2f8b457b37ab578d7fd0f9e6a6798","tgt_lang":"hi","translated":"{count} के लिए session details छिपाएँ","updated_at":"2026-06-26T21:30:26.471Z"} {"cache_key":"4821b1e51a26abc7eb30cfebf5d2c52e24f702e856480acbf9ba3653c5412482","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"hi","translated":"ऑर्केस्ट्रेशन","updated_at":"2026-06-26T21:33:07.229Z"} @@ -511,6 +553,7 @@ {"cache_key":"499506930a580bcd2cd34bc579c6e07f224efb7b302a181e2ef4a355890bdeff","model":"gpt-5.5","provider":"openai","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"hi","translated":"15s","updated_at":"2026-06-26T21:32:33.484Z"} {"cache_key":"499bd5b15833851596d9d720f6c9f207f80308098fd6d09c5899a77e6da3bff9","model":"gpt-5.5","provider":"openai","segment_id":"debug.status","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"hi","translated":"स्थिति","updated_at":"2026-06-26T21:31:05.913Z"} {"cache_key":"4a0aafe2d72ff79a544362f0c2230828b8511f7bce23df5f36062a3a2b19e927","model":"gpt-5.5","provider":"openai","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"hi","translated":"संशोधन अनुरोध प्रस्ताव के वर्कशॉप सेशन के बजाय वर्तमान चैट सेशन को भेजें।","updated_at":"2026-06-26T21:31:44.582Z"} +{"cache_key":"4a3d3f26f39890d6b704bd1f7483077120a2f7cf48c1a435eea286799fed7de5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"hi","translated":"बंद करें","updated_at":"2026-07-10T04:28:25.445Z"} {"cache_key":"4a535c694d9fec155732046ff88b8f7f7df6012c25e9345f706598e5f7303cf8","model":"gpt-5.5","provider":"openai","segment_id":"common.lastInbound","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Last inbound","text_hash":"2df9c4ccfa36d15b18ab6a0d9268cc247a28626bda9566d4aecc2c3285f9c5b6","tgt_lang":"hi","translated":"अंतिम इनबाउंड","updated_at":"2026-06-26T21:29:32.270Z"} {"cache_key":"4a608a57f5babf8d468be455df953d965ec67962baccda9b55768aa3bfdb60ae","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.runtime","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Runtime","text_hash":"1093115897879aa3ad9511a1dc2850929cfb60ba45ec741605f69f5d20203472","tgt_lang":"hi","translated":"रनटाइम","updated_at":"2026-06-26T21:30:33.640Z"} {"cache_key":"4a6250374f8525275f1b919eee546e51498a66bbc6194012c8fe17120e075fda","model":"gpt-5.5","provider":"openai","segment_id":"tabs.communications","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Communications","text_hash":"919a92533fbe1d8129cc12e67ce06b13c83f1cc619b4e0b2088bbd2d4cc9583c","tgt_lang":"hi","translated":"संचार","updated_at":"2026-06-26T21:31:23.820Z"} @@ -529,6 +572,7 @@ {"cache_key":"4be7468e7d6fb4a8b4e6b787f11c96c1e934e62b8b4a1a95ddce8350241b73fe","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"hi","translated":"वर्कस्पेस पाथ","updated_at":"2026-06-26T21:36:39.137Z"} {"cache_key":"4c0571f4fb4a5f79c610293f29dce3d580a75ce031bef955e6e346d030cbe52b","model":"gpt-5.5","provider":"openai","segment_id":"agents.tabs.channels","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"hi","translated":"चैनल","updated_at":"2026-06-26T21:30:41.032Z"} {"cache_key":"4c4da8b0414951d300aada4e46adbda0980983db0ef92be93cecabcc832d0b2d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.offExplicit","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"off (explicit)","text_hash":"f1351f70a8c211140022d7dfe6a9908e38329fe93ac90e9c3a2bde2677f44520","tgt_lang":"hi","translated":"बंद (स्पष्ट)","updated_at":"2026-06-26T21:30:21.093Z"} +{"cache_key":"4c7eaae5eeec99ce5b373dbb99f3b25bbf80e5e1c17b5a80259a4eeebad10f40","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"hi","translated":"Commit hash कॉपी किया गया","updated_at":"2026-07-10T09:47:11.706Z"} {"cache_key":"4cf62465548bc83380cae7a73aa4b97fce3b46ae756ef05f13bb95c9431b14b4","model":"gpt-5.5","provider":"openai","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"hi","translated":"कॉन्फ़िगर किए गए डिफ़ॉल्ट एजेंट को स्पष्ट रूप से असाइन किए गए कार्ड।","updated_at":"2026-06-26T21:32:18.718Z"} {"cache_key":"4d05a87594e4e835cee2ebdb954d31292508385b303d1853224e167ed351a83f","model":"gpt-5.5","provider":"openai","segment_id":"usage.empty.hint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Select a date range and click Refresh to load usage.","text_hash":"4dcf5dc94773068c4f25aea20473dffbbd254ea813f8890bd5bf233df13614a5","tgt_lang":"hi","translated":"उपयोग लोड करने के लिए दिनांक सीमा चुनें और Refresh पर क्लिक करें।","updated_at":"2026-06-26T21:34:51.300Z"} {"cache_key":"4d4682d2381d640bd1081e8fbf5bcf33bd869d1469886d4bd535042402e542f4","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.deny","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Deny","text_hash":"05a2d7332eb9d8bf164487c743a2e93c21b16bb2061a93e3ee2ceb508eadb753","tgt_lang":"hi","translated":"अस्वीकार करें","updated_at":"2026-06-26T21:31:18.653Z"} @@ -545,11 +589,15 @@ {"cache_key":"4e18d60ff15d1eb715a6c7f5f89efbccd0771a082537372e77bf0610af9d0263","model":"gpt-5.5","provider":"openai","segment_id":"agents.context.runtime","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Runtime","text_hash":"1093115897879aa3ad9511a1dc2850929cfb60ba45ec741605f69f5d20203472","tgt_lang":"hi","translated":"रनटाइम","updated_at":"2026-06-26T21:30:41.032Z"} {"cache_key":"4e45d8d0a61fefebe548979379426ecbdebcb2a0bd2ed74ba40a1f66f7e898b7","model":"gpt-5.5","provider":"openai","segment_id":"usage.mosaic.noTimelineData","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No timeline data yet.","text_hash":"56999faaea449cab870229050c84ae72fff4317101442b228bd4ef6df778adbe","tgt_lang":"hi","translated":"अभी तक कोई टाइमलाइन डेटा नहीं है।","updated_at":"2026-06-26T21:35:33.329Z"} {"cache_key":"4e5b995127ce7922ad24e1a660fb84b571072e24f4f6ed31b58d0b029c40f8ba","model":"gpt-5.5","provider":"openai","segment_id":"activity.entrySummary","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{argumentSummary}","text_hash":"d59968bd07c9304c77e9972265ada2b120e8f3eeda18072c254760c1cf49efb1","tgt_lang":"hi","translated":"{argumentSummary}","updated_at":"2026-06-26T21:31:52.012Z"} +{"cache_key":"4e64139b7169c79001df4dbdda7d650dabe712b749e5c7c89ee9614fb3af0e57","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"hi","translated":"Plugin ID","updated_at":"2026-07-10T04:28:25.445Z"} {"cache_key":"4e6df303c19198203bf6a9f833da77bcec941f65f94fb7f7d2f7fafefc643c05","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.noSessions","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No sessions found.","text_hash":"e5ceb296fb28c05c8969bc29d1cf4ba599004612c035868a2ad2bb7ff3d223f2","tgt_lang":"hi","translated":"कोई सत्र नहीं मिला।","updated_at":"2026-06-26T21:30:21.093Z"} {"cache_key":"4e716dc0ba67eb79d85251186bc07048593ab549872b93824ef5b1175cd04c3a","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.reset","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Reset","text_hash":"daee7606b339f3c339076fe2c9f372a3ff40c8ee896005d829c7481b64ca5303","tgt_lang":"hi","translated":"रीसेट करें","updated_at":"2026-06-26T21:37:15.387Z"} {"cache_key":"4ea325e95679af859c7c8a6b7061d8e08afa1f14b54e1fc8c688df5a59efd87e","model":"gpt-5.5","provider":"openai","segment_id":"tabs.cron","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Cron Jobs","text_hash":"043d5c96a8cd2805d6743faef29eaa7deb83ff3ed45f8cd42df1b75c257f8d65","tgt_lang":"hi","translated":"Cron Jobs","updated_at":"2026-06-26T21:31:23.820Z"} +{"cache_key":"4ee0371ecb178c375b2623b4f3dbe1ea423e5289c52743c52f0b8ce49e1aa1cd","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"hi","translated":"Control UI","updated_at":"2026-07-10T09:47:11.706Z"} {"cache_key":"5021d52f2124de274e87c9eab9dd424e7ac342d7178756abbf452c52d278faeb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.globalTooltip","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Include global sessions.","text_hash":"d7e84378e823b8b8a09d445cf921ce904c257fef554a573c023e9355b5f9fdf2","tgt_lang":"hi","translated":"ग्लोबल सेशन शामिल करें।","updated_at":"2026-06-26T21:30:15.459Z"} +{"cache_key":"5024d4c75f8638c1fb65176a11c75ca4719ce28206a0c7d47ce3f5241f59fe28","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"hi","translated":"{name} जोड़ा गया। नए एजेंट सत्र इसे तुरंत उपयोग कर सकते हैं।","updated_at":"2026-07-10T05:22:16.629Z"} {"cache_key":"504ac27656e676498395f535354b907cce0e6070720805585ab71d361039eaec","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dependenciesBlockedTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Waiting on dependencies: {parents}.","text_hash":"50fb8f9b1326b69bd67d25583ddb4f70b9d75ae6e3ff8a9056a9361daa4b7d8b","tgt_lang":"hi","translated":"निर्भरताओं की प्रतीक्षा की जा रही है: {parents}।","updated_at":"2026-06-26T21:32:25.929Z"} +{"cache_key":"50f7a2117b8ee21b8e213552d2d0dad43daab249e380e94cfe384dd26012d7b0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"hi","translated":"{name} कार्रवाइयाँ","updated_at":"2026-07-10T04:28:25.445Z"} {"cache_key":"511b5d73bbf44680c14cc3394937f76e8671f26e391f8976171db5174af0f6da","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.delivery.isolated.label","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Independent session","text_hash":"9b817b2773abd13b8de9a8b7c06fec6b99d75a8a234a891ab49c2343325f70d5","tgt_lang":"hi","translated":"स्वतंत्र सत्र","updated_at":"2026-06-26T21:36:59.582Z"} {"cache_key":"512ee10d9769f13aa4ddb286de5d617eab162474e29f33635748207ccb2adee3","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobList.remove","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"hi","translated":"हटाएँ","updated_at":"2026-06-26T21:38:12.145Z"} {"cache_key":"51433440cdb9ad26c252d8c670f01d019948cf45ee5555a9ce2b0e4b2c1d0a03","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.cancel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"hi","translated":"रद्द करें","updated_at":"2026-06-26T21:38:06.735Z"} @@ -565,6 +613,7 @@ {"cache_key":"535bfa8a3aed92662a32643dd8ec553a5c36747eba9a748f4a828ad96a8ec01e","model":"gpt-5.5","provider":"openai","segment_id":"chat.queue.retryQueuedMessage","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Retry queued message","text_hash":"489a76e90c3987d1059e3f84967a6b158f8bdcea2a916e5346537af74c5dc90e","tgt_lang":"hi","translated":"कतारबद्ध संदेश का पुनः प्रयास करें","updated_at":"2026-06-26T21:36:30.561Z"} {"cache_key":"53694f4dd4af3c296a72224e2c0428df2c817ba9d2e6a396ce4f8057073df7bf","model":"gpt-5.5","provider":"openai","segment_id":"logsView.exportButton","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Export {label}","text_hash":"50b12f90f821522131afebaeff51bb079a8dbbc4c068fe1a3a9e70026d411ac9","tgt_lang":"hi","translated":"{label} निर्यात करें","updated_at":"2026-06-26T21:31:58.515Z"} {"cache_key":"53d606bc52dd731a8df3c9245e089d7e5d2d6a4081a785274a6a87e8b1f4f84c","model":"gpt-5.5","provider":"openai","segment_id":"chat.queue.retry","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Retry","text_hash":"942087cc2d41e01304b7195558d093d10c72af8e838c7556d6a02d471ee71852","tgt_lang":"hi","translated":"पुनः प्रयास करें","updated_at":"2026-06-26T21:36:30.561Z"} +{"cache_key":"53e119974eb09be1f33a925d12ef15e722696af2530b14208be260a84775635b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"hi","translated":"इंस्टॉल हो रहा है…","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"542bb3b468f52d523fbd1e14b0f4c3a0b6fd0808628f0388ce31ba1aa553e7ed","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"hi","translated":"उच्च","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"5451854f5de0f4c408560e19e0a1a26ca9ad67fe107a7fa57f9802cdc51602f9","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.sortSignals","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Strongest support","text_hash":"7a78c39506cf7151ca2ccb1b378c3c35e0fb551c4d15aea0c404e86de10f6244","tgt_lang":"hi","translated":"सबसे मजबूत समर्थन","updated_at":"2026-06-26T21:34:03.457Z"} {"cache_key":"5499c70ac6286c1d4fdf73a1b46eaf9001f6857bb7406a1ceec8827c82bb5ace","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.insecure.stepLocalCompat","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"For local token-only compatibility, set gateway.controlUi.allowInsecureAuth: true.","text_hash":"027ab46d3c93ef0e616da424293e30c762ce6f1686dc7eda6d68536ed0aedf00","tgt_lang":"hi","translated":"स्थानीय token-only संगतता के लिए, gateway.controlUi.allowInsecureAuth: true सेट करें।","updated_at":"2026-06-26T21:36:08.721Z"} @@ -582,20 +631,23 @@ {"cache_key":"56b73e1994083d06fa37be073217fd5870a3b0596983248b13da492846fc1e09","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.compaction","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Compaction","text_hash":"a0ade140bc8e408639e51492b949bc4d31641625ef070015b5d4a5e92ef0edb0","tgt_lang":"hi","translated":"कॉम्पैक्शन","updated_at":"2026-06-26T21:30:15.460Z"} {"cache_key":"57013fad964967a27f1e9795e45a94f8b90ebbc05e029a3365d6e56a4c6e66ab","model":"gpt-5.5","provider":"openai","segment_id":"agents.context.workspace","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"hi","translated":"वर्कस्पेस","updated_at":"2026-06-26T21:30:41.032Z"} {"cache_key":"5722db2f75587e0123043289f99d7ca4dc24646b1ab12197142d1c6deb906830","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.refresh","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"hi","translated":"रीफ़्रेश करें","updated_at":"2026-06-26T21:37:06.965Z"} +{"cache_key":"572bb345dddb5136a7f17d90385110b24c4347402cfb90b191356811e18e51cd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"hi","translated":"{name} अक्षम किया गया। बदलाव लागू करने के लिए Gateway को रीस्टार्ट करना आवश्यक है।","updated_at":"2026-07-10T02:25:41.019Z"} {"cache_key":"57410ac2886b33f63e560dc71622b059823df53186b366d8d2311d6ea8c25e16","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"hi","translated":"थ्रेड","updated_at":"2026-07-09T10:01:43.755Z"} {"cache_key":"575e5efd5663c97b00a4266fb5c055753c89109f23aea99845ed4f3a73466d21","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.noModelData","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No model data","text_hash":"2ea49a2ede0e209909d635b8d54ae10a4d85b76db4119f638c76a74f470a5960","tgt_lang":"hi","translated":"कोई मॉडल डेटा नहीं","updated_at":"2026-06-26T21:35:13.036Z"} {"cache_key":"578714c2646a5684d3bc816589e4083cfbdb8a95fee5fc239e25f663cdc52bf7","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.authRequired.stepPaste","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Paste the token from openclaw dashboard --no-open or enter the configured password.","text_hash":"d65aea1772b928b5eb212e6c4c0481b32cbaf6e4d492b32d6c970592e75490f1","tgt_lang":"hi","translated":"openclaw dashboard --no-open से टोकन पेस्ट करें या कॉन्फ़िगर किया गया पासवर्ड दर्ज करें।","updated_at":"2026-06-26T21:35:43.732Z"} {"cache_key":"579c6e13f97a3e62c2140d24cfba4d1e6e2c4b51412122523cd1aceb457d0fb5","model":"gpt-5.5","provider":"openai","segment_id":"usage.query.apply","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Filter (client-side)","text_hash":"77e09b6867cffeb5bdf24c22b34dfe5eca471bf52337bfc8c372e3cead606eae","tgt_lang":"hi","translated":"फ़िल्टर (client-side)","updated_at":"2026-06-26T21:34:43.709Z"} +{"cache_key":"57abdbef31bb47ef9b657bd7518bd01291eb2af406c15a5b6ed591c2eb74eefb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"hi","translated":"वैश्विक","updated_at":"2026-06-26T21:30:08.627Z"} {"cache_key":"57b8953e0e5e58f1e5a353d49add08b97a1b3d66757c194d6f9896acf2691cc5","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.scene.working","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"hi","translated":"काम हो रहा है…","updated_at":"2026-06-26T21:33:54.151Z"} {"cache_key":"57f9286c4ad88c55f615f323058ba452f788961549c5e2e121397ec558f20515","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.stats.grounded","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Grounded","text_hash":"5b6f73f04fe1a6af2dc43bebb45478862b0bd1fe079eed12f8bc2000a59bf68c","tgt_lang":"hi","translated":"ग्राउंडेड","updated_at":"2026-06-26T21:34:11.503Z"} {"cache_key":"584d0907e670a30f4244fedb4f048f4ffdc76a041590b3fc2085924cf16016ae","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.insecure.stepHttps","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Use HTTPS/Tailscale Serve, or open http://127.0.0.1:18789 on the Gateway host.","text_hash":"318ea190256bb07401ee70f48d87d81642274431273a7f32460f0768dafc2569","tgt_lang":"hi","translated":"HTTPS/Tailscale Serve का उपयोग करें, या Gateway होस्ट पर http://127.0.0.1:18789 खोलें।","updated_at":"2026-06-26T21:36:08.721Z"} {"cache_key":"585529ce6b84ddc302066f12fdbc6ead9c9e0e46eeda96b263c9168445053213","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.staggerPlaceholder","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"30","text_hash":"624b60c58c9d8bfb6ff1886c2fd605d2adeb6ea4da576068201b6c6958ce93f4","tgt_lang":"hi","translated":"30","updated_at":"2026-06-26T21:37:57.526Z"} {"cache_key":"586f87a948604496deb7344a3a634db20774eb1ca05e3cc7a81be5e912782458","model":"gpt-5.5","provider":"openai","segment_id":"usage.presets.last90d","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"90d","text_hash":"c906817c1dd244107977b235f1ccc79e27b0b69d88eb9bad6f845e86e7fb08f4","tgt_lang":"hi","translated":"90d","updated_at":"2026-06-26T21:34:31.303Z"} {"cache_key":"586ffbc3661a9be62ca178e0e24a45299c98b7b9accb45cbd53f943be743207f","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.categories.search","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"hi","translated":"खोज","updated_at":"2026-06-26T21:33:40.484Z"} +{"cache_key":"58859d6d523bc32035bc949c353d2245b367c962dbaccd9d65ad6ef0c0a38cc0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"hi","translated":"जोड़ा जा रहा है…","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"58aa53fe092be94c829488d0374cad9808c12211e7e1b9621af62b270617bfed","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.nextWake","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Next wake","text_hash":"ca81db1824463cdac39c106074e8d3b9e431dc44ce1c7b96c5b57fdde374d5c2","tgt_lang":"hi","translated":"अगला वेक","updated_at":"2026-06-26T21:37:06.965Z"} {"cache_key":"58c79a880f0f6010b4c66425081f6835590228a5cc8392e7dbbbacb843eb378d","model":"gpt-5.5","provider":"openai","segment_id":"connection.reconnecting","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Reconnecting…","text_hash":"27b80374e1151af6df7824a358606c77502548bff4d467e4ae2e146801f601ce","tgt_lang":"hi","translated":"फिर से कनेक्ट हो रहा है…","updated_at":"2026-07-05T21:55:32.941Z"} {"cache_key":"5908d237a202b7b238676c53b93c1f59bcb5d587f80ae0cf181112c08fcd1c17","model":"gpt-5.5","provider":"openai","segment_id":"workboard.fieldTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Title","text_hash":"7e8cd2056da73a7fefb6cd91f4e5d199d08d9058c517b9a2476b1b520324d674","tgt_lang":"hi","translated":"शीर्षक","updated_at":"2026-06-26T21:32:39.899Z"} -{"cache_key":"593136766282383ee0c782996a1b7cb3477d252263b8f740069846e98ed8c6ea","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"hi","translated":"दाईं ओर डॉक करें","updated_at":"2026-07-10T06:08:16.400Z"} +{"cache_key":"591e65a023a5261d11e27f59e65e827cbb8d810d8c8c7a0ee436553ed1d8a08d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"hi","translated":"रद्द करें","updated_at":"2026-06-26T21:29:19.678Z"} {"cache_key":"593d2d134aa88f2a2fa51e0ddadd924d75751506fcadca6a20ca5b7234a0d956","model":"gpt-5.5","provider":"openai","segment_id":"workboard.taskStatus.completed","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Task complete","text_hash":"3d3a79831ea77f5a80c714a0319d683dd1b203dae2463b89bc6be0267afb70ca","tgt_lang":"hi","translated":"कार्य पूर्ण","updated_at":"2026-06-26T21:32:52.647Z"} {"cache_key":"59515552b963313c8dd9a37a50f4db88faab0f0f6bf450922d23d3c57233472c","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.scene.clearGrounded","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Clear Replayed","text_hash":"ada47e7866e5e1fdecebd243d1defdf7adcd74170554983e52190860365dc5f9","tgt_lang":"hi","translated":"रीप्ले किए गए साफ़ करें","updated_at":"2026-06-26T21:33:54.151Z"} {"cache_key":"599aeaf950ca3473d6c1064a94926a434944b1b4c5de205a582bd3b446962ad2","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"hi","translated":"{count} कैश टोकन","updated_at":"2026-07-06T06:40:15.357Z"} @@ -604,7 +656,6 @@ {"cache_key":"59c8bb69e7bdfa474939e9747f7f279291f440d4b6839878aa2bacd89e2aa007","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.loadHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Load the agent workspace files to edit core instructions.","text_hash":"dfa4dead18217a28f883b93bceed8058424799e23436f0fc8dbf1d7c61cb4ad8","tgt_lang":"hi","translated":"मुख्य निर्देशों को संपादित करने के लिए एजेंट वर्कस्पेस फ़ाइलें लोड करें।","updated_at":"2026-06-26T21:30:58.804Z"} {"cache_key":"5a109f7e5a1023bda5a791c487bbc081269d1cda65df70fbd0348a66ca0f2057","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"hi","translated":"सत्र पिन करें","updated_at":"2026-07-02T14:30:19.917Z"} {"cache_key":"5a19fa0379637f71b89a82cdd07ac554c084ff0894bad77bedf40fc8a3202cae","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.messagesAbbrev","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"msgs","text_hash":"8dc321b9135ee4fbee83a304b911e871f83e7ae84d344bae6f464804f77b2f86","tgt_lang":"hi","translated":"msgs","updated_at":"2026-06-26T21:34:59.501Z"} -{"cache_key":"5a652472b26a8feff8e9d1677ddd78a783930fdb1d61f3598db00857bf79339e","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"hi","translated":"{seen}/{total} देखे गए","updated_at":"2026-07-09T23:55:54.447Z"} {"cache_key":"5a778d51a9edd7000f9834384901aae5b108042f69975bbb1306b1c3d70f854d","model":"gpt-5.5","provider":"openai","segment_id":"workboard.enableConfigKey","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"plugins.entries.workboard.enabled = true","text_hash":"a518af5219772b9cbcbf63f90c12c6e048059e4e5b23a97e9785b36850a77022","tgt_lang":"hi","translated":"plugins.entries.workboard.enabled = true","updated_at":"2026-06-26T21:31:58.515Z"} {"cache_key":"5a98214cd1b635ad74ee8086f092cb8819a110ceca1ea565445578f929dbb86c","model":"gpt-5.5","provider":"openai","segment_id":"common.loadApprovals","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Load approvals","text_hash":"854a446fcdfbfd05db219ccfe9d13527f151c87ba40591c6e7512baca4008045","tgt_lang":"hi","translated":"अनुमोदन लोड करें","updated_at":"2026-06-26T21:29:32.270Z"} {"cache_key":"5a9f0378ea72a6b0291c0cf397416eb7810caa351f3523b7e3b56d2f960bc0a4","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.provider","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Provider","text_hash":"472590ae974d4c1f44b3780df0b152d9119f076c61bfb3e8cb6affd7889ac0a8","tgt_lang":"hi","translated":"प्रदाता","updated_at":"2026-06-26T21:30:33.640Z"} @@ -643,6 +694,7 @@ {"cache_key":"605b4821f4def973f57839bc5a6695888050355bf42e10be040ccdd8bf8612b9","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.recentlyUpdated","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Recently updated","text_hash":"474b2a869ac1477d2c174d764815230c13edb7a9d194d5aa8ea349c6d0c9dee2","tgt_lang":"hi","translated":"हाल ही में अपडेट किया गया","updated_at":"2026-06-26T21:37:15.387Z"} {"cache_key":"607810205e547ea3c72f57ad11ff864a68ea6384899867174a554bb38bbf3b7e","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.main","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Main","text_hash":"eb814be3ca3b78c0734c560518be2a03e8d8f6e7e26447224cc7c7b105e1193e","tgt_lang":"hi","translated":"मुख्य","updated_at":"2026-06-26T21:37:38.564Z"} {"cache_key":"6093ba70bdc64bcd53600077c113852353bf909635a1c986fc1920270821e16c","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.rateLimited.summary","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"The Gateway is temporarily limiting authentication attempts for this client.","text_hash":"d8fa743e54d8cb80e08e44fdfe20a74b3c99505a82ca5b7a2a65d7dd53ac9f6c","tgt_lang":"hi","translated":"Gateway इस क्लाइंट के लिए authentication प्रयासों को अस्थायी रूप से सीमित कर रहा है।","updated_at":"2026-06-26T21:35:56.265Z"} +{"cache_key":"6133a44b76d4410b95df509ab6599bd865b25fa98ae4aed3f586f6e0b735f4ba","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"hi","translated":"प्लगइन बदलने के लिए Gateway से कनेक्ट करें।","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"615175731c109cbf38df0fb6f6374e911fba9d98dbea8b7842d07e3725c89fde","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.modelAuthAttentionExpiringTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Model auth expiring soon","text_hash":"330e48cb1ac5728e8207087132398a091310c7ec1497ee8a553b5681e1b3eccb","tgt_lang":"hi","translated":"मॉडल प्रमाणीकरण जल्द समाप्त होगा","updated_at":"2026-06-26T21:33:40.484Z"} {"cache_key":"619a4c1129f4d7e2f7420929be8ce2090fe18d8adf6c44a475385d9e26e8bdf3","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"hi","translated":"संग्रहीत","updated_at":"2026-07-09T10:01:43.755Z"} {"cache_key":"61bbd5405acea588a55d64e31a460e6134894b4d4741b267d7a33cc45d01592c","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.rateLimited.stepStop","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Stop retrying from this tab for a moment.","text_hash":"1c4229536d95027f7046a19e5d5b06db5ffc8393818173e9d25e217fef2a7971","tgt_lang":"hi","translated":"इस टैब से कुछ समय के लिए दोबारा प्रयास करना बंद करें।","updated_at":"2026-06-26T21:35:56.265Z"} @@ -652,7 +704,6 @@ {"cache_key":"62792e74ac83bfa538ab873b9e067e02ef9fea656393bbb1f1f26c8675c059b4","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.now","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Now","text_hash":"fe18013d93d22f4f2a70344d30c00fe62d2ef29189ae5d25ccbda81fbd9c92b0","tgt_lang":"hi","translated":"अभी","updated_at":"2026-06-26T21:37:46.380Z"} {"cache_key":"6280dba12f84ac43e1763ef2ba862eba6e82fb078e98d670f25316bdbac13e75","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.pairing.summary","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"This browser needs one-time approval from the Gateway host before it can use the Control UI.","text_hash":"80a1f7f72bf2f2b38ebfbb54b4cf515fa1ad58a08cf1bf5b8bec58a8ffaa5b74","tgt_lang":"hi","translated":"Control UI का उपयोग करने से पहले इस ब्राउज़र को Gateway host से एक बार की स्वीकृति चाहिए।","updated_at":"2026-06-26T21:35:56.265Z"} {"cache_key":"62a37b6ca99d46d724d39db0625ac7e05df84b4eae57245f3e09e0be49fc7d18","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"hi","translated":"सेशन वर्कस्पेस रीफ़्रेश करें","updated_at":"2026-06-26T21:36:39.137Z"} -{"cache_key":"62a6745f863233b0209068ebf6fd63b2d064400c90c7376462dcb418987f1d12","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"hi","translated":"Lobsterdex","updated_at":"2026-07-09T23:55:54.447Z"} {"cache_key":"62c3d7147f6d3b56b7e12d09d4a30a5cf87a0a7a9c864a9199b706795a16727a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"hi","translated":"नोट जोड़ें","updated_at":"2026-06-26T21:32:11.358Z"} {"cache_key":"62c41c68667fcc7a7dc2426c0c17bf073b92fad12ad9d74809f65ee2af50a26b","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.schedules.everyMorning.label","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Every morning","text_hash":"344ad23fefa96a155f4e84ebefa592ceea3edd6102151890901d70d703dfcd58","tgt_lang":"hi","translated":"हर सुबह","updated_at":"2026-06-26T21:36:51.337Z"} {"cache_key":"63026423ca1ddb1cd27004d6250fef10c352a243381dbcc21dab010b87d06c4b","model":"gpt-5.5","provider":"openai","segment_id":"common.confirm","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Confirm","text_hash":"eebdd24a77d9ad32222660c07777163bf5f6732df2b172351f3f8d5783e4f529","tgt_lang":"hi","translated":"पुष्टि करें","updated_at":"2026-06-26T21:29:19.678Z"} @@ -672,16 +723,20 @@ {"cache_key":"655d61576751cb1bae6d8ace0a2dc09dfdb467e030cb910687bf2c884ee0a5c9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.showSessionDetails","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Show session details for {count}","text_hash":"b25d29cb98da3d21cb3a4217eced39e1e0371813d258e074e90521647185a4fe","tgt_lang":"hi","translated":"{count} के लिए session details दिखाएँ","updated_at":"2026-06-26T21:30:26.471Z"} {"cache_key":"65791fd558c4bd14c6eb2fa7390463c54dcfd048c10109534784e961dd9376fb","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.lines","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"lines","text_hash":"5ea44c3961f16643e614435496b16115aa6d75458b5cc3fd5398aae291f3126b","tgt_lang":"hi","translated":"पंक्तियाँ","updated_at":"2026-06-26T21:31:05.913Z"} {"cache_key":"65a92a21959a77c8e0d0d9e6ed0b5a6e18aeaed098f21404b247f4ace75dfdb2","model":"gpt-5.5","provider":"openai","segment_id":"cron.errors.cronExprRequired","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Cron expression is required.","text_hash":"8fbe41c6aff5762238faf1f7bd7d9f99c0c82e7a932c3e9feeaf8d42c77f275d","tgt_lang":"hi","translated":"Cron expression आवश्यक है।","updated_at":"2026-06-26T21:38:17.792Z"} +{"cache_key":"65f393140c714c95781e53f97077bf0434aaa1e7669a076b3a45bd08e2ce0316","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"hi","translated":"सक्षम","updated_at":"2026-06-26T21:37:06.965Z"} {"cache_key":"6626b33530664f906d36e44f69f0ab95279b29f76747f9bc98eeacf934f36f0a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.lifecycleLinked","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Linked","text_hash":"bfda026e6c598dde4d1b23c6a1789ba5a900b2e6d2e6b493469417c81dd16947","tgt_lang":"hi","translated":"लिंक किया गया","updated_at":"2026-06-26T21:32:52.647Z"} {"cache_key":"662dc1a35c26d48cccd5bf688823ecc446e3e59a3eecd1ed140741c97bb2ea30","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.labels.session","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"hi","translated":"सत्र","updated_at":"2026-06-26T21:31:18.653Z"} {"cache_key":"6638533289f6aed1652a12cf7ed08645e9b146a9bbaa672ff4e62cab66f4ae0f","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.sessions","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Active sessions and defaults.","text_hash":"4a0348782394b735b5dcd83d7f3ce18222b192f8628f4f96b5db6018aab6e481","tgt_lang":"hi","translated":"सक्रिय सेशन और डिफ़ॉल्ट्स।","updated_at":"2026-06-26T21:31:33.548Z"} {"cache_key":"6665c9578428dd2b822f02afffea672bede0b7cd1a9347ae6855378e16ce1e20","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.perTurn","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Per Turn","text_hash":"49c95953f8b111b40d6d74134509649a7f157b4526004a697ecea893474ddc88","tgt_lang":"hi","translated":"प्रति टर्न","updated_at":"2026-06-26T21:35:20.292Z"} {"cache_key":"66a7bcacfbc6fff507ff81286572f3b9e4e34f63079c6c0f2bc3eff975676f6c","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.authRequired.summary","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"The Gateway is reachable, but it needs a matching token or password before this browser can connect.","text_hash":"2f5c1813192d454c5aedb806415d5b5ab133530a7d2da6e8b8ce59d085e3d2b1","tgt_lang":"hi","translated":"Gateway पहुँच योग्य है, लेकिन इस ब्राउज़र के कनेक्ट होने से पहले इसे मिलान करने वाले टोकन या पासवर्ड की आवश्यकता है।","updated_at":"2026-06-26T21:35:43.732Z"} {"cache_key":"66a8cd75cb2705f66bb309e3b8b0f0841c1ab48435902ef6b7d3c053b0f3cc0b","model":"gpt-5.5","provider":"openai","segment_id":"workboard.agentLinked","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Linked to {agent}","text_hash":"ccfe5849a95883f4843e7e3a10e89b9dba4713102cc840673d74441aecf8f65c","tgt_lang":"hi","translated":"{agent} से लिंक किया गया","updated_at":"2026-06-26T21:32:18.718Z"} +{"cache_key":"66ba4e044888675a04c9f7cff69466883bd753397c0febd59846c5a4c918083f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"hi","translated":"मॉडल प्रदाता","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"66bc7f00f843cd0d24df10bcd3cde4df44be41ad3ff62c9d3939428b1cc682bf","model":"gpt-5.5","provider":"openai","segment_id":"overview.quickActions.refreshAll","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Refresh All","text_hash":"e0463641297da021b6f6e1e6f914442c613282e06813cf4d6b73ce97e1d946ac","tgt_lang":"hi","translated":"सभी रीफ़्रेश करें","updated_at":"2026-06-26T21:33:40.484Z"} {"cache_key":"66c12befb5c3c3915670b3024cf3eb5dc6d6144f6df769fe87c47192d5642d42","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.hoursCount","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} hours","text_hash":"843c54a6f7f92aad4c40c81f0622b1c0aa129af9010ab5afc8cc639ff49b7c55","tgt_lang":"hi","translated":"{count} घंटे","updated_at":"2026-06-26T21:34:43.709Z"} {"cache_key":"66c19123b1965a4a00e72c6d1d890aa3fa042e3291df32b04957fc877ec8ad7e","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.runStatusOk","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"OK","text_hash":"565339bc4d33d72817b583024112eb7f5cdf3e5eef0252d6ec1b9c9a94e12bb3","tgt_lang":"hi","translated":"ठीक","updated_at":"2026-06-26T21:37:23.206Z"} +{"cache_key":"66c68396247bd226674170f75c7c0f52d54430d96cb64aaa9653a8a60b0a90ef","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"hi","translated":"commit hash कॉपी किया जा रहा है","updated_at":"2026-07-10T09:47:11.706Z"} {"cache_key":"66f81dc0ea7444de322f057e088e3ab9a4e3b6d3bff869c92e6bc4a2046c2968","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.avgCostHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Average cost per message when providers report costs.","text_hash":"a01deeb63479411d326bea64e10de7982b037e8f9a6361e7d7ba136e438846e1","tgt_lang":"hi","translated":"जब प्रदाता लागत रिपोर्ट करते हैं, तब प्रति संदेश औसत लागत।","updated_at":"2026-06-26T21:34:59.501Z"} +{"cache_key":"6720b0c90cb3d45e99813654fe15b65930c0e257166da78128f71460f67feca3","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"hi","translated":"Plugins","updated_at":"2026-07-10T02:25:41.019Z"} {"cache_key":"674d34537a8a68de447bb492e7cb1ebfce1c81219144684ab7f208c1e75c9f2a","model":"gpt-5.5","provider":"openai","segment_id":"common.baseUrl","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Base URL","text_hash":"70589413a3c9793339fcf764276727ac652fa7dfe2f15fb5671251303a52ca49","tgt_lang":"hi","translated":"बेस URL","updated_at":"2026-06-26T21:29:24.057Z"} {"cache_key":"67a6181d38efe4a5f7b771750adfbb50733dee774c862950103cd150a9090d79","model":"gpt-5.5","provider":"openai","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"hi","translated":"5s","updated_at":"2026-06-26T21:32:33.484Z"} {"cache_key":"67ad9a686f145a619ab6d77d3ee2ceb00c8acc26e2696b805d542e4ed6d10c08","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.alphabetizingSubconscious","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"alphabetizing the subconscious…","text_hash":"689b32ed4cd0e3bdcad19116d447ea1eb8fdede1ba47d39a21750b3fc3ecf71f","tgt_lang":"hi","translated":"अवचेतन को वर्णक्रम में लगाया जा रहा है…","updated_at":"2026-06-26T21:34:24.815Z"} @@ -692,8 +747,11 @@ {"cache_key":"686697100518044be486fbcd39e592f56d5e102c9492c889f3796414237ead21","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"hi","translated":"रिफ्रेश करें","updated_at":"2026-06-26T21:33:46.154Z"} {"cache_key":"686b01b6cdc4d47e780a32f580f25b0b5026bc99ffe7c8e8509b30bdc7864b6c","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.avatarUrl","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Avatar URL","text_hash":"18a20f99701c5c7ac5c7d4f4c62e57e8f35a4aec25a43494baa3b741152c0706","tgt_lang":"hi","translated":"अवतार URL","updated_at":"2026-06-26T21:29:48.427Z"} {"cache_key":"68f9111c317a377bb26669f05d3d51b5922d0abdebb2972e4aa3780784b78e26","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.lastRun","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Last run","text_hash":"512a48218ba2179153629504206e7d54a7767e19ee2aa21574a7c614e5c92537","tgt_lang":"hi","translated":"पिछला रन","updated_at":"2026-06-26T21:37:06.965Z"} +{"cache_key":"6910f9b08f58760cbcab37830de124659aa6ddaa1e8598fd771df3ceccf68ef2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"hi","translated":"कोई http(s) URL या कमांड लाइन दर्ज करें।","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"6992e6de9dfff3e1a79df7a794e1cb118289d2fcb4d1a90b6b74dbe033b6a6b2","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.delivery.silent.label","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"hi","translated":"मौन","updated_at":"2026-06-26T21:36:59.582Z"} +{"cache_key":"69ca46527951f9fc0177156a58614138299bb3cfa97fb5839670df17dffd39f9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"hi","translated":"ClawHub से","updated_at":"2026-07-10T04:28:25.445Z"} {"cache_key":"69d2e842b13334b92a7fa44364be26249dcf3181acdcce75532cebd7a058ebbe","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Sessions","text_hash":"6fa3cbf451b2a1d54159d42c3ea5ab8725b0c8620d831f8c1602676b38ab00e6","tgt_lang":"hi","translated":"सेशन","updated_at":"2026-06-26T21:30:08.627Z"} +{"cache_key":"69e50ba4617895b509d1e62f5336ac6031c3a885b7a6ba12bac014b923068d4a","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"hi","translated":"Control UI बिल्ड विवरण","updated_at":"2026-07-10T09:47:11.706Z"} {"cache_key":"69f81f4ec77e1c08c8eaff521feda3cb8eab09b8e10c804607f5b71c4e663380","model":"gpt-5.5","provider":"openai","segment_id":"overview.notes.sessionTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Session hygiene","text_hash":"740c0d8be2bed11d0a81dbf15a19f5cf26b9fd9b36e5d53492eeaedf44220473","tgt_lang":"hi","translated":"सेशन स्वच्छता","updated_at":"2026-06-26T21:33:25.942Z"} {"cache_key":"6a0582f39b9351430332f1d9f70c0e0f6bf1c3cf4f881ee3add0ca669e565024","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.files","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Files","text_hash":"abc7e9892806b047b4d4786b3685285543f76ca314c4c76246d5f6544c7856c9","tgt_lang":"hi","translated":"फ़ाइलें","updated_at":"2026-06-26T21:35:26.182Z"} {"cache_key":"6a752897f1eacfce900d9eaa66ed66e991f0e07c20b07b744fed9186b069e2b1","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.searchJobs","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Search jobs","text_hash":"989ecb5d07fd4c769ec4212085c63eab4b2bbede961979f8903fd98ed5c874d9","tgt_lang":"hi","translated":"जॉब्स खोजें","updated_at":"2026-06-26T21:37:06.965Z"} @@ -726,6 +784,7 @@ {"cache_key":"706f3821d174f5f3b589d3b7e8d6fdb8b4c83bdb2bebe488d7012c0a7dd757ac","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventDispatch","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Dispatch","text_hash":"811ace97bcf2c6d6a25db8bde24dd00c39040fedde80e78e70733e362791ead6","tgt_lang":"hi","translated":"डिस्पैच","updated_at":"2026-06-26T21:33:07.229Z"} {"cache_key":"70c9c9233d007d16d82d72bb3cbeb59f982b6069aa4b0b71e2aa0987bbbdb71c","model":"gpt-5.5","provider":"openai","segment_id":"cron.errors.webhookUrlRequired","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Webhook URL is required.","text_hash":"a84533e7d336c2821ad97847dbe84fd1f7f0219b710e98d4e5f978485dc5008a","tgt_lang":"hi","translated":"Webhook URL आवश्यक है।","updated_at":"2026-06-26T21:38:17.792Z"} {"cache_key":"70da1dc5144b2473cee1d485395279ee696931b46d0488d513d5b2eb6eaa3d31","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.descending","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Descending","text_hash":"79479a6c76d8416ab7839952a2f8222e350862464f4d02db13d8d8f9551dbf8e","tgt_lang":"hi","translated":"अवरोही","updated_at":"2026-06-26T21:35:13.036Z"} +{"cache_key":"70e73a6c2c8c7acffe76cdef2f63b60954d79aef9d4d0c9705d6cdb1c7489e50","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"hi","translated":"सक्रिय Gateway कनेक्शन द्वारा रिपोर्ट किया गया; इस Control UI बिल्ड से अलग।","updated_at":"2026-07-10T09:47:11.706Z"} {"cache_key":"70fe470028f9b2889ab59ba9871a1fe62fe52e7424259503cc2e842b63a5ab47","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skills","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Skills and API keys.","text_hash":"6ade4da6eeb01dafee4a8d0882ebc1d9e84abd09c1ed699b1ccbcda0a28700a2","tgt_lang":"hi","translated":"स्किल्स और API कुंजियाँ।","updated_at":"2026-06-26T21:31:33.548Z"} {"cache_key":"7116187ad3a7746cae5e9e832ba4565ff7b3e45aac8e65fbe9e7ed1344d0fbe1","model":"gpt-5.5","provider":"openai","segment_id":"overview.quickActions.automation","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"hi","translated":"ऑटोमेशन","updated_at":"2026-06-26T21:33:40.484Z"} {"cache_key":"714e5bf0f28ec48a7e528e8ad8fd6a4058daa42862776b9e880cffabe1aaf968","model":"gpt-5.5","provider":"openai","segment_id":"workboard.status.triage","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Triage","text_hash":"4ffbef3c08edfa3878c8357dbe3de3f11c3c74c594d8405f40243390f7f2d118","tgt_lang":"hi","translated":"ट्रायज","updated_at":"2026-06-26T21:31:58.515Z"} @@ -754,19 +813,24 @@ {"cache_key":"74459fdfe7f2b9d65275229da3e1abec6cf082568e47acf02d05da09a8a80a6a","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.labels.resolved","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Resolved","text_hash":"5be3c2c8354e1eb924b03a3dcc7fa4172e9aa0f4917b46b44fcc7daf8835d7a7","tgt_lang":"hi","translated":"समाधानित","updated_at":"2026-06-26T21:31:18.653Z"} {"cache_key":"74488a2ee4eb1f4ab546e4f99907819820808dd07bd22b4922935663e60cb793","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.close","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Close session details","text_hash":"6f8d91841e5b0c970dc5f7620be8c6388b04f1e03f2896d33b81583a1e617abe","tgt_lang":"hi","translated":"सेशन विवरण बंद करें","updated_at":"2026-06-26T21:35:20.292Z"} {"cache_key":"7475b6f27b432ed097c01158dd60d08aadb18bb131c92f4dc0936a412d05542e","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.placeholderDisconnected","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Connect to the gateway to start chatting...","text_hash":"e764c7024b6aa9a4bf077e298ef69d2fa462e9a7a431783cc23b52c056dff33a","tgt_lang":"hi","translated":"चैट शुरू करने के लिए gateway से कनेक्ट करें...","updated_at":"2026-06-26T21:36:30.561Z"} +{"cache_key":"74ba9b8989f9d8c3e0d017122ca7061497999432c00d87aaba58d11054c6a256","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"hi","translated":"पैकेज","updated_at":"2026-07-10T04:28:25.445Z"} {"cache_key":"74da8191690c4f05d7eba74142409789208242a8e77072b8b5fc3a07b0fad87f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"hi","translated":"और लोड करें","updated_at":"2026-07-09T10:01:43.755Z"} {"cache_key":"74e632295308da3a764a5713ba5e7edbfb44e646c34260755ded5e22cb0f383c","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"hi","translated":"माइक्रोफ़ोन एक्सेस ब्लॉक है। इनपुट की सूची देखने के लिए ब्राउज़र साइट सेटिंग्स में इसकी अनुमति दें।","updated_at":"2026-07-06T17:56:41.735Z"} +{"cache_key":"74fde76e9e4989cf5afee39106d8e8a04ccc998993405f4b14d0e48543b50388","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"hi","translated":"कोई इंस्टॉल किए गए प्लगइन्स मेल नहीं खाते","updated_at":"2026-07-10T02:25:14.442Z"} +{"cache_key":"751d642fce9424a217aa9d4a76a22c6b0c1452ea7f7fcb6676ede6ecba0cf628","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"hi","translated":"केवल ब्राउज़िंग। यह gateway plugin बदलावों की अनुमति नहीं देता।","updated_at":"2026-07-10T02:25:41.019Z"} {"cache_key":"752c664861463718afa8287627475a6249ab835363fff6cfc53f96ac582e7941","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"hi","translated":"नवीनतम रन टोकन","updated_at":"2026-07-05T10:16:11.934Z"} {"cache_key":"7563941a84d0690d21e05bfc536a5552558cf0c354a3531b58d0d0f72755d4e7","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"hi","translated":"रंग मोड: {mode}","updated_at":"2026-07-07T08:47:31.674Z"} {"cache_key":"75b013f701ceaba288725287cea0dd4d00b314424a819d98b60a40c073af69b8","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"hi","translated":"सेशन","updated_at":"2026-06-26T21:34:31.303Z"} {"cache_key":"75f5da3e2aa4933ec7a6aec3ceb47c4e290414b2f3e91f5732513d8a1ad793a4","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.advancedHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Optional overrides for delivery guarantees, schedule jitter, and model controls.","text_hash":"a470ce680d28996a5d0ea9c39691bd8b804b85c6766d6bb0ee81c1b01d5fc82f","tgt_lang":"hi","translated":"डिलीवरी गारंटी, शेड्यूल जिटर, और मॉडल नियंत्रणों के लिए वैकल्पिक ओवरराइड।","updated_at":"2026-06-26T21:37:57.526Z"} {"cache_key":"7608cb5d52a7dc34e876143bc36fbbf64624b4160bb417323348bf604ce9cd9b","model":"gpt-5.5","provider":"openai","segment_id":"usage.export.json","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"JSON","text_hash":"db1a21a0bc2ef8fbe13ac4cf044e8c9116d29137d5ed8b916ab63dcb2d4290df","tgt_lang":"hi","translated":"JSON","updated_at":"2026-06-26T21:34:43.709Z"} {"cache_key":"764e7f39462f45422643f9eb465129ba0990bc2328ffac2efe28182967762425","model":"gpt-5.5","provider":"openai","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"hi","translated":"नया सेटअप कोड जनरेट करने के लिए /pair qr फिर से चलाएँ।","updated_at":"2026-07-02T14:30:19.917Z"} +{"cache_key":"7663a186907538998c4c786add42312e7254dde55911df0ce7c104a094f02015","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"hi","translated":"Control UI कॉन्फ़िगरेशन रीफ़्रेश नहीं किया जा सका: {error}","updated_at":"2026-07-10T02:25:41.019Z"} {"cache_key":"769f887b6e8eecd95de99250b3e0cb35187d9a194601eb4a2b5d91c3f92e57e2","model":"gpt-5.5","provider":"openai","segment_id":"usage.daily.byType","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"By Type","text_hash":"26901eeda3b27dae03e02ed92d2af1757fefe9929a2cbaf8bc17e193256d1ba8","tgt_lang":"hi","translated":"प्रकार के अनुसार","updated_at":"2026-06-26T21:34:51.300Z"} {"cache_key":"76d4c25cdce68ea4c5a90f02cee42dcb014bed25b5fe62eec92eb4005d5a6d54","model":"gpt-5.5","provider":"openai","segment_id":"overview.connection.insecureHttpDocsTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Insecure HTTP docs (opens in new tab)","text_hash":"10642206faa50df2cdcf2852e455c9bf65abd99845a755e832ee5fd1394a2087","tgt_lang":"hi","translated":"Insecure HTTP डॉक्स (नए टैब में खुलता है)","updated_at":"2026-06-26T21:33:34.535Z"} {"cache_key":"76f1566f4ab562bdc2d9b7574483ad1e635b3b247496c30efc81d0a97ed757e1","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.trace.groundedLed","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"grounded-led","text_hash":"28ac99cfc445d54fd3f7e2aa8c5d6f4cf86da63878b58cce1a91911b1cee91b5","tgt_lang":"hi","translated":"grounded-led","updated_at":"2026-06-26T21:34:11.503Z"} {"cache_key":"76f4e0d3d36481d165543e99fb9bacb00840d6b5d5fe31d40397015f82ca9f2a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProofAdded","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Proof added","text_hash":"671069a137b0af834db51b3c9e90b9e4cd439a31e1c692212d8d4308ae860cbf","tgt_lang":"hi","translated":"प्रमाण जोड़ा गया","updated_at":"2026-06-26T21:33:00.304Z"} {"cache_key":"77204207b252ecdc39eccd92e9cbc1387798e695bd300b63bbc979f3c114db3b","model":"gpt-5.5","provider":"openai","segment_id":"usage.presets.all","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"hi","translated":"सभी","updated_at":"2026-06-26T21:34:31.303Z"} +{"cache_key":"776e826bc49a7fe2be35bfdd44a6337030b94604c5c4098b5aef3291014db6a3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"hi","translated":"नाम","updated_at":"2026-06-26T21:37:31.894Z"} {"cache_key":"7775183369564dd2ee483e6ec59e09161868fd46155fbb35a3cfa96673d5114f","model":"gpt-5.5","provider":"openai","segment_id":"workboard.status.backlog","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Backlog","text_hash":"bf986e9a4f860eb0f3d2def12019dc81c8370e4fdd01940635c2265bae5791d0","tgt_lang":"hi","translated":"बैकलॉग","updated_at":"2026-06-26T21:31:58.515Z"} {"cache_key":"77836a509622c31a7b04e750ab96c184403b5f161968b113d592c84417c9781d","model":"gpt-5.5","provider":"openai","segment_id":"debug.health","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Health","text_hash":"55898449eb74fb2e348d13e5a5d84ab019bb87ea92687b50b3d3302eb409b784","tgt_lang":"hi","translated":"स्वास्थ्य","updated_at":"2026-06-26T21:31:05.913Z"} {"cache_key":"77a66a429ed4ad2dd4e73847d1f2afbcb210e6007736b9dbf2365d1eda9916aa","model":"gpt-5.5","provider":"openai","segment_id":"activity.argumentsHidden","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} arguments hidden","text_hash":"b07c2a42573925aefc0b23619e69a34fef45b58350020a985e00a1bd343f7814","tgt_lang":"hi","translated":"{count} आर्ग्युमेंट छिपाए गए","updated_at":"2026-06-26T21:31:52.012Z"} @@ -777,6 +841,7 @@ {"cache_key":"782b365f73e8c29e6497a36304a6a5e116e5fea4c4db0f06264155ea22ad554c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.on","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"on","text_hash":"b8d31e852725afb1e26d53bab6095b2bff1749c9275be13ed1c05a56ed31ec09","tgt_lang":"hi","translated":"चालू","updated_at":"2026-06-26T21:30:21.093Z"} {"cache_key":"7845adb212b60bc7d44f925e99f11841814356f2b624f7d8f1e7e24ee4d4971d","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.advanced","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Advanced","text_hash":"9f088dbebd6c3c70a5ddbc2c943b11e4ca9acea5757b0b4f2b32479f0dbb747e","tgt_lang":"hi","translated":"उन्नत","updated_at":"2026-06-26T21:37:57.526Z"} {"cache_key":"78589be683272327775f6b631b75610d33849f774f8ee81c05ef8e8f36725d45","model":"gpt-5.5","provider":"openai","segment_id":"overview.access.wsUrl","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"WebSocket URL","text_hash":"e09731b4efa96f0a1f1d5a2d054151ab0297af95bd92b137008cc61534b09e95","tgt_lang":"hi","translated":"WebSocket URL","updated_at":"2026-06-26T21:33:07.229Z"} +{"cache_key":"787fa286f98827bd042299864b6b9ebd3d05d0b78559287dbaffe10d9b00f4f1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"hi","translated":"{name} जोड़ा गया। उपयोग से पहले MCP सेटिंग्स में endpoint और credentials अपडेट करें।","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"788568476f4b025d0ab808655f26909c4faaa29ff5242fb2858d3b2bc95c329c","model":"gpt-5.5","provider":"openai","segment_id":"usage.metrics.session","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"session","text_hash":"3f3af1ecebbd1410ab417ec0d27bbfcb5d340e177ae159b59fc8626c2dfd9175","tgt_lang":"hi","translated":"सेशन","updated_at":"2026-06-26T21:34:31.303Z"} {"cache_key":"789b99942f38056aaf60fefd5c8f2acadf2063c27a0cc62d9a67246a3ff5538f","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.forgettingNoise","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"forgetting what doesn't matter…","text_hash":"b1682b9653c2540fd575cc52cbf7c2e68d8fc54b3987c593f2b94fe4a6a8fc5a","tgt_lang":"hi","translated":"जो मायने नहीं रखता, उसे भुलाया जा रहा है…","updated_at":"2026-06-26T21:34:24.815Z"} {"cache_key":"789caf34563713a99f5dfb45759f9c206475b3deb64266912fbe5ca7992bb97f","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.sessionHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Main posts a system event. Isolated runs a dedicated agent turn.","text_hash":"157f74bf6eca72fc5220f0fff45276ff74621e8d6bd094fc2976a42638712105","tgt_lang":"hi","translated":"Main एक सिस्टम इवेंट पोस्ट करता है। Isolated एक समर्पित एजेंट टर्न चलाता है।","updated_at":"2026-06-26T21:37:38.564Z"} @@ -791,7 +856,9 @@ {"cache_key":"7b345ba67a6ba8a8141ea3affa688fb8c079e1f43c25279a8754ef4a5a4e4252","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.markdownPreview","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Markdown Preview","text_hash":"149c33c417f8eba8d0210417f14d288792510e0c350e4dd020ea30563aa3eeb9","tgt_lang":"hi","translated":"Markdown Preview","updated_at":"2026-06-26T21:30:58.804Z"} {"cache_key":"7b49ff2cd568c1597770e674bce7fd8bbd26ab0e2a43af57bb98d215186c1386","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"hi","translated":"इसके अनुसार क्रमबद्ध करें","updated_at":"2026-07-06T23:41:00.554Z"} {"cache_key":"7b924d4ece61d613167c7b842e3db6a524fb5a3b32d9a436ea93a6397ff833ff","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.noMessagesMatch","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No messages match the filters.","text_hash":"64a575d4d77472b6351168a4fadda155dd13148122fa7f9f3e69c721df41dde9","tgt_lang":"hi","translated":"कोई भी संदेश फ़िल्टर से मेल नहीं खाता।","updated_at":"2026-06-26T21:35:33.329Z"} +{"cache_key":"7ba1a466601c33417f104afd6f342a0f650fbacb2e9c551629d801bdf86dd3d7","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"hi","translated":"इस ब्राउज़र आर्टिफैक्ट के बिल्ड होने पर एम्बेड की गई पहचान।","updated_at":"2026-07-10T09:47:11.706Z"} {"cache_key":"7ba73445760d2974dfd9a2cb0f65115b038c4f868017c62020179e2cece99c26","model":"gpt-5.5","provider":"openai","segment_id":"activity.subtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Ephemeral tool activity derived from live session events.","text_hash":"87ec35f72de8306c5765b15f29233799314345c3f232fc7165f93e8a8eb6afc4","tgt_lang":"hi","translated":"लाइव सेशन इवेंट से प्राप्त अल्पकालिक टूल गतिविधि।","updated_at":"2026-06-26T21:31:44.582Z"} +{"cache_key":"7c1a88347fbba852c2776d8b259a70c662146568034d952fe85e0757a419e4cd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"hi","translated":"MCP सेटिंग्स","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"7c3ff6189e129a60f7a5556b59e860673ce1ecfc5a8f6fa822ca1d9b8388173e","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.defaultName","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"hi","translated":"ऑटोमेशन","updated_at":"2026-06-26T21:36:59.582Z"} {"cache_key":"7c6f29081f7669e59c51fb053a012078316834514850d7df2f8202265eddbee0","model":"gpt-5.5","provider":"openai","segment_id":"agents.context.identityName","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Identity Name","text_hash":"d84785a85db54b51e0410c02d7b691f92d08ecf7677378cf43ad82ae4e8595f3","tgt_lang":"hi","translated":"पहचान नाम","updated_at":"2026-06-26T21:30:41.032Z"} {"cache_key":"7c9c6915df8143838114ff139cec736679735c409273b6c4af13fd59f0ffd6f0","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobList.selectJob","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"(select a job)","text_hash":"9a488dc0fea9e045777355a2d0c54a2fd6d9e2ced2411770933824a7d8ccfd07","tgt_lang":"hi","translated":"(जॉब चुनें)","updated_at":"2026-06-26T21:38:06.735Z"} @@ -818,16 +885,21 @@ {"cache_key":"7f4e11c8be647c7f5ced9ceba82cf2b98cd8b7ac91ec9ed7b7e4e11fe941c974","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.trace.emptySignals","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No active signals.","text_hash":"0d9d086593baedf3d8af5a8f30c9bdb495209fdb3413e02f1e74c6f8ce77e876","tgt_lang":"hi","translated":"कोई सक्रिय संकेत नहीं हैं।","updated_at":"2026-06-26T21:34:11.503Z"} {"cache_key":"7fcda44b20dbebbe9e61efcc7e8b23c0f45ef7fdd979a1002ed724d3da45fb6a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"hi","translated":"चैट खोलें","updated_at":"2026-07-09T08:27:19.228Z"} {"cache_key":"7fe6da8c6efe5d110efb3b23b80238ac361d646c23deadd2653e0086803de1a8","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.network.summary","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"The browser could not complete the Gateway connection. Check the target and transport before retrying credentials.","text_hash":"4d45767ea8c0cc7151a3fdc17c3c5ebba667c028aff1af59a9b71f80ab471a66","tgt_lang":"hi","translated":"ब्राउज़र Gateway कनेक्शन पूरा नहीं कर सका। credentials दोबारा आज़माने से पहले target और transport जाँचें।","updated_at":"2026-06-26T21:36:08.721Z"} +{"cache_key":"8014a9d303ba5266a2afe805ccc1da27191dea3a84f3178523f1e19c9729f947","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"hi","translated":"विवरण देखें","updated_at":"2026-06-26T21:32:04.902Z"} {"cache_key":"80173180c086d5066181204f28f463b4856491b6380fe117f680e4f1328cb992","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.assistantTaskPrompt","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Assistant task prompt","text_hash":"eae69a35d4c19250d0b7b64f79fc60a3e461cd02d085df3bf8079852fe42df91","tgt_lang":"hi","translated":"Assistant task prompt","updated_at":"2026-06-26T21:37:46.380Z"} +{"cache_key":"802e4b62dcd53621ceb6948f86bf20064eb03856f7898e2a8c6c0f230a86bc7c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"hi","translated":"कोई वैकल्पिक प्लगइन्स इंस्टॉल नहीं हैं","updated_at":"2026-07-10T02:25:14.442Z"} +{"cache_key":"8037f8d50c60401caa0e1d2cd8c6aefe72b86dc6b2dc4608738a5282242c92db","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"hi","translated":"आधिकारिक","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"804e4c26b2ab74b97eb0750a29d211ecf293f4ec03116f7379a9ec38b77a73c5","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.deliveryUnknown","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"hi","translated":"अज्ञात","updated_at":"2026-06-26T21:37:23.206Z"} {"cache_key":"806dabfd8b33c97ef6a1dee0ac2c381379ab240e0257fe70071999a3e2d8534a","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.runStatusUnknown","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"hi","translated":"अज्ञात","updated_at":"2026-06-26T21:37:23.206Z"} +{"cache_key":"807b0d782ac94c670e103feb12ba992015d97ec2f1466a9414d6fa1db3198659","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"hi","translated":"हटाएँ","updated_at":"2026-06-26T21:38:12.145Z"} {"cache_key":"80a4dcdf3fdf781c1468c7e757ed76b47e28197ea83e7cfc9ea8646483fcffbf","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.runAt","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Run at","text_hash":"4b4c31294fb5b71b1b7b022c0fcc15a8295e19ecf0788db48cdeeab0d5623433","tgt_lang":"hi","translated":"चलाएँ","updated_at":"2026-06-26T21:37:38.564Z"} {"cache_key":"80a71862a3315f6b77cf5d4354df0cdafe8207704c4557ad26d6cac33f2e44af","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.sessionId","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Session ID","text_hash":"cb9ac5c561daa67069c5fc0ac9185906dfe15794b636d4813e421f77b6d2a259","tgt_lang":"hi","translated":"सेशन ID","updated_at":"2026-06-26T21:30:33.640Z"} {"cache_key":"80bbf9ec8171aacd9d1ce2e2dca8d4ca014b947c0ffb12c7e20bd4ab22407704","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.avgTokensHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Average tokens per message in this range.","text_hash":"bbd6264e7d1f78cedb1fa94a36a3cc55900f5f9c4c63171482b3c3ceb6898bdf","tgt_lang":"hi","translated":"इस अवधि में प्रति संदेश औसत टोकन।","updated_at":"2026-06-26T21:34:59.501Z"} {"cache_key":"80c7a75a54831f162be079032d1bc8fdb6c39640b46562c90491477e5f34ea8c","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"hi","translated":"MCP","updated_at":"2026-06-26T21:31:33.548Z"} +{"cache_key":"80dd97db4c4fc52953e9398f9270f881308ff5da51b91e570bf188275e9e5805","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"hi","translated":"अक्षम करें","updated_at":"2026-06-26T21:38:12.145Z"} {"cache_key":"80e479a9e4993f1598c17637825f3326c36fff4a1352947527ced8afd1cb9075","model":"gpt-5.5","provider":"openai","segment_id":"usage.empty.subtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Load usage data to compare costs, inspect sessions, and drill into timelines without leaving the dashboard.","text_hash":"ca71e79b3867fcfedecce345bf3266c962cb627906ba83e102a44ddab8fa97dc","tgt_lang":"hi","translated":"लागतों की तुलना करने, सत्रों की समीक्षा करने और डैशबोर्ड छोड़े बिना टाइमलाइन में गहराई से देखने के लिए उपयोग डेटा लोड करें।","updated_at":"2026-06-26T21:34:51.300Z"} {"cache_key":"810e86dee69763fad67b2e056b4f5db1164ea247f6602630aa2fd4a6ddd3e2be","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.everyAmountPlaceholder","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"30","text_hash":"624b60c58c9d8bfb6ff1886c2fd605d2adeb6ea4da576068201b6c6958ce93f4","tgt_lang":"hi","translated":"30","updated_at":"2026-06-26T21:37:38.564Z"} -{"cache_key":"813b06f34a9f53859143e0bd296344e9907e1880d15b15f6f05a8e4f1c468466","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"hi","translated":"{name} · पहली बार {date} को देखा गया","updated_at":"2026-07-10T04:20:33.452Z"} +{"cache_key":"813f08e7f0fbff1795cccaa55cfaf7b3d890cfceaa6834a5f1ded961f0f8de9c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"hi","translated":"प्लगइन कैटलॉग","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"822cf47694c55df29f00bf2d80a8695ac00a3f9355f0c6e10f6eb797c930a796","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.emptyShortTerm","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No short-term entries to inspect.","text_hash":"2da0eeafc31b59fa5ff2c473c82b4d2589378ff500e4e06d5daad8ce3988a6e9","tgt_lang":"hi","translated":"जांचने के लिए कोई अल्पकालिक प्रविष्टियां नहीं हैं।","updated_at":"2026-06-26T21:34:11.503Z"} {"cache_key":"823062fcea18a66c8ed2203a54652e5f629b423102c85dce4c1cd9e26d250aaa","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.originDailyLog","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"replayed","text_hash":"ae94da4c1a6fabab4512e07bd7f597adec85b16c801a4b69251f9c4165010495","tgt_lang":"hi","translated":"फिर से चलाया गया","updated_at":"2026-06-26T21:34:03.457Z"} {"cache_key":"825e2998bfb7246549a18b5a9a87cd027ba1402c615dcc66f447f1094ace50f5","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.resets","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Resets {time}","text_hash":"5a0f8c1b2755ee505e02e19fadc7377ad48df63cc7d3399c20228fe3edc37cb1","tgt_lang":"hi","translated":"{time} में रीसेट होता है","updated_at":"2026-07-09T11:49:28.360Z"} @@ -836,11 +908,13 @@ {"cache_key":"830aa664a3f5ee60657ab41fc5422f29859b862b0f3a7ec420e4881bc3e794fb","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.calls","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"calls","text_hash":"f46f5990ebfadcab199107258b9dadd8711bd7946d8d00091a1073effcf2a843","tgt_lang":"hi","translated":"कॉल","updated_at":"2026-06-26T21:35:07.144Z"} {"cache_key":"83860a50835c9a6180695b529c830bfcc16bfe89ea101b975fac6d2d08225cdb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.inherit","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"inherit","text_hash":"035300f3afee55ae79b77ca5bc61ff29fc3c7abb56f751bd524fa331b50d8ee0","tgt_lang":"hi","translated":"इनहेरिट करें","updated_at":"2026-06-26T21:30:21.093Z"} {"cache_key":"83e7be77e9effb08b06c9d711f2104e3d02eb48058f351fcace2220cefd6b3a8","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolRuns","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} runs","text_hash":"627a5f9e7cc0ba0f9bc65c55fb5e6421519e92d24f35dabffabb1eaf16aa750b","tgt_lang":"hi","translated":"{count} रन","updated_at":"2026-07-09T11:27:33.869Z"} +{"cache_key":"83fb7a008d120f8f58c50627d3c7341d2730c575aeaa98d3bfb62a8fc513d09a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"hi","translated":"फिर से प्रयास करें","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"84247d0d1a5e62f2b98a65ad9d0bf7ea0fcfcd1de4dd4e16a09c25a6cb5258d0","model":"gpt-5.5","provider":"openai","segment_id":"common.connect","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Connect","text_hash":"1a2303ede07493acc7caaa7c737f3c52bcc9cf04372be19ed1b0af6b9f2c791e","tgt_lang":"hi","translated":"कनेक्ट करें","updated_at":"2026-06-26T21:29:19.678Z"} {"cache_key":"843beec0033341c4ffc0f50aeeb6dbe6adaa12255882476c888dade7258d3008","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"hi","translated":"पढ़ा गया","updated_at":"2026-06-26T21:36:39.137Z"} {"cache_key":"84457f8669c8ba587a12a249ce5c58478f489577e1264cbe03b87dd3a82e3100","model":"gpt-5.5","provider":"openai","segment_id":"overview.stats.cron","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Cron","text_hash":"dd9d24965dbedc026915308732b77c1af68dcf52d3c0ca2421b1fdb0d197aca1","tgt_lang":"hi","translated":"Cron","updated_at":"2026-06-26T21:33:15.607Z"} {"cache_key":"847003a7d4499dd87df790c1f8ca72be663f7f0959043ebbce70b2c56d12a692","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightAgents","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Agents in the reef","text_hash":"050a0a3d70a5c89d65789f7983024ee9eb2539cee6c2e0b31677ac78b0cd3534","tgt_lang":"hi","translated":"रीफ़ में एजेंट","updated_at":"2026-07-09T11:27:33.869Z"} {"cache_key":"8472011c61154cb3fb7df073be5d3cb9709b6df497d247e09edfc9934964f9e3","model":"gpt-5.5","provider":"openai","segment_id":"usage.breakdown.cacheRead","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Cache Read","text_hash":"bc60bc6b4e59a4e37809ce2aea0b21366e9682d3ad5e14a64e639efc0b9f269f","tgt_lang":"hi","translated":"कैश पठन","updated_at":"2026-06-26T21:34:51.300Z"} +{"cache_key":"848f3cbbe4137fe7451a9a88d218f1dffb9bf6508a1236551b93bb07cb6a7095","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"hi","translated":"इंस्टॉल किए गए","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"84a447136e4b1496de19086214b4505027cf8230836d23d567a640731f36ba5d","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.channelChipTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{tokens} tokens on this channel","text_hash":"2f961c917719fceaa0b9fd222ea8590637986dce227e23deeeaf63b6cf11e9f8","tgt_lang":"hi","translated":"इस चैनल पर {tokens} tokens","updated_at":"2026-07-09T11:27:28.426Z"} {"cache_key":"84a7ade6b500d118011c3fc1971120c1085d2974fff452735ede97f8092f5161","model":"gpt-5.5","provider":"openai","segment_id":"agents.context.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Agent Context","text_hash":"e95dfac3306c6052222ee5f2007267d30280c46d5dfa4600ee86f56a6d20b27b","tgt_lang":"hi","translated":"एजेंट संदर्भ","updated_at":"2026-06-26T21:30:41.032Z"} {"cache_key":"84c1e84663459582e0df993bb83d096c6597382eb3f3c97d10cdd5c3dc6e4849","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.notCreatedYet","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Not Created Yet","text_hash":"500f7a44bcab4da2208242b950c31777641c02fc8310459474a715f1484989a2","tgt_lang":"hi","translated":"अभी तक बनाया नहीं गया","updated_at":"2026-06-26T21:31:05.913Z"} @@ -860,6 +934,7 @@ {"cache_key":"87040b20d65c8d05d5313536dd22bf82b3881eb50b9e9aad899dab56c7c40d0c","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"hi","translated":"कोई मिलती-जुलती फ़ाइल नहीं।","updated_at":"2026-06-26T21:36:39.137Z"} {"cache_key":"877e9866e80a14bcdaa92724c88139af82586c3835c3b5408acfbf8028e638ef","model":"gpt-5.5","provider":"openai","segment_id":"chat.hideCronSessions","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Hide cron sessions","text_hash":"32ac86b13fa25acc4626f518ba49fe9c6307d7bb1b518e05c7eaf4b327a85840","tgt_lang":"hi","translated":"cron सेशन छिपाएं","updated_at":"2026-06-26T21:36:16.800Z"} {"cache_key":"87a2e4b59f7aeae0ecebbc6157ae09db8ee50e16d10261583f640b7c4ea4a011","model":"gpt-5.5","provider":"openai","segment_id":"instances.toggleHostVisibility","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Toggle host visibility","text_hash":"dd0188424f6a0434d4af848b7462f4d12da05800bfc24d82cb2c0d7e443b657b","tgt_lang":"hi","translated":"होस्ट दृश्यता टॉगल करें","updated_at":"2026-06-26T21:30:08.627Z"} +{"cache_key":"87a954f616da25ebe8a6d17b7b16ecd878a2fc59859e5622b079ef0a6ddeb0fe","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"hi","translated":"बिल्ड किया गया","updated_at":"2026-07-10T09:47:11.706Z"} {"cache_key":"87c77efe253831f52d50ab5a8fa673ed6e3b2e16ecd7110a078848180b0681a8","model":"gpt-5.5","provider":"openai","segment_id":"chat.queue.retrySend","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Retry send","text_hash":"6bc12f1358f60603697a3ee98f94fb63f271a24007b4c08ec655c805880aa577","tgt_lang":"hi","translated":"भेजने का पुनः प्रयास करें","updated_at":"2026-06-26T21:36:30.561Z"} {"cache_key":"87c7a37775a2e34cebe6f7ee15c3a7f57ad92741c9c4e8972cbaa742124bc500","model":"gpt-5.5","provider":"openai","segment_id":"usage.export.sessionsCsv","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Sessions CSV","text_hash":"9b0913342966fc345b0390547e157f2a56ed3d31606eef63511fa26d5710c4bf","tgt_lang":"hi","translated":"सत्र CSV","updated_at":"2026-06-26T21:34:43.709Z"} {"cache_key":"87d317e4fc1a7e6b84fe1dd5474140edb5ba615492879549f32fa6e6c4f018a3","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.messages","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Messages","text_hash":"04d7b48339271ea67d3c8493e07e90bc68dc565485eebe5e0b67c21c1586e3c0","tgt_lang":"hi","translated":"संदेश","updated_at":"2026-06-26T21:34:59.501Z"} @@ -874,6 +949,7 @@ {"cache_key":"89819e312c500deb8b6b5f62d821fc518abf247c3bc425187f0e5a369e8f412a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"hi","translated":"रीफ़्रेश विफल","updated_at":"2026-06-26T21:32:33.484Z"} {"cache_key":"8997f548f8aa9765de469469dff55840e8b591ae747974c9d9e5767baaaf1edb","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"hi","translated":"{count} अटैचमेंट","updated_at":"2026-06-26T21:32:45.360Z"} {"cache_key":"899b0974ded407e39c9b27e3fec2d5cfb77a7add498a50860f61387ac5908a13","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.selectAll","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Select All","text_hash":"d1ec69e64b9609d089aae09f7adc5c566d2cd222f8d8325f0ab3b523f0ac2690","tgt_lang":"hi","translated":"सभी चुनें","updated_at":"2026-06-26T21:34:37.383Z"} +{"cache_key":"89a89ee7c9c021431e6ef9ad69b208cd485ce713258211ced0dbbb909075fd24","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"hi","translated":"खोजने के लिए कोई मेल नहीं मिला","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"89cb610677bfc2beb4f3df3a51bac15d21047494ab2c0b6775513ed5509e4934","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.user","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"user","text_hash":"04f8996da763b7a969b1028ee3007569eaf3a635486ddab211d512c85b9df8fb","tgt_lang":"hi","translated":"उपयोगकर्ता","updated_at":"2026-06-26T21:34:59.501Z"} {"cache_key":"89d517ee4a05a9755a34b59165deb5f7108ae9888fe925f515585959c6b94dc1","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.sessionsCapped","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count}+","text_hash":"4af395b8d907e1cc1d3de75eb4644a9ed3a243f5f5a66f93da927d7899844d57","tgt_lang":"hi","translated":"{count}+","updated_at":"2026-07-09T11:27:33.869Z"} {"cache_key":"8a1e202bc3e497e7a09188ee1362d64e4ddac380737becadf4fb854ab910f541","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.limit","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Limit","text_hash":"674b0ed54bf7667356c19baaf2ec56d4432d485bf0ebc6d687ad6e50e9611880","tgt_lang":"hi","translated":"सीमा","updated_at":"2026-06-26T21:30:08.627Z"} @@ -908,6 +984,7 @@ {"cache_key":"8d594705315e8d43f841321cc0cc9fd079b05d171201dc99fcc9eb791056b831","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.coreFilesSubtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Bootstrap persona, identity, and tool guidance.","text_hash":"d75ad947c2751bddf5612450c6bf1d53c8ae3d8fe51dc9479032eb677d081662","tgt_lang":"hi","translated":"बूटस्ट्रैप पर्सोना, पहचान, और टूल मार्गदर्शन।","updated_at":"2026-06-26T21:30:58.804Z"} {"cache_key":"8dc0dc99ad2d5137edfe2458da6269e4f7e4c4dca5176eb470be4bb256cf713c","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"hi","translated":"CWD","updated_at":"2026-06-26T21:38:12.145Z"} {"cache_key":"8de6a467a10bc497ebcac2de5e64db214106adbc6f59937cb933a6efa67a1c94","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"hi","translated":"ऑपरेटर नोट्स","updated_at":"2026-06-26T21:32:11.358Z"} +{"cache_key":"8e18424e7cf3c143deabb5e40e14c8ea43040bbe914dcfcfd8f757fd37abd4cb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"hi","translated":"{name} सक्षम किया गया।","updated_at":"2026-07-10T02:25:41.019Z"} {"cache_key":"8e2a92e90345e4251e948694555d3edf2e278966d8a4777572add06d790f31d0","model":"gpt-5.5","provider":"openai","segment_id":"overview.connection.copyCommandAria","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Copy command: {command}","text_hash":"4a64ab8ca7028e805dd433324f99425d8c7551468730f687b83e350683c331e6","tgt_lang":"hi","translated":"कमांड कॉपी करें: {command}","updated_at":"2026-06-26T21:33:34.535Z"} {"cache_key":"8e2cff7d9291c72524e0f9bcb95db704f9ab961d8ec04c3106a105abb73c2c6e","model":"gpt-5.5","provider":"openai","segment_id":"common.waitForScan","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Wait for scan","text_hash":"bd99a64030bbae315da9bba62c2ea6493386708c738d3b9ab0cb815e9be6c748","tgt_lang":"hi","translated":"स्कैन की प्रतीक्षा करें","updated_at":"2026-06-26T21:29:38.612Z"} {"cache_key":"8e4cb03db595cd88f859ea3cf20cadeeb4a08261506c19ef5d317236ae602a1c","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.timeZone","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Time zone","text_hash":"b9fe1464783e1c0d3a12dbde2686e883482a4fa03f33351af3e576d7a9d32fe0","tgt_lang":"hi","translated":"समय क्षेत्र","updated_at":"2026-06-26T21:34:37.383Z"} @@ -917,6 +994,7 @@ {"cache_key":"8e8819df3b420a4c6765cc40f2fb075a8a35434129c429623f145dacca17f2b0","model":"gpt-5.5","provider":"openai","segment_id":"agents.cronPanel.nextWake","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Next wake","text_hash":"ca81db1824463cdac39c106074e8d3b9e431dc44ce1c7b96c5b57fdde374d5c2","tgt_lang":"hi","translated":"अगला वेक","updated_at":"2026-06-26T21:30:49.011Z"} {"cache_key":"8e9f731ffefa8d980559a0855867ef00e2e48c9ab5600ed5b1018ec6df6dfd9e","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventEdited","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Edited","text_hash":"7117f0807129493fd1f4d6942340d55e82980ef0a82bf629871829666824c7b3","tgt_lang":"hi","translated":"संपादित किया गया","updated_at":"2026-06-26T21:33:00.304Z"} {"cache_key":"8efb1d69bef02360ccbab2315887d00af82e50ea4a449c5363ce79415098cdc5","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.diary.reload","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Reload","text_hash":"bdc090ec61e3fcfc65f469951dfe00f3f2ecfc6003c44deac8e05b7237092de6","tgt_lang":"hi","translated":"रीलोड करें","updated_at":"2026-06-26T21:34:24.815Z"} +{"cache_key":"8f50b3da2f7512c0d67adc7fe2d1b76c76856ac3a345f4c7fd42373a935e7cf1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"hi","translated":"ClawHub ब्राउज़ करें","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"8fb0d8b0c2be1d1d1761dd994e5b3b36248a9df569e7192c3aeae05b2d77b339","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.selected","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} selected","text_hash":"529aacfdfd2b17bf9fe56ebad9a24339a2d1151327dd420c52c5f163aeb9acc6","tgt_lang":"hi","translated":"{count} चयनित","updated_at":"2026-06-26T21:30:15.460Z"} {"cache_key":"8fe9eee471bd28d292dff66651de84e1797790aedbf4fcc71280e7520c5bb755","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.schedules.weekly.description","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Every Monday at 9:00 AM","text_hash":"bedf746e8750ac13c045b772742a4d7139986ec1945de46b541b20cd59f55eb1","tgt_lang":"hi","translated":"हर सोमवार सुबह 9:00 बजे","updated_at":"2026-06-26T21:36:59.582Z"} {"cache_key":"902c663a46f9d4cf9c2e668a916f47a82b6a723eed5b3b090877c26cd00a6f48","model":"gpt-5.5","provider":"openai","segment_id":"activity.noOutputPreview","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No output preview.","text_hash":"6464da9ee34177f2ed51fd2fd357f7a5be1e8e9c75222c951f906028304ee026","tgt_lang":"hi","translated":"कोई आउटपुट पूर्वावलोकन नहीं।","updated_at":"2026-06-26T21:31:52.012Z"} @@ -928,18 +1006,22 @@ {"cache_key":"90e32932c6baee1aeb9d8c38a9f14cd1973995c2a98fe7f3c5c12e4849754b08","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.rateLimited.stepCheckClients","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"If this is a shared host, check other clients for repeated bad retries.","text_hash":"55693cc8b58277fc5db1965b3817e3fe8460385e937e31e84c375472f2ab352d","tgt_lang":"hi","translated":"यदि यह साझा host है, तो बार-बार खराब retry के लिए अन्य clients जाँचें।","updated_at":"2026-06-26T21:35:56.265Z"} {"cache_key":"90e70c7e2877603e41a6f3ebd618a15afcd1e2e27662720dc472acf6a73cea42","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"hi","translated":"Gateway कार्य","updated_at":"2026-06-26T21:32:04.902Z"} {"cache_key":"911e04a69ed7969066d83729ebc076e86c739a1c5cfc274853a70fd046c2186f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"hi","translated":"कल","updated_at":"2026-07-05T14:39:53.244Z"} +{"cache_key":"9130e69d078043f5a50a8e0a48974f980c364b104d94b2501026b600f8fd7c70","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"hi","translated":"बंडल प्लगइन","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"913871dfd0ca980b589f66c9dcda77c9aa29391486865eef1ccb9486d3e1a291","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.cost","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Cost","text_hash":"204a5eb2cd28bcfdf3be9f8c765948e9e831609e3c57048cdbd6b8a94cf49126","tgt_lang":"hi","translated":"लागत","updated_at":"2026-06-26T21:33:34.535Z"} +{"cache_key":"913c2d00b8b629f1bb5f05eeb7930447c1d868d3bfc27421591f42223e5ff11e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"hi","translated":"केवल ब्राउज़िंग। Plugin बदलावों के लिए operator.admin पहुँच आवश्यक है।","updated_at":"2026-07-10T02:25:41.019Z"} {"cache_key":"913fd9ec146cb8b66338f046d4dd989491734761ef0578068923d9db3dc591da","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.promotingHunches","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"promoting promising hunches…","text_hash":"493f45d89bba211da77e3de94c05d9a51a4b87537a6778114b8670ee892c0ae3","tgt_lang":"hi","translated":"आशाजनक अंतर्ज्ञानों को आगे बढ़ाया जा रहा है…","updated_at":"2026-06-26T21:34:24.815Z"} {"cache_key":"91416adaf25f98f3599726026ad3484a534bab5b6c11e9cf72eccb880e8a5977","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.tools","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"hi","translated":"टूल्स","updated_at":"2026-06-26T21:35:26.182Z"} {"cache_key":"91a53e667b13f9269090f130aeb026adde6121bb03a459dddb0eddaeb893544a","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.modelAuthProviders","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} providers","text_hash":"3cfca69a188175f98794914c9e2b5f7a1a8c4bb6d797ae07ba871e02470182f6","tgt_lang":"hi","translated":"{count} प्रदाता","updated_at":"2026-06-26T21:33:40.484Z"} {"cache_key":"91ac18b28a1f2b84c212824c6816cad1f99f3ebbf63cc7c1d41cf515d01bdd4c","model":"gpt-5.5","provider":"openai","segment_id":"agentTools.connectedSource","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Connected: {id}","text_hash":"ab0206010190ba2d650ef8e223392239cdd44cb2d7aec00e40499da324731f95","tgt_lang":"hi","translated":"कनेक्टेड: {id}","updated_at":"2026-06-26T21:31:18.653Z"} {"cache_key":"91ce885eda659efef28e453c8401940dabcda612fad501e4dc879435c70c1c6d","model":"gpt-5.5","provider":"openai","segment_id":"chat.welcome.suggestions.configureChannel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Help me configure a channel","text_hash":"dcc188b3b71988e9e9805849e26a0d8e2adf10b290fba621e0d8aafab9dec980","tgt_lang":"hi","translated":"चैनल कॉन्फ़िगर करने में मेरी मदद करें","updated_at":"2026-06-26T21:36:23.330Z"} +{"cache_key":"921d478677545dd82131e1bc46c14e74975fdc990687cc831cd84b479756a20a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"hi","translated":"प्लगइन खोजें","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"923a1b5fc845ba87b6b4d10e02b113c4e950ccc8bf9867745afbbfe6ea104d4d","model":"gpt-5.5","provider":"openai","segment_id":"tabs.appearance","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Appearance","text_hash":"3907fa7f80722a6fc58cd8c1bd30abf7638095d6774f183b6e831b7093957d1b","tgt_lang":"hi","translated":"दिखावट","updated_at":"2026-06-26T21:31:23.820Z"} {"cache_key":"925116355a276b948e5e0f9596b74febdd100f1f408029ece86b64b1aeb20e33","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.sessions","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Sessions","text_hash":"6fa3cbf451b2a1d54159d42c3ea5ab8725b0c8620d831f8c1602676b38ab00e6","tgt_lang":"hi","translated":"सत्र","updated_at":"2026-06-26T21:34:59.501Z"} {"cache_key":"92d705fe6c2583612c1638db26231206399e66a53652ff18649354639bf5e424","model":"gpt-5.5","provider":"openai","segment_id":"nodes.binding.execNodeBinding","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Exec node binding","text_hash":"4f421128b0cba9533df139c20d023669afc1a78e06544578fa84c32681a863bc","tgt_lang":"hi","translated":"Exec नोड बाइंडिंग","updated_at":"2026-06-26T21:29:59.416Z"} {"cache_key":"92d817e6727e5396a797d5059b87da4e7322965fe660f01188af600ce229e89d","model":"gpt-5.5","provider":"openai","segment_id":"usage.scope.instanceHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Show only the active session id for each logical session.","text_hash":"0a76b08d0a5201c80ac7ea92c073250bba81d0271232ce5e6c0297ada36598c9","tgt_lang":"hi","translated":"प्रत्येक लॉजिकल सेशन के लिए केवल सक्रिय session id दिखाएँ।","updated_at":"2026-06-26T21:34:31.303Z"} {"cache_key":"92f3744b9c7f3b22802d808e119a8c21f1a73169cb2678e1091d18690ed32dc0","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobList.run","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"hi","translated":"चलाएँ","updated_at":"2026-06-26T21:38:12.145Z"} {"cache_key":"933b4981188dac27cebc29b6db075731a0c1368854b4403d4547803dae7ed92e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"hi","translated":"चैनल","updated_at":"2026-06-26T21:34:43.709Z"} +{"cache_key":"937d2ceb68f06812b70854fedf01b1f9ae10991f18dffb42f6be876326bc5ea3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"hi","translated":"अक्षम","updated_at":"2026-06-26T21:29:24.057Z"} {"cache_key":"939e1879f7cf14b9659c8f141b7aa5dee7f9f7e391ecc50a5db345d2b027b8e2","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.days","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Days","text_hash":"e08c0aa8f558f39fa99077e92036cf7d2210fe88ffae4d3b30fd489d9ac99e02","tgt_lang":"hi","translated":"दिन","updated_at":"2026-06-26T21:34:37.383Z"} {"cache_key":"93bbe0db0fe2f7402cccb398aefcb4ebd0f9d6c95c7d9adec724190700127149","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"hi","translated":"{count} बदले गए","updated_at":"2026-06-26T21:36:47.054Z"} {"cache_key":"93c2287380ab902586a0939238975085981ef86724d1060773b08f86d94f6510","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.noProfileHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Click \"Edit Profile\" to add your name, bio, and avatar.","text_hash":"01b132f60532b898c87043251eb68a551295f000ea0550fa9d9cda65e6a7fcd5","tgt_lang":"hi","translated":"अपना नाम, बायो और अवतार जोड़ने के लिए \"प्रोफ़ाइल संपादित करें\" पर क्लिक करें।","updated_at":"2026-06-26T21:29:48.427Z"} @@ -972,6 +1054,7 @@ {"cache_key":"97ea4a9e1424a27e8f8aed696373efb3d79b3acafa2b63153fcefa522dfec23c","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.restartConfirmation.subtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Changing Dreaming mode restarts the gateway.","text_hash":"4ab5fbac2418056100d534df3c4ea4508fa1ad29842be40a23b5396136137ad3","tgt_lang":"hi","translated":"Dreaming मोड बदलने से gateway पुनः आरंभ होता है।","updated_at":"2026-06-26T21:33:54.151Z"} {"cache_key":"97f21683dbeccc50c53a5300f05d4c5a365fa08a5dbf1fe9fa8dae41bf99b680","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeProof","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} proof","text_hash":"648152d9be55ae913213e40c0b58a975437c088cff2e5475c20ffe8de8006750","tgt_lang":"hi","translated":"{count} प्रमाण","updated_at":"2026-06-26T21:32:45.360Z"} {"cache_key":"97fc614f4a5b6a089699e1114e5c067532e9ecd705436d3cc86a2bd3ae10564d","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.expired","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"expired","text_hash":"fa64ea1e82e1206f828ab2a02917c7e92accb98e3b95881a1b4ad52b914b66e3","tgt_lang":"hi","translated":"समाप्त","updated_at":"2026-06-26T21:31:12.170Z"} +{"cache_key":"9806bffae46406f1dd548b8713eb43c4b363d79a788f5b8266f3152d631f4438","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"hi","translated":"वैकल्पिक OpenClaw क्षमता।","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"98191aaf2136c7e5469f2370c406fe0437885ddad34670543cd7cef33e2cb715","model":"gpt-5.5","provider":"openai","segment_id":"common.yes","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Yes","text_hash":"85a39ab345d672ff8ca9b9c6876f3adcacf45ee7c1e2dbd2408fd338bd55e07e","tgt_lang":"hi","translated":"हाँ","updated_at":"2026-06-26T21:29:19.678Z"} {"cache_key":"985171b66358fce8ec8254e2a0be31b924b14b0ffef73ec722148cbacdca2500","model":"gpt-5.5","provider":"openai","segment_id":"workboard.showArchivedShort","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"hi","translated":"आर्काइव किए गए","updated_at":"2026-06-26T21:32:25.930Z"} {"cache_key":"985e18362fdfd891f5c371e6755d68f7e921195cd083f5f3d9c8679bcea876d5","model":"gpt-5.5","provider":"openai","segment_id":"workboard.editCard","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Edit card","text_hash":"42eb1e3f7227aa186300a05f687c27f0f44355ca75acfdeae3e25a01fa69f4d7","tgt_lang":"hi","translated":"कार्ड संपादित करें","updated_at":"2026-06-26T21:32:04.902Z"} @@ -1063,6 +1146,7 @@ {"cache_key":"a5d70b9d3880978a76be6e0be47c7a042e78fcc1ddcab53786a527b912c5836e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"hi","translated":"अनुपलब्ध होस्ट: {count}। अन्य होस्ट उपलब्ध हैं।","updated_at":"2026-07-09T10:01:43.755Z"} {"cache_key":"a610287eb983e7aafc19e637d19375cd881adc527646e8222cba8f607d2e16b3","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"hi","translated":"नवीनतम पूर्ण, विफल और रद्द किए गए कार्य।","updated_at":"2026-07-09T21:53:21.090Z"} {"cache_key":"a6292f72a575db55e84f1a0dca161a26528ce66e80cbc2bbaec8afc54845c914","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.bannerHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"HTTPS URL to a banner image","text_hash":"5feb792028cf20b11294d2bed052e34770970d0a8a991fdc8eeb39045a9c42ca","tgt_lang":"hi","translated":"बैनर इमेज का HTTPS URL","updated_at":"2026-06-26T21:29:59.416Z"} +{"cache_key":"a63cfcd2986cd427c43237bd40a0c4566da9a0097a65bebaf51dc6cca3dbb880","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"hi","translated":"ClawHub","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"a6574d8dd9653b427956f840a152a4fcfbfe1e555994d7ca6fd2058f82c6f82c","model":"gpt-5.5","provider":"openai","segment_id":"languages.ko","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"한국어 (Korean)","text_hash":"30f959f34501d524b06cf98b3711cdffea10a6479a316cf2c030362e8d274740","tgt_lang":"hi","translated":"한국어 (कोरियाई)","updated_at":"2026-06-26T21:36:47.054Z"} {"cache_key":"a66966080ed9279b7f0f4b671ac0d513b58980e69b386f1d9f778cdb161397b8","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.status.active","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Dreaming Active","text_hash":"fd7a73177f09d63e4afe11f3ac6e028368eb1c3163b80022a9bf46b94e1b658a","tgt_lang":"hi","translated":"Dreaming सक्रिय","updated_at":"2026-06-26T21:33:54.151Z"} {"cache_key":"a72081da0f30cfadc4cfe1b1f81579534cde38adff49fad029224a707ed66413","model":"gpt-5.5","provider":"openai","segment_id":"overview.stats.instancesHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Presence beacons in the last 5 minutes.","text_hash":"72eb6f03b1eeea63f50ef39b6322727f749a6e49eadbdd343d1e235620cbd814","tgt_lang":"hi","translated":"पिछले 5 मिनटों में उपस्थिति बीकन.","updated_at":"2026-06-26T21:33:15.607Z"} @@ -1091,6 +1175,7 @@ {"cache_key":"aa99a0bbc042efe0899477fc4e3b398604e959d6094b0daca9889f4ce27df64b","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"hi","translated":"MCP सर्वर, auth, टूल, और डायग्नोस्टिक्स।","updated_at":"2026-06-26T21:31:44.582Z"} {"cache_key":"aa9b51e68124e57e60bd109e67d4ee5bbe8613eaa7cd09bc85da20401b2dbf89","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"hi","translated":"पुनर्स्थापित करें","updated_at":"2026-07-05T21:01:02.212Z"} {"cache_key":"ab18ec18bfd9c36262a83ccd32c1946fdca0bfbcf7191a8982ae84d6cb62c4e1","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"hi","translated":"कोई नहीं","updated_at":"2026-07-05T14:39:53.244Z"} +{"cache_key":"ab4452bb4bf79ff64185cd096433fd04bfbe8e4a23d1ae7abad1ac75c7239eae","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"hi","translated":"यह प्लगइन हटाएँ?","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"ab55cc8b9bffe1acbf0b609d8fef74e1b7eca619c3e70756fa77d88b18ca9c28","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.bestEffortHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Do not fail the job if delivery itself fails.","text_hash":"8918ef73561c96327b9a787e29004f468e5641b126fe2d28991df4020e5b7859","tgt_lang":"hi","translated":"यदि डिलीवरी स्वयं विफल हो जाए, तो जॉब को विफल न करें।","updated_at":"2026-06-26T21:38:06.735Z"} {"cache_key":"abdeefa8280021a5b497bad00899b6dcabec702bfbb049b3db7fea814f468adb","model":"gpt-5.5","provider":"openai","segment_id":"workboard.fieldSession","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"hi","translated":"सत्र","updated_at":"2026-06-26T21:32:39.899Z"} {"cache_key":"abe33e6aef824f513e1f75eec10f53a9ff6bc640ebb558fe7e3ae9190a70d1ab","model":"gpt-5.5","provider":"openai","segment_id":"tabs.channels","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"hi","translated":"चैनल","updated_at":"2026-06-26T21:31:23.820Z"} @@ -1100,6 +1185,7 @@ {"cache_key":"ac09c25cc94307c82cff72526abbe55c4612a221d87423c060cc77793756fff9","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.clear","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Clear","text_hash":"83b12c2216efb4fdc924e1deb5182e905e4926ed0c1c324d467107f46d5a26a9","tgt_lang":"hi","translated":"साफ़ करें","updated_at":"2026-06-26T21:34:37.383Z"} {"cache_key":"ac5fa40298cb7f77c985d7c8ba466c24d4833c2509cb538b9fcbdba38d17016d","model":"gpt-5.5","provider":"openai","segment_id":"common.enabled","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"hi","translated":"सक्षम","updated_at":"2026-06-26T21:29:24.057Z"} {"cache_key":"ac892afebcc1e7c7f76c06d995433bda6f8eeecff6adbc4e7099a282c8b37862","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobList.enabled","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"enabled","text_hash":"fb9cf75606b4070dd6a9705810906bba28d0e2ea74ff301b999a91dbb68c7d98","tgt_lang":"hi","translated":"सक्षम","updated_at":"2026-06-26T21:38:06.735Z"} +{"cache_key":"acf58608e39288842a15767d3b77abcb74ebada19a80b32fea58b2dc40bee3ca","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"hi","translated":"ClawHub पर खोजें","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"ad3445d23704b870e44d991a362e386a3e64d773f3b3de59e75ccc332d3da984","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Daily Log Review","text_hash":"44fc6083dd2c1241ce8e230650168a41c72505aed45de4f86b0c203ad4d12fda","tgt_lang":"hi","translated":"दैनिक लॉग समीक्षा","updated_at":"2026-06-26T21:34:03.457Z"} {"cache_key":"ad3a4da58c4841545bd38d92f9ac55521d016a8efbda1bddf35a1a4e4c4da020","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.bio","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Bio","text_hash":"3933b1802161254f41c59f2909f61ac994c086e1cde03848c4c310f45b5b4999","tgt_lang":"hi","translated":"बायो","updated_at":"2026-06-26T21:29:48.427Z"} {"cache_key":"ad3e44e2996caaa2a54c5fbb573a6dd305a09bba164ee2d25dc1bb0614d1454d","model":"gpt-5.5","provider":"openai","segment_id":"languages.fa","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"فارسی (Persian)","text_hash":"16396f00e9a73b7e86b42f29489fb5939ce17072cf9ee031a9186490da5e05e3","tgt_lang":"hi","translated":"فارسی (Persian)","updated_at":"2026-06-26T21:36:51.337Z"} @@ -1107,10 +1193,12 @@ {"cache_key":"ad60117ae3901c6a3bc2168a2ba0642cadb0779780c65b8dd60be603f4176ae9","model":"gpt-5.5","provider":"openai","segment_id":"tabs.dreams","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Dreaming","text_hash":"c82c37f336bc03f4c2a8f4896faab890ee3b96b54f5cea23c72d82b7c7540d16","tgt_lang":"hi","translated":"ड्रीमिंग","updated_at":"2026-06-26T21:31:33.548Z"} {"cache_key":"ad9d824bfefa21c5a917af5e60a58f2e1cd335045b18de0da734b19aa3d88817","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.noErrorData","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No error data","text_hash":"bcd5ab2cea9c09c2f1d333e8b7b27e1fbef2447b8c4f7955ac0c0fcc6879f617","tgt_lang":"hi","translated":"कोई त्रुटि डेटा नहीं","updated_at":"2026-06-26T21:35:13.036Z"} {"cache_key":"adab14668f8d5f37aaff3d7bf009d460175e02f1d254d0857c496c79a64401c4","model":"gpt-5.5","provider":"openai","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"hi","translated":"वर्कबोर्ड स्वास्थ्य","updated_at":"2026-06-26T21:32:33.484Z"} +{"cache_key":"adae03f20e1f61c06275b8ba3044bd6ba6e6908e6820976c5a491035c30510ef","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"hi","translated":"ध्यान देने की आवश्यकता है","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"adcb99c1233b502bf2443527de2b808e929da548d10e09872f3435542d786a3d","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightMessages","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Messages exchanged","text_hash":"3e0eaa1c266dfdf2f9799c1f3c574da7533f63057934e0aa003eddabc517cfbe","tgt_lang":"hi","translated":"आदान-प्रदान किए गए संदेश","updated_at":"2026-07-09T11:27:33.869Z"} {"cache_key":"adee549abe66d479d5bea6f3e279d8a5c8900179cf3b81a090b1feb2f999165d","model":"gpt-5.5","provider":"openai","segment_id":"workboard.stopSession","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Stop session","text_hash":"e4d1dad5c74ad296c45ca01ac7e9e7fedffc7478a3556f8962465760b98c5391","tgt_lang":"hi","translated":"सत्र रोकें","updated_at":"2026-06-26T21:32:04.902Z"} {"cache_key":"adf6be3feddddf223943a250665b1bd687952ffb9838ecb12939cb7f494f0e28","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"hi","translated":"सक्रिय","updated_at":"2026-06-26T21:29:19.678Z"} {"cache_key":"ae0432e4f0b508de7847bf029fe71573c9e0974a39e545dd33808fca06cc7dd7","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.model","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"hi","translated":"मॉडल","updated_at":"2026-06-26T21:38:06.735Z"} +{"cache_key":"ae12feb533dc848a028307fe560d0e02f9f9b4870ee716859b528ce58c0aa3f7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"hi","translated":"“{name}” नाम का MCP सर्वर पहले से मौजूद है।","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"ae5c4e693243987fe7ff095bb0462c68ac53b468ae63ab7818b8f38c7a9c8b1d","model":"gpt-5.5","provider":"openai","segment_id":"nav.settings","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Settings","text_hash":"74a883a037bc227f91891ab654a753d3a99f31ab06ae5b5d2b6e594a692b41f8","tgt_lang":"hi","translated":"सेटिंग्स","updated_at":"2026-06-26T21:31:23.820Z"} {"cache_key":"ae61529924238fdf8b647850e87f2f4c2ff67bfb21a78b4f64cb21e883b02574","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.labels.host","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Host","text_hash":"4a823118b9ba8baa2f47489c0716f52755368e3e3c2c26d60736ccfa1bb21b5e","tgt_lang":"hi","translated":"होस्ट","updated_at":"2026-06-26T21:31:18.653Z"} {"cache_key":"ae7641af3e793f7f070f7fea3951ebb000566ed3e7f721f062b1a1e3742fad00","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"hi","translated":"समूह","updated_at":"2026-07-05T14:39:53.244Z"} @@ -1154,6 +1242,7 @@ {"cache_key":"b3669f942dc6076948de44e47887b43e3672cab65344378650e0977e658ce35f","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.allowAlwaysUnavailable","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"The effective approval policy requires approval every time, so Allow Always is unavailable.","text_hash":"bc0b6af4eb85de77bb60acb987e4bf54887754dbabdf131feede4c609c7eb551","tgt_lang":"hi","translated":"प्रभावी अनुमोदन नीति हर बार अनुमोदन की आवश्यकता रखती है, इसलिए हमेशा अनुमति दें उपलब्ध नहीं है।","updated_at":"2026-06-26T21:31:18.653Z"} {"cache_key":"b38a4a40eedf54d622a1fb6ec5de23b492eff2c1059706edc193b2b192d9cdc2","model":"gpt-5.5","provider":"openai","segment_id":"overview.access.toggleTokenVisibility","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Toggle token visibility","text_hash":"81fc4b962be0e4a4748879f1645272c8f2302e101c59544f1fac347b3f892f26","tgt_lang":"hi","translated":"टोकन दृश्यता टॉगल करें","updated_at":"2026-06-26T21:33:15.607Z"} {"cache_key":"b3e7648cb29bccd5779be6d26c9c23433b342b5bc325d7c246ede2e5936765dc","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.yes","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Yes","text_hash":"85a39ab345d672ff8ca9b9c6876f3adcacf45ee7c1e2dbd2408fd338bd55e07e","tgt_lang":"hi","translated":"हाँ","updated_at":"2026-06-26T21:37:06.965Z"} +{"cache_key":"b41d78b2ae422365e8ebe2ad975ce2995336dcfd889023f3386dd171f902072e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"hi","translated":"काम और उत्पादकता","updated_at":"2026-07-10T05:22:16.629Z"} {"cache_key":"b421787285f182cc3001d3dd607400c889ae6402a56c29f4c7f658a8786ce315","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.schedules.everyEvening.label","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Every evening","text_hash":"6cfac2283ab963ff7706bfd20762eb46743ad398883ae9f1cebad84ce5a1ea53","tgt_lang":"hi","translated":"हर शाम","updated_at":"2026-06-26T21:36:51.337Z"} {"cache_key":"b4251a5690d8d5a2bcb27d64e74d0c26d6aadaba7113eb56a8421855721b043f","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.tabs.diary","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Diary","text_hash":"bc64125d752f42799834eb82cdc0967a265728ba33c0a9fce365bfd300dff964","tgt_lang":"hi","translated":"डायरी","updated_at":"2026-06-26T21:33:46.154Z"} {"cache_key":"b4289257120075c5693a0beca6a4f48418bbfe7d837fb0143afd13374537689e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"hi","translated":"होस्ट","updated_at":"2026-07-09T10:01:43.755Z"} @@ -1164,6 +1253,7 @@ {"cache_key":"b524d7485cfb4a29ea8e118177cabc46ffd21f54ba29c8fe1cd8d100441c3094","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.security.toolProfile","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Tool profile","text_hash":"7fddfc798851c46789ef9d249867eb179988e4ec4b48205b0e8871a92e5715ce","tgt_lang":"hi","translated":"टूल प्रोफ़ाइल","updated_at":"2026-06-26T21:31:12.170Z"} {"cache_key":"b5448590d098039bec6067c5cb105314349b2ac8d7107de8300a818c3353ef07","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.createSubtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Create a scheduled wakeup or agent run.","text_hash":"63ed10abfd41f9a26d9630dfb564122e33a033a0abcee985c0c935076fa0e269","tgt_lang":"hi","translated":"एक शेड्यूल किया गया वेकअप या एजेंट रन बनाएँ।","updated_at":"2026-06-26T21:37:31.894Z"} {"cache_key":"b5549aca013edb55a73e8b2a7d41dad1ec58af849dcb660ff91acb597159e062","model":"gpt-5.5","provider":"openai","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"hi","translated":"वर्तमान चैट का उपयोग करें","updated_at":"2026-06-26T21:31:44.582Z"} +{"cache_key":"b57329766259008f70ce2d57f23e793e2616102a765795929ef0f50afe900fbc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"hi","translated":"{name} जोड़ा गया। “{command}” से प्रमाणित करें, फिर gateway को रीस्टार्ट करें।","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"b587f60b40a2379ddf3012343ce5a48df4d771e6a8ed3083d122bfeabe3d5cc1","model":"gpt-5.5","provider":"openai","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"hi","translated":"सघन कार्ड घनत्व","updated_at":"2026-06-26T21:32:33.484Z"} {"cache_key":"b5c647ac9eb83f2cccfb678e08442c2a8a06a575754556bcd8ba0525f480b902","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"hi","translated":"सामान्य","updated_at":"2026-07-09T08:07:58.874Z"} {"cache_key":"b5d3b977c19f094ddbc3851216e51c2e86179629a80fdb70feb4698abe1bd0e7","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.noMatching","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No matching runs.","text_hash":"567dd6add9cc8e3c398162d00493ca9f17fcd61ca079c5d8650f02d3f8ee0410","tgt_lang":"hi","translated":"कोई मेल खाते रन नहीं।","updated_at":"2026-06-26T21:37:23.206Z"} @@ -1190,10 +1280,14 @@ {"cache_key":"b98c3473ef0335b903c970947a258e62785566313d74cba23fe1dc5c97d7c302","model":"gpt-5.5","provider":"openai","segment_id":"languages.nl","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Nederlands (Dutch)","text_hash":"0287fda204edd760d95a69ab350efebd123bd93b6c0b5d19a9d60b81147f15f6","tgt_lang":"hi","translated":"Nederlands (Dutch)","updated_at":"2026-06-26T21:36:51.337Z"} {"cache_key":"b9a9cc103c9af75a4b41a8978ea4c6acc47d19a86491d0ce09bb491feeff92b6","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.security.browserEnabled","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Browser enabled","text_hash":"121adc46173e9ec6185795ba831aced999439bad98133ff94743b8f2ad5ec768","tgt_lang":"hi","translated":"ब्राउज़र सक्षम","updated_at":"2026-06-26T21:31:12.170Z"} {"cache_key":"b9d723dc0bafe79b6930be6116e81012f702b9a9164fa9f6c18f2b8f8e6c341b","model":"gpt-5.5","provider":"openai","segment_id":"common.no","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No","text_hash":"1ea442a134b2a184bd5d40104401f2a37fbc09ccf3f4bc9da161c6099be3691d","tgt_lang":"hi","translated":"नहीं","updated_at":"2026-06-26T21:29:19.678Z"} +{"cache_key":"b9e50cecc8a875bde8284b67abc1896d3906a77106181c6e826447c6c4f3d9f5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"hi","translated":"Gateway ऑफ़लाइन","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"b9e95b046fc877b10978344edf79eef917449d06b7986e13dfd042adb61f6a31","model":"gpt-5.5","provider":"openai","segment_id":"overview.access.hidePassword","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Hide password","text_hash":"a60a56c584b3b05b1a95076a36edbab7131a447910cf21124efcb35f769502df","tgt_lang":"hi","translated":"पासवर्ड छिपाएँ","updated_at":"2026-06-26T21:33:15.607Z"} +{"cache_key":"b9f68e65a5dda94bb8cb9430d283f36f8160a7e19ca9f41c0ff45f5ecf5b00ef","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"hi","translated":"{name} सक्षम करें","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"b9f84ddc6de8132bcef1277d6acda165a3fb7120eefa2c7cd029d7362d57f16a","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.header.refresh","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"hi","translated":"रिफ्रेश करें","updated_at":"2026-06-26T21:33:46.154Z"} +{"cache_key":"ba139ecebf5b86fbc54c56202e9db54da3cb1dafee2ef650a8419094d4b4eb64","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"hi","translated":"{enabled} सक्षम, {disabled} अक्षम, {issues} में समस्याएँ","updated_at":"2026-07-10T06:08:51.625Z"} {"cache_key":"ba1f9fe250b6b32b966cc332a719a73ff06966300758d88c1cde92f1a1a511c6","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Usage Overview","text_hash":"4e59a10f60e0e162e55c1c8399a7bc68792b9120c5f57b11f522afd6d0f1971e","tgt_lang":"hi","translated":"उपयोग अवलोकन","updated_at":"2026-06-26T21:34:59.501Z"} {"cache_key":"ba3bbf9030178f1757452d518dc95c9142b6021b3db0a389db319b701913293c","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.restartConfirmation.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Restart Gateway to Apply Change","text_hash":"03bab7944e05cd7f3453161737377ac6aab8c0063452f30f89b1cf096cd2f82b","tgt_lang":"hi","translated":"परिवर्तन लागू करने के लिए Gateway पुनः आरंभ करें","updated_at":"2026-06-26T21:33:54.151Z"} +{"cache_key":"bad23663170e9e9fce125c29bb88b6f20baee760c76a64863357e65d752e9d02","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"hi","translated":"ClawHub पर समुदाय प्लगइन्स","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"bad24d7382f6667de2811e31b9613b9e7e03404ac49a8035672275e454712134","model":"gpt-5.5","provider":"openai","segment_id":"agents.copyId","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Copy ID","text_hash":"72ac0d580f8c4f9f71290b8145faff19e274bffb9fbc753fccbea48e4e36f30c","tgt_lang":"hi","translated":"ID कॉपी करें","updated_at":"2026-06-26T21:30:33.640Z"} {"cache_key":"bada11b4fcfe148d204c14b99edc2ec9b5aba08134328265cc98a8fbdeec347d","model":"gpt-5.5","provider":"openai","segment_id":"common.active","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"hi","translated":"सक्रिय","updated_at":"2026-06-26T21:29:19.678Z"} {"cache_key":"badbb2a120d6d4c7a6484ff9046ae298cbd3d22abe85f46207f0caf467a60859","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.toolResults","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"tool results","text_hash":"a5594e12dfffd8e54c36d9b99bc31c7d41f0389d2251790338f34e836a3211fe","tgt_lang":"hi","translated":"टूल परिणाम","updated_at":"2026-06-26T21:34:59.501Z"} @@ -1211,6 +1305,7 @@ {"cache_key":"bbee05096bbce7992e2c27e9ca226f13e51b2e3b5caf45e8c2df670c12469c0e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.showAll","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Show all","text_hash":"2150d8df37e489573fb8f0f19ef89d2eda2ba4b49b3beb36333e5096a99a6dc0","tgt_lang":"hi","translated":"सभी दिखाएँ","updated_at":"2026-06-26T21:30:21.093Z"} {"cache_key":"bbf3fb81d15e8fc44172dfcb039f2a41c137ef38d8d1f173f2788b286f7b347c","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.tokensPerMinute","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"tok/min","text_hash":"313de81ab59056211afd431da067fe437d905d9f29f51d64b016222a777c9526","tgt_lang":"hi","translated":"tok/min","updated_at":"2026-06-26T21:35:07.144Z"} {"cache_key":"bc0f1c2c5197f56545339253219652e08f40176587ec21c2d41d3612b1050e20","model":"gpt-5.5","provider":"openai","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"hi","translated":"अवरुद्ध","updated_at":"2026-06-26T21:32:33.484Z"} +{"cache_key":"bc24aa241bd2823b2cbed4184a66437501385251d30aecf65cd86304619706a5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"hi","translated":"खोजें","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"bc41efddd65714b642c8c478e0c94b1a5ebf9b28b744feb4186354822763f425","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.avg","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"avg","text_hash":"ca5c8585b0760a760e0b887800360306b60288aa8581d4800ab42bc2c0d591a5","tgt_lang":"hi","translated":"औसत","updated_at":"2026-06-26T21:35:13.036Z"} {"cache_key":"bc42b7ab0cbcb046ab1f5b408fe24bc2a4cddf902b1fce9ea2bb98db1efba89e","model":"gpt-5.5","provider":"openai","segment_id":"common.working","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"hi","translated":"काम हो रहा है…","updated_at":"2026-06-26T21:29:38.612Z"} {"cache_key":"bc5aa9f2b1302f95807f1634b0876bd1550a4cdb4685c4a1ce7d2f78e7ab5c73","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttempts","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} attempts","text_hash":"98c22f516faa183eb6d50d193d91217aed5b50abe4a284be111c13d28007ca6f","tgt_lang":"hi","translated":"{count} प्रयास","updated_at":"2026-06-26T21:32:39.899Z"} @@ -1220,11 +1315,15 @@ {"cache_key":"bcb7b0cd0e2fa23915658cce2d9d83effeeb577e6d719fac88676800c4a8b62b","model":"gpt-5.5","provider":"openai","segment_id":"tabs.chat","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Chat","text_hash":"460b3a7da007b7af9d35bca54181dc91382263b2bf133ca214871ca1fed1fc1c","tgt_lang":"hi","translated":"चैट","updated_at":"2026-06-26T21:31:23.820Z"} {"cache_key":"bcb9a7659497de545c2495fe57ba01f6e090b563097feaa4d46bb9705b88558d","model":"gpt-5.5","provider":"openai","segment_id":"lazyView.errorSubtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Reload the page to load the latest Control UI bundle, or retry if the network request failed.","text_hash":"7070c57acbe9a8991e3d1c91cd713d34b1351c166f92a9c7eeeb07a6e45e7b42","tgt_lang":"hi","translated":"नवीनतम Control UI bundle लोड करने के लिए पेज पुनः लोड करें, या यदि नेटवर्क अनुरोध विफल हुआ हो तो फिर से प्रयास करें।","updated_at":"2026-06-26T21:29:59.416Z"} {"cache_key":"bcc004f5a31b93d376678b8c7a36802007b2498c4341a3dbb493235941087e0e","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.modelAuthExpiresIn","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"expires {when}","text_hash":"a70e9d68758ae6b1c6bbe34b53bfe111aaad9a6ef498e98f3b8210d43be64196","tgt_lang":"hi","translated":"{when} में समाप्त होगा","updated_at":"2026-06-26T21:33:40.484Z"} +{"cache_key":"bd33163cf6352f1d2961fc9bf2242bbfc4edd0fba71b501cbc7f26e9c55feb97","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"hi","translated":"Control UI और कनेक्टेड Gateway बिल्ड पहचान।","updated_at":"2026-07-10T09:47:11.706Z"} {"cache_key":"bd33f7d36ffe1c6ed759907d51f18fdc8951fb73f00ceb6fdee60999283ec5a0","model":"gpt-5.5","provider":"openai","segment_id":"activity.duration.seconds","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} s","text_hash":"e4e6c0fbc1a49d45c3bd828a8f1db1b256b17db672e68d19b15d5cf58ca0aa52","tgt_lang":"hi","translated":"{count} s","updated_at":"2026-06-26T21:31:58.515Z"} {"cache_key":"bd405ca9d7cee9c9a075a5dee827a42eb71dd41205a632874b72145967f90936","model":"gpt-5.5","provider":"openai","segment_id":"activity.statusFilters","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Status filters","text_hash":"9bfa1c5a7d114a46d8ac9fd44cc0d11bfd837eb705927fbd4789ba2b01d30e06","tgt_lang":"hi","translated":"स्थिति फ़िल्टर","updated_at":"2026-06-26T21:31:52.012Z"} {"cache_key":"bd534975064d465034bc0336377d73318354de2d3f45d89863259668955e712e","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.modelAuthUsageLeft","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{pct}% left","text_hash":"053a3cf57bb8573236e95f1b037efd47f4433df82c03dbe65ae747a21afdbf70","tgt_lang":"hi","translated":"{pct}% शेष","updated_at":"2026-06-26T21:33:40.484Z"} +{"cache_key":"bd61dbb9901f67f542a106024a83658db526f5f343e30bb3ebd8e85a8471a7aa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"hi","translated":"अपनी दुनिया से कनेक्ट करें","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"bd72374a8937d441da49246b9d3f7159c76d3b2ee53cb9d3492b7343f26a9f70","model":"gpt-5.5","provider":"openai","segment_id":"overview.quickActions.terminal","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Terminal","text_hash":"e0926fdac700b09497b5f0218ea3dd54fa13c0bdeaee6caa7b85e50b852aa05f","tgt_lang":"hi","translated":"टर्मिनल","updated_at":"2026-06-26T21:33:40.484Z"} {"cache_key":"bd8c38aef9bf145b480536a58770499949095ec596e78bcbfacc0f735ef4fbc5","model":"gpt-5.5","provider":"openai","segment_id":"tabs.workboard","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Workboard","text_hash":"48d4659e64e383e94d3bc3badcf8e6e8c162ada4e5254958994531748fd7ab3b","tgt_lang":"hi","translated":"वर्कबोर्ड","updated_at":"2026-06-26T21:31:23.820Z"} +{"cache_key":"bd8f29be022895ecf773ee9bb21226f6976a868d5e4a976d829c28fe52a99218","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"hi","translated":"कोड प्लगइन","updated_at":"2026-07-10T02:25:34.869Z"} +{"cache_key":"bd93bb3807f64474496f85bef394779ee1490f034e9b3f1640de5fa2640ae099","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"hi","translated":"अन्य","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"bd97f067fcd1e59e330be69c53a4d688e2d50b82654d93441fa621d2ff65ff22","model":"gpt-5.5","provider":"openai","segment_id":"channels.gatewayUrlConfirmation.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Change Gateway URL","text_hash":"72b5e3578a95dcde8c7bb08200cffc3dbeb405095e2304cc93f71b18977cc145","tgt_lang":"hi","translated":"Gateway URL बदलें","updated_at":"2026-06-26T21:29:38.612Z"} {"cache_key":"bdd291cb7368777f61f4d78b6f7dffb713391b23b3ae56c1e277e8d77ac74379","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.to","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"To","text_hash":"f4b06ef6d3c81436f60a318c81c42f8f7e2d774d45a22f3b9b5f3b6980d28146","tgt_lang":"hi","translated":"प्रति","updated_at":"2026-06-26T21:37:57.526Z"} {"cache_key":"bdea354569c2b7b9c71233719bbe4149f0366c4078684f68934ef62000b18baf","model":"gpt-5.5","provider":"openai","segment_id":"tabs.config","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"hi","translated":"कॉन्फ़िग","updated_at":"2026-06-26T21:31:23.820Z"} @@ -1238,9 +1337,12 @@ {"cache_key":"bfb110d8189b39a43994aa8b3e7ee4cd7437a6a1ee5a7bb2b202c0393456a6f0","model":"gpt-5.5","provider":"openai","segment_id":"workboard.hideEmptyColumns","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Hide empty columns","text_hash":"87ff28d1fc07e0e1d1497cc028e77bf8fb7ee956e4881f8a77fde0039e50863b","tgt_lang":"hi","translated":"खाली कॉलम छिपाएँ","updated_at":"2026-06-26T21:32:45.360Z"} {"cache_key":"bff13980f96c3992234b890cd05e28510ef5b046bbeda909b015b9658fe510ae","model":"gpt-5.5","provider":"openai","segment_id":"chat.onboardingDisabled","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Disabled during setup","text_hash":"9790a355d748c87f8c5497ffa7fd924d6b539bab8ff2a06d6f85dc7a3b4805f1","tgt_lang":"hi","translated":"सेटअप के दौरान अक्षम","updated_at":"2026-06-26T21:36:16.800Z"} {"cache_key":"bff8ceb8466b71f8edef69386c1938037116a8dfa7907429f0e1a98c6a70d936","model":"gpt-5.5","provider":"openai","segment_id":"chat.welcome.suggestions.checkSystemHealth","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Check system health","text_hash":"67c43fadcdb90a5a90db660c805dcc67f97330ef4c3d87387bee88977898c7d7","tgt_lang":"hi","translated":"सिस्टम स्वास्थ्य जाँचें","updated_at":"2026-06-26T21:36:23.330Z"} +{"cache_key":"c02fa8df71db483dcdc8be3125041f355b1e7bc515cc25c552c419b5af467fb0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"hi","translated":"कॉन्टेक्स्ट इंजन","updated_at":"2026-07-10T02:25:24.766Z"} +{"cache_key":"c0716a3207506cb0a3994d518243a197a45a1d9c50a4976b70932faf6e28a9bb","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"hi","translated":"commit hash कॉपी नहीं किया जा सका","updated_at":"2026-07-10T09:47:11.706Z"} {"cache_key":"c0bd13e63f2bd0ac6d2dcc6bf41b0ffb5c6f1d86c61390b38feb7acdde1043ff","model":"gpt-5.5","provider":"openai","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"hi","translated":"विफल प्रयास","updated_at":"2026-06-26T21:32:39.899Z"} {"cache_key":"c0d4842465e376972d6e5cb41c84818b849006e4ac398f935c0c592b5c7a4565","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.timeoutRetry","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"timeout retry","text_hash":"79d153651a03220f4efa053666d2102b238e62f65f0d5358891699656eb5a0d4","tgt_lang":"hi","translated":"टाइमआउट पुनः प्रयास","updated_at":"2026-06-26T21:30:26.471Z"} {"cache_key":"c1166b9def025a0f51c6f199ecb0239d0bfa9228050939eed06f77e97d473fec","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.auto","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"auto","text_hash":"929260ad9b9ea9fe0f3553dd964f4ff3deb5792efd031a2b90f573fe91f012bb","tgt_lang":"hi","translated":"ऑटो","updated_at":"2026-06-26T21:30:21.093Z"} +{"cache_key":"c11ae3ab2c5dbcbbcb4a3bc8e9724b113504ce1ac2f8d624f63b20019bc66c4d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"hi","translated":"MCP सर्वर {name} हटाया गया।","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"c12065a6f2785ce111014b33da7817d9396579bce3ae50b11c43bc85437fb9fb","model":"gpt-5.5","provider":"openai","segment_id":"workboard.taskStatus.queued","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Task queued","text_hash":"1f81e55472b4a703f158d6aee85b835df71ba944c7b7362dde55abf2691db4b6","tgt_lang":"hi","translated":"कार्य कतार में है","updated_at":"2026-06-26T21:32:52.647Z"} {"cache_key":"c165a894ed654fea08e3e50acfa1231abf9ac05502386237a08ef7f4d7b1efcd","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.turnRange","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Turns {start}–{end} of {total}","text_hash":"f81416199663cca6093ce6edcd356741e2b5a0d47c4d14a01ce4f4137f88f6e7","tgt_lang":"hi","translated":"{total} में से {start}–{end} टर्न","updated_at":"2026-06-26T21:35:20.292Z"} {"cache_key":"c17998ef4feda784eaac4d7b642b394217d7a9af5bdd7cce53fefe29e24b704a","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.liveDraftPreview","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Live Draft Preview","text_hash":"eb6b2fefeacd2aac68f7ea96e616e8ba9eefd3d7c74a0e100bdcafe2d515052f","tgt_lang":"hi","translated":"लाइव ड्राफ़्ट पूर्वावलोकन","updated_at":"2026-06-26T21:31:05.913Z"} @@ -1274,6 +1376,7 @@ {"cache_key":"c63d8d0f04ff683c610a4eaaa7c6ac238c1f64c621a518060e6445133e9a0392","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"hi","translated":"केवल संग्रहीत सत्र दिखाएँ।","updated_at":"2026-07-02T14:30:19.917Z"} {"cache_key":"c64ca148a2750f0eae198e3da1566c4f63632f2dc64a546ca8055782b76ff1ec","model":"gpt-5.5","provider":"openai","segment_id":"common.offline","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"hi","translated":"ऑफ़लाइन","updated_at":"2026-06-26T21:29:19.678Z"} {"cache_key":"c742d658df960c718d20a60c0c4ab793b94449094e52f8bf8d21743eeb40a434","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.overview","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Overview","text_hash":"d4b1ea5708dd532930a85188b45aff6f0a3ed458500c7577e0127a538eb0d100","tgt_lang":"hi","translated":"ओवरव्यू","updated_at":"2026-06-26T21:33:46.154Z"} +{"cache_key":"c7438e935d4f7afeba4666cfc51299d5f50d7bb7de418b78c14fb0a46a747a2c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"hi","translated":"{name} अक्षम किया गया।","updated_at":"2026-07-10T02:25:41.019Z"} {"cache_key":"c759859ea5e5a0e2667e2f749fa9725f284bed216545f93e1e81da220e297952","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.trace.emptyGrounded","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No staged grounded items.","text_hash":"896991a7f5bb7b2b05b5eab90680bda0ffd534a9ff068e8bf627ec084307f64b","tgt_lang":"hi","translated":"कोई स्टेज किए गए ग्राउंडेड आइटम नहीं हैं।","updated_at":"2026-06-26T21:34:11.503Z"} {"cache_key":"c7749c67e17742d22463dd80bb98a9e20f0f55bc555263901e9bdcdc1592bb13","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.statusFailed","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Failed","text_hash":"031a8f0f659df890dfd53c92e45295b0f14c997185bae46e168831e403b273f7","tgt_lang":"hi","translated":"विफल","updated_at":"2026-06-26T21:30:26.471Z"} {"cache_key":"c7795d1c13e222e76ffa490f5f234a127eb60623942aa8ae3ade2cea82318942","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"hi","translated":"अलग किया गया","updated_at":"2026-07-04T21:23:56.407Z"} @@ -1285,6 +1388,7 @@ {"cache_key":"c88bfe613ae98e3e2b6ab4baa4ebe47a0899a1b8a12f4a081d6eb3c9cdaec355","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitHours","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{hours}-hour limit","text_hash":"c9091350c3c5c4e3c54dae43eec58cd35555724276a0acc388b98239a573f9df","tgt_lang":"hi","translated":"{hours}-घंटे की सीमा","updated_at":"2026-07-09T11:49:28.360Z"} {"cache_key":"c8911f329b9b2052aebaea320995deb23b4a04856414b33d9fa5a9ee3ed52ead","model":"gpt-5.5","provider":"openai","segment_id":"usage.metrics.sessions","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"hi","translated":"सेशन","updated_at":"2026-06-26T21:34:31.303Z"} {"cache_key":"c8922f33bbe32c460504d2fa947bf4907501957e6a095f1d6c4e2c7dd0cebb3c","model":"gpt-5.5","provider":"openai","segment_id":"usage.breakdown.costByType","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Cost by Type","text_hash":"191407927e3b9ed0accd8cc9d2b8952704dfd9a8cc6edfe8c04a722e146fe612","tgt_lang":"hi","translated":"प्रकार के अनुसार लागत","updated_at":"2026-06-26T21:34:59.501Z"} +{"cache_key":"c8c9f0f069fc2c635d4b9abe88f444aafe5095c40222ac0731f3c0b25cf23fbf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"hi","translated":"कोई अलग खोज आज़माएँ।","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"c8cf6e21e48d287c4e0fe369249b3df9e454b4b02fb0c1e20b5f7f4794b87890","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.lastDays","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Last {count} days","text_hash":"4aa456a0fa9b73dcc14766740b19fc52c452950ccb7bc892499c3c29a4122162","tgt_lang":"hi","translated":"पिछले {count} दिन","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"c90c26faa0162a19a48463403317e5524c2ecc3b5722e4bf5cb1a02ae5c2e634","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.defaultOption","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Default ({value})","text_hash":"a9d6571117890ef77ecc72f77ba43e9d8b05ed82c1c64ff27a352c02dff3c2bd","tgt_lang":"hi","translated":"डिफ़ॉल्ट ({value})","updated_at":"2026-06-26T21:30:21.093Z"} {"cache_key":"c91864883a6ecdf2af16cad2c50030851ef19c1f46c16fc7129b4d11a70a7a62","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.placeholder","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Message {name} (Enter to send)","text_hash":"46d9206d6f8417221d7742c9c8e43d8532c10830e95e4aed10ddd48546e887b6","tgt_lang":"hi","translated":"{name} को संदेश भेजें (भेजने के लिए Enter)","updated_at":"2026-06-26T21:36:30.561Z"} @@ -1301,6 +1405,7 @@ {"cache_key":"ca7662e315ad61a8065ef8352323b75d0593b69f7ad0a15d113f8661d023651d","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventArtifactAdded","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Artifact added","text_hash":"f8732113af36c6d348a4ae88f6cc26dc766e4d03acc7c310cb60ed5f05397d0c","tgt_lang":"hi","translated":"आर्टिफैक्ट जोड़ा गया","updated_at":"2026-06-26T21:33:00.304Z"} {"cache_key":"ca8560131bf331be5fe043f715f7bf34b11de34294950de51d950b6db3872923","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"hi","translated":"एजेंट","updated_at":"2026-06-26T21:32:39.899Z"} {"cache_key":"ca8d0bd25c2dc5e26babb398ff74dfca05a31b48def07c70ccc230bb74acbeab","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"hi","translated":"सक्रिय","updated_at":"2026-06-26T21:29:19.678Z"} +{"cache_key":"cae70f740c829d9063392207c80556b6fd21f08fd228770494615b38c55d128f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"hi","translated":"MCP सर्वर {name} जोड़ा गया।","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"caedbaafd67de07c6f4c64a4cf47b2230a850cae7b1f7c1c85e82a79661bb0ea","model":"gpt-5.5","provider":"openai","segment_id":"agents.cronPanel.schedulerTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"hi","translated":"शेड्यूलर","updated_at":"2026-06-26T21:30:49.011Z"} {"cache_key":"cb137c94e0985b0573362680a1204de5c8182d600294a0a08cf0de1fd69a6e66","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.schedules.weekdays.description","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Mon–Fri at 9:00 AM","text_hash":"21f6bfa40316a7f9cb5ae4f75c6409e79871d377340168d8ba7dbcd74cb996a2","tgt_lang":"hi","translated":"सोम–शुक्र सुबह 9:00 बजे","updated_at":"2026-06-26T21:36:51.337Z"} {"cache_key":"cb2151bf30ef6a919f65339910845bd89b7fe6719ba536fa92eb01b94cc2a976","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"hi","translated":"{count} दिखाए गए","updated_at":"2026-06-26T21:36:47.054Z"} @@ -1314,6 +1419,7 @@ {"cache_key":"cc28e578c42310a7d1d5aefd9c8c343723692564f062713ef77040efe4c50b07","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.status.nextSweepPrefix","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"next sweep","text_hash":"836b65b782a40d015ac29fa976e399ea979cc1c659c551f5de304c4004ed8dd4","tgt_lang":"hi","translated":"अगला स्वीप","updated_at":"2026-06-26T21:33:54.151Z"} {"cache_key":"cc33ddbea658d71375df4d39be1c84d1c1b499dd078f0cc7eb67171695cbd4f0","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.network.stepDashboard","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Reopen the dashboard with openclaw dashboard --no-open to recopy the current URL and auth details.","text_hash":"7abbcb710b0e501f34c25dcd7cd139d1a9445c952bdb4d6d5a3420dc91d954c8","tgt_lang":"hi","translated":"मौजूदा URL और auth विवरण फिर से कॉपी करने के लिए openclaw dashboard --no-open के साथ dashboard फिर से खोलें।","updated_at":"2026-06-26T21:36:16.800Z"} {"cache_key":"cc41c0a0433d963236aedb250fe957becd35296fc79f789f3c93f04d87b47224","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.deliveryDelivered","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Delivered","text_hash":"906115657390f3675639f46a572eee069155214169a45be4046933527a95c67b","tgt_lang":"hi","translated":"डिलीवर किया गया","updated_at":"2026-06-26T21:37:23.206Z"} +{"cache_key":"cc454e8a72dd07ad87c9bbbb87c61a5ce3329cb7f3e6ef76ad13253bca02e2af","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"hi","translated":"MCP सर्वर","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"cc63e545862f8041c21181a8185f6e1371de73ad3a77df923efee503f3fe5a86","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.modelAuthAttentionExpiredDesc","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{providers} — re-authenticate with openclaw models auth","text_hash":"e883d59961999e0948fec3d4acbf11dc7c55a16beb27d313a0ce6cceb7ad2cb8","tgt_lang":"hi","translated":"{providers} — openclaw models auth के साथ पुनः प्रमाणीकरण करें","updated_at":"2026-06-26T21:33:40.484Z"} {"cache_key":"ccb369624ddb2058d59037681bb0b889fe87045c72b3af7e3137f02c4bf81bb4","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"hi","translated":"अभी तक कोई ऑपरेटर नोट्स नहीं हैं।","updated_at":"2026-06-26T21:32:11.358Z"} {"cache_key":"ccb3bddbf2c8e302d7dd0aeece629596a1108e50e0e888c6b3ade85f4a47b1d2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.tokens","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Tokens","text_hash":"a039dfb9628b53ddaebcfe8ef0793e3fdf19867601295f00d192acef59050869","tgt_lang":"hi","translated":"टोकन","updated_at":"2026-06-26T21:30:15.460Z"} @@ -1331,20 +1437,25 @@ {"cache_key":"cdc9e57c3bd3d95f8ec288b4216575ce50915efa4a805959082463342ec044ca","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"hi","translated":"डिफ़ॉल्ट","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"ce31d632495d65933f243e2beeeb3894fe022536db88082ab26206241c5f8dcd","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventNotification","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Notification","text_hash":"7d31b83313991d4c969b95ff28385ff891514dbe7a93c93c5db8145ad031420f","tgt_lang":"hi","translated":"सूचना","updated_at":"2026-06-26T21:33:07.229Z"} {"cache_key":"ce3f2a03a7002d276facd97693658556156910a81cf81bc2a19ac4b3be30a773","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openWorkboardCard","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Open Workboard card","text_hash":"72fa4c4ecad9282956872123965694b6dbbd858dbf6d4e1067e401b290f4461b","tgt_lang":"hi","translated":"Workboard कार्ड खोलें","updated_at":"2026-06-26T21:30:21.093Z"} +{"cache_key":"ce818fcb4da17c339bbd41de9f34ebe2f6057fbf3f6a4c0049ae0a48045b1920","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"hi","translated":"टूल्स","updated_at":"2026-06-26T21:35:26.182Z"} {"cache_key":"ce8b78b01714228050a49e636bedf985d5d88ca48b96e21241cc7fd6a55fee7b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"hi","translated":"इस होस्ट पर कोई सक्रिय सेशन नहीं है।","updated_at":"2026-07-09T10:01:43.755Z"} {"cache_key":"ce92f29af09e7d21728aaff5b9382316537e79660768881734ad1f42fb539321","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.delivery.notify.description","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Deliver results to chat","text_hash":"2c52a24163167b77889acbbf34defbdaf4ca334db34c25c133c139e5152ad86d","tgt_lang":"hi","translated":"परिणाम चैट में भेजें","updated_at":"2026-06-26T21:36:59.582Z"} {"cache_key":"ceac503d5314adfe7bc8192b5a625b25e7f42d1db7c60a6cfc94c41492c9caaa","model":"gpt-5.5","provider":"openai","segment_id":"chat.autoScrollOff","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"hi","translated":"बंद","updated_at":"2026-06-26T21:36:16.800Z"} +{"cache_key":"cee99ed45383962521ed69e0d03304eb290ba3d6b61e94b8c4266e7d16cd567c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"hi","translated":"कॉन्फ़िगरेशन उपलब्ध नहीं है; रीफ़्रेश करें और फिर से कोशिश करें।","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"cf0b14efa3440b05e593fb622d7a02c04be0b1523424d04ec53e7da7d4b3787c","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.throughput","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Throughput","text_hash":"960bcc4e48b929b89a54da1613c577f938e27adffd9fefc84b176a081eba5ae6","tgt_lang":"hi","translated":"थ्रूपुट","updated_at":"2026-06-26T21:35:07.144Z"} {"cache_key":"cf12934f9054201cd83b54db6b9ab643e7164cfc6b701af01430f1caa26bad54","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.whenHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Pick a schedule. You can fine-tune it later.","text_hash":"afaccdbedfd69f7618dc57e8b77feb2baf257aa8b5d425cd6baf5ac5f689b67a","tgt_lang":"hi","translated":"एक शेड्यूल चुनें। आप इसे बाद में सूक्ष्म रूप से समायोजित कर सकते हैं।","updated_at":"2026-06-26T21:37:06.965Z"} {"cache_key":"cf1f430579f77ba375723a339f7e4d50d001a2c32a1fc5e87ce8625417fa564d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"hi","translated":"नया समूह…","updated_at":"2026-07-05T14:39:53.244Z"} {"cache_key":"cf27c2a1a118c8df47cb4924c2146403e545fffdfc0c37df40ce12583a10c80e","model":"gpt-5.5","provider":"openai","segment_id":"workboard.allAgents","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"All agents","text_hash":"54c32d3e2cfa1cc879f746643e6b41360541692fc0a163f3793595510398e6f5","tgt_lang":"hi","translated":"सभी एजेंट","updated_at":"2026-06-26T21:32:11.358Z"} {"cache_key":"cf27dca65b83fa135c70240b50e4f6e4d2b78de40dcb061dbb254b73dd65b2aa","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.errorRate","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Error Rate","text_hash":"bf7d539c44f171797478b65a6dc0ec7ab2abe1a684e4c20d6407b2376a2f79d1","tgt_lang":"hi","translated":"त्रुटि दर","updated_at":"2026-06-26T21:35:07.144Z"} +{"cache_key":"cf37a72b3ddf97cc7568880ec75e9366ba0d8437841af3b997798b5a3c64c0ae","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"hi","translated":"{name} सक्षम किया गया। बदलाव लागू करने के लिए Gateway को रीस्टार्ट करना आवश्यक है।","updated_at":"2026-07-10T02:25:41.019Z"} {"cache_key":"cf9ed07602c740861ea5b8ec6610025b0c3d4c8d400b6dc4cdc4e52b7f838000","model":"gpt-5.5","provider":"openai","segment_id":"activity.expandAll","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Expand all","text_hash":"a3e586be3eff5fb9f768c0846035db47ccf0f0e10727b0f14d829ff3a5913324","tgt_lang":"hi","translated":"सभी विस्तृत करें","updated_at":"2026-06-26T21:31:52.012Z"} {"cache_key":"d010b3eb6a26621c78d4c48f1424a0babb486dfcdf652d36dbd4cc61ba17bad5","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.isolated","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Isolated","text_hash":"1d183f3f10e963cae3a2e0a10a693f7895b03602715a121d984f3406e37ba2e2","tgt_lang":"hi","translated":"अलग-थलग","updated_at":"2026-06-26T21:37:38.564Z"} {"cache_key":"d0498143b0e5b51af461daaaf49008ec910906ce89e18544f635c53f46463e6a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventSpecified","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Specified","text_hash":"5a67e2985706e8d4172ebbac55b0fcc3ad1aa5668820341070e28a444a0e7926","tgt_lang":"hi","translated":"निर्दिष्ट किया गया","updated_at":"2026-06-26T21:33:00.304Z"} {"cache_key":"d05d0bcb72b06f8ac22c989efb0622d2136daf0680aeafe611792f244cceabd1","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.categories.skills","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Skills","text_hash":"66d0f523a379b2de6f8d5fba3a817ebc395f7bcaa54cc132ca9dfa665d1e9378","tgt_lang":"hi","translated":"स्किल्स","updated_at":"2026-06-26T21:33:40.484Z"} +{"cache_key":"d068fe4804feb09aede1b82b1f7259866f72bea623f84c2ea962fdcdb8869a8f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"hi","translated":"ClawHub में “{query}” के लिए कोई परिणाम नहीं है।","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"d0bc85545364b5bda44d3a460089045e90e3e8db49c90117d204d390bfdeddb0","model":"gpt-5.5","provider":"openai","segment_id":"debug.manualRpcSubtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Send a raw gateway method with JSON params.","text_hash":"21ff33425efbda80bc90ede3a293768d63220ac7937401575b1e0e5e00861685","tgt_lang":"hi","translated":"JSON पैराम्स के साथ एक raw gateway method भेजें।","updated_at":"2026-06-26T21:31:12.170Z"} {"cache_key":"d0d40414e1db2d0d7c5049e041fa87e41a3dbe4e30e6f79dfd0dc2f2dd805ceb","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobList.edit","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Edit","text_hash":"464c4ffd019e1e9691dcf0537c797353ef2b1c1d4833d3d463e5b74ae4547344","tgt_lang":"hi","translated":"संपादित करें","updated_at":"2026-06-26T21:38:12.145Z"} +{"cache_key":"d0e77eb9069ae866fdfad00882343fabc5947812ba262eff0f27c9620c8b9e2c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"hi","translated":"OpenClaw को विस्तारित करने के लिए कोई विशेष प्लगइन खोजें या ClawHub में खोजें।","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"d16b6ca06361efd2d55288963c612655ec5b84d8c43129a7131fb87ab31aa0a0","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.modelAuthExpiring","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} expiring","text_hash":"298971eb0ed2f10fc60cc7fbb1a4e8e011952584f223d6edfc3df6b0f4136df5","tgt_lang":"hi","translated":"{count} समाप्त हो रहे हैं","updated_at":"2026-06-26T21:33:40.484Z"} {"cache_key":"d1761acccede692a5310b50dbcfb27cd68fa085d97ad0048e584c5e14b333564","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.usageCredits","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Usage credits","text_hash":"fbc841b791a14110e06a9913d3d69153b9cc4cf9542b856821b357a09a7c08a4","tgt_lang":"hi","translated":"उपयोग क्रेडिट","updated_at":"2026-07-09T11:49:28.360Z"} {"cache_key":"d18a72c3315677bb23c9deedb4d718dc49ed27048ebc76d89fa70f48000fc8cb","model":"gpt-5.5","provider":"openai","segment_id":"workboard.start","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Start","text_hash":"e4bb9f1ece9af9264a3b9e3913bbdb2cf497457167b14ced5f85688bfde74644","tgt_lang":"hi","translated":"शुरू करें","updated_at":"2026-06-26T21:32:25.929Z"} @@ -1356,7 +1467,9 @@ {"cache_key":"d2ce079fefff4737e5f83dc991d11a17302c0ffcc9409309a204bfaabf69526b","model":"gpt-5.5","provider":"openai","segment_id":"channels.gatewayUrlConfirmation.warning","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Only confirm if you trust this URL. Malicious URLs can compromise your system.","text_hash":"c67ff862ac6adf5342af661a4383b9f75fd21ef37baaf80bcb6c799982a1a7e2","tgt_lang":"hi","translated":"केवल तभी पुष्टि करें जब आप इस URL पर भरोसा करते हों। दुर्भावनापूर्ण URLs आपके सिस्टम से समझौता कर सकते हैं।","updated_at":"2026-06-26T21:29:48.427Z"} {"cache_key":"d2f30e7e56c1e7fe57ee3c584dceac06bf6e20ebf4c6f2edbdb49f902d182c45","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.executionSub","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Choose when to wake, and what this job should do.","text_hash":"9869059549e542582d729fa6b7b84eb6f4d0eccee80f734646a44d443b945267","tgt_lang":"hi","translated":"चुनें कि कब सक्रिय करना है, और इस जॉब को क्या करना चाहिए।","updated_at":"2026-06-26T21:37:38.564Z"} {"cache_key":"d30b66ddab7dfffbbf71631b775850c99718280f06235c08a8770816de96f666","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.protocol.stepDevUi","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"If using pnpm ui:dev, rebuild or restart the dev UI against the current checkout.","text_hash":"14b78bc03b2feff5faa8837f9205ebbe59343de6cdd8223ac15872c4917d3437","tgt_lang":"hi","translated":"यदि pnpm ui:dev का उपयोग कर रहे हैं, तो वर्तमान checkout के विरुद्ध dev UI को फिर से build या restart करें।","updated_at":"2026-06-26T21:36:08.721Z"} +{"cache_key":"d37c597b17d6e6c308cf4c95bcfa4254828dc9e830722351fc83ccad74786c2b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"hi","translated":"कॉन्फ़िग","updated_at":"2026-06-26T21:31:23.820Z"} {"cache_key":"d3887626e0c3e4c29ef9ae27ea2af196eb990aa9c75f6b95f53b9da87291e679","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.diary.reloading","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Reloading…","text_hash":"ea456dcf3d908b4e432c180e3045a2b41ef2ece7ddb3cc4f168bcbc8addb3d00","tgt_lang":"hi","translated":"रीलोड हो रहा है…","updated_at":"2026-06-26T21:34:24.815Z"} +{"cache_key":"d3db723f9272f86e58b0c951218fb2981ace486476c5ed9c7b47c8692bc687cd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"hi","translated":"जोड़ा गया","updated_at":"2026-07-10T02:25:14.442Z"} {"cache_key":"d3dde9df9afb7b3e01a2f5ddc56e4eb19dc1196aedfd51ac8f52842d7908e06f","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"hi","translated":"Worker लॉग","updated_at":"2026-06-26T21:32:11.358Z"} {"cache_key":"d40631fe06e1d42f03bab9be676e66b70fcbd45019ea5b88ac15f78fa8211d01","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.reasoning","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Reasoning","text_hash":"d8211e24e83d1600a1b0cfe2f7baa68e4d4eb71131a0b2b1b2050cba111ea481","tgt_lang":"hi","translated":"तर्क","updated_at":"2026-06-26T21:30:21.093Z"} {"cache_key":"d457bdffd44e69a5edce8cd2397bd94f2d6ba7435b84b4d3081a0f0e3d1e9bac","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.stopGenerating","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Stop generating","text_hash":"f6a74a2716d96439a3b066b5591c6fe74515bbb68510c743544c3343e38911a9","tgt_lang":"hi","translated":"जनरेट करना रोकें","updated_at":"2026-06-26T21:36:23.330Z"} @@ -1370,16 +1483,18 @@ {"cache_key":"d53def5335593fb9cc3d28bd0cb2c6ac5415d3c421c46109eabe414c493ab550","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortCreated","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"hi","translated":"बनाया गया","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"d5a981477ccb0ba1b00e844bffac538386bb0a661c62a40afe9f1df23fd29f8a","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.collapse","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Collapse","text_hash":"be6eb1fc3b05bf9dceebad2eac7841d1b2f40bda9aa2da34df8ca22af02bc3ed","tgt_lang":"hi","translated":"संक्षिप्त करें","updated_at":"2026-06-26T21:35:26.182Z"} {"cache_key":"d5abfce2bfe1998850023c676f984d9401ff2eb9bf73b6d8ecefa997cc7495ad","model":"gpt-5.5","provider":"openai","segment_id":"overview.connection.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"How to connect","text_hash":"2198ec8ff357df091f2b717837e86cd2f5762c4303171436ca8de33fd142c58b","tgt_lang":"hi","translated":"कैसे connect करें","updated_at":"2026-06-26T21:33:25.942Z"} -{"cache_key":"d5ca7c1313f579aa7e3dd753278008802ef6845f7ad3d67832f7fa888603ca8b","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"hi","translated":"दाईं ओर या नीचे डॉक करने के लिए खींचें","updated_at":"2026-07-10T06:08:16.400Z"} +{"cache_key":"d5eca71ea5421e12965b8cb634d20dace1b0500bab9a6eedc06b55db48297b54","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"hi","translated":"विशेष रुप से प्रदर्शित","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"d60462b99af3de54f1937a5bae2af6797c311b485cf17562edc2048bd4f385af","model":"gpt-5.5","provider":"openai","segment_id":"tabs.activity","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Activity","text_hash":"38da1505ca8373288489495101b14f24ac95078f520ad64df18272aa6054f750","tgt_lang":"hi","translated":"गतिविधि","updated_at":"2026-06-26T21:31:23.820Z"} {"cache_key":"d65c33cfee35b758dcb9f944c88f2a6acfea556f0078e3531b07ff0da081b4c0","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.sessionsInRange","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"of {count} in range","text_hash":"6e63cea82a473651b00fb46a523cb60e7aeb7a937012c33f46313e28fc685a44","tgt_lang":"hi","translated":"रेंज में {count} में से","updated_at":"2026-06-26T21:35:07.144Z"} {"cache_key":"d67450cb024d7b818cf6d93ce416040113973476988c3207cc0b663027461f29","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skills","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Skills","text_hash":"66d0f523a379b2de6f8d5fba3a817ebc395f7bcaa54cc132ca9dfa665d1e9378","tgt_lang":"hi","translated":"कौशल","updated_at":"2026-06-26T21:31:23.820Z"} {"cache_key":"d69251043360323d751f130de255d3c3fbad3d4766e9d665c2c01bbe39205bfd","model":"gpt-5.5","provider":"openai","segment_id":"debug.selectMethod","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Select a method…","text_hash":"450944954964bbabe665a35abd2d13a36801a519dd8cf507492b82326d1962bd","tgt_lang":"hi","translated":"एक मेथड चुनें…","updated_at":"2026-06-26T21:31:12.170Z"} {"cache_key":"d6a83917b53643509b55ed7b6692f30bd2ae3549705a1f539e97e237fe9d872c","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.promotedTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Recent Promotions","text_hash":"85051af6bfc0dd7be0988540e19a83f9855e93be2642c8b39a3d9a352ede92ff","tgt_lang":"hi","translated":"हालिया प्रमोशन","updated_at":"2026-06-26T21:34:03.457Z"} {"cache_key":"d6f83f2bf8eeef5f34ed26379a6202a6202f9360704ca3003a32df8ced0624a5","model":"gpt-5.5","provider":"openai","segment_id":"workboard.run","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"hi","translated":"चलाएँ","updated_at":"2026-06-26T21:32:25.929Z"} +{"cache_key":"d71667c286dfb12596cba2d0959930955f4daa1346af19992a5cc2bf2808d86a","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"hi","translated":"Commit","updated_at":"2026-07-10T09:47:11.706Z"} {"cache_key":"d71883937f904cddbf51da78fec0c9fb2487af0c307a9ae0de5e1433089fc98b","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.authFailed.stepDashboard","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Run openclaw dashboard --no-open and open the fresh URL or paste its token.","text_hash":"8332142ce650399926258b23bb7b6fd279cdde999caf9afcb27a92713624e085","tgt_lang":"hi","translated":"openclaw dashboard --no-open चलाएँ और नया URL खोलें या उसका टोकन पेस्ट करें।","updated_at":"2026-06-26T21:35:56.265Z"} {"cache_key":"d74e44aa8a9a11f319b7b1646ca1d8fb83f45cd8b1f7be2b87b41ed7383ac6ea","model":"gpt-5.5","provider":"openai","segment_id":"workboard.runEngine","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Run {engine}","text_hash":"b7f84eadad45d4c588f1209bd249bd8088d5fcae72d8be0d3b2acf705f9ade5d","tgt_lang":"hi","translated":"{engine} चलाएँ","updated_at":"2026-06-26T21:32:25.929Z"} {"cache_key":"d78099af399570e2fe47954d340c25d82c793843e609a941be670e9855a40d8f","model":"gpt-5.5","provider":"openai","segment_id":"tabs.sessions","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Sessions","text_hash":"6fa3cbf451b2a1d54159d42c3ea5ab8725b0c8620d831f8c1602676b38ab00e6","tgt_lang":"hi","translated":"सत्र","updated_at":"2026-06-26T21:31:23.820Z"} +{"cache_key":"d78300878ab63b18b6a78b07949926c3aa62b3125659f9b9822ee5be71616a57","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"hi","translated":"{name} इंस्टॉल किया गया।","updated_at":"2026-07-10T02:25:41.019Z"} {"cache_key":"d7d3bc5c6ef0391e75bbb9335c3f31394ed7292684129eb5213607e10f99e913","model":"gpt-5.5","provider":"openai","segment_id":"lazyView.loadingTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Loading panel","text_hash":"c52d4e931095354dcdc9c01945a3987516f4012024d3db73f6c2581349f28d89","tgt_lang":"hi","translated":"पैनल लोड हो रहा है","updated_at":"2026-06-26T21:29:59.416Z"} {"cache_key":"d7d7544310e51424f87bdb03737ed6d43aa3ea21a5edc5fd7de3a05a7ba59bf6","model":"gpt-5.5","provider":"openai","segment_id":"instances.subtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Presence beacons from the gateway and clients.","text_hash":"5349f6c160fabe02b9b0d3065e8cd995704de9fcb2894945af4660d9cb35f666","tgt_lang":"hi","translated":"गेटवे और क्लाइंट्स से उपस्थिति बीकन।","updated_at":"2026-06-26T21:30:08.627Z"} {"cache_key":"d8036f315fa86efe7dc3cace7e9464e6a84d19cd9f9e7221280fe98bf107ed5b","model":"gpt-5.5","provider":"openai","segment_id":"overview.snapshot.tickInterval","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Tick Interval","text_hash":"5e913b1331d1645eed8f87e79af3016b78b2ebe8b1286f2ce861c50671ae6886","tgt_lang":"hi","translated":"टिक अंतराल","updated_at":"2026-06-26T21:33:15.607Z"} @@ -1410,6 +1525,7 @@ {"cache_key":"dbe99fcc23e53300cc26d133db16c2e1fb0ed4fa6db64879bcc7c76c2c15f10a","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.noMatching","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No matching jobs.","text_hash":"d5d5eb64b0df01acff28eb469bcf11e20270eee0b74bb07bf4a4b52ebac97d1d","tgt_lang":"hi","translated":"कोई मिलते-जुलते जॉब नहीं.","updated_at":"2026-06-26T21:37:15.387Z"} {"cache_key":"dbeb3ab8dd7f06d52332639007eb40a6cdd8c056c9385aa22237a41097258874","model":"gpt-5.5","provider":"openai","segment_id":"overview.snapshot.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Snapshot","text_hash":"6ad27bd4ec33b079208334dfea86ff96900f95ca640dda1d2638d694d077668b","tgt_lang":"hi","translated":"स्नैपशॉट","updated_at":"2026-06-26T21:33:15.607Z"} {"cache_key":"dc2bcf3d62bb323d285da2e2583f262d85d5aa44b4deb1359c6d5421c9375001","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"hi","translated":"सत्र","updated_at":"2026-06-26T21:36:47.054Z"} +{"cache_key":"dc3edd57d188d288958b66a42564f5bd8eec2fe41b4423eddd7398c170a5fd19","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"hi","translated":"सर्वर जोड़ें","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"dc5b912745fe3f512f8ed9625ab096e3fb28167605c3424378e64e920e3ddd63","model":"gpt-5.5","provider":"openai","segment_id":"common.lastStart","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Last start","text_hash":"37a1eec0a7895251539d960c0ee5951c83da27223bdf5223c8440a4a48e061ef","tgt_lang":"hi","translated":"अंतिम प्रारंभ","updated_at":"2026-06-26T21:29:32.270Z"} {"cache_key":"dc6b2cda76a334135a74bcb1c55481badd0a49964ce9762012c8fce17329060a","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.fieldName","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"hi","translated":"नाम","updated_at":"2026-06-26T21:37:31.894Z"} {"cache_key":"dc74927a30833daa05a8ca4856334e97fec6850f50943434d3b0e761449d4fc6","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.selected","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Selected ({count})","text_hash":"725bb02e74b1685dff7819ba5bea6f0116c69746d301c3c464fda57204c3124d","tgt_lang":"hi","translated":"चयनित ({count})","updated_at":"2026-06-26T21:35:20.292Z"} @@ -1419,6 +1535,7 @@ {"cache_key":"dd488139b5b4b5ac81432595bbb2dd32a27c78425b0d3cb73d8985fafb8a8c25","model":"gpt-5.5","provider":"openai","segment_id":"overview.connection.step4","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Or generate a reusable token:","text_hash":"e9512b115cf5e0471b6c45328a8c304ae1a1b5541c3bd9bd26f3c7d2dcbed14b","tgt_lang":"hi","translated":"या एक पुन: उपयोग योग्य टोकन जनरेट करें:","updated_at":"2026-06-26T21:33:34.535Z"} {"cache_key":"dd4e9ab1e2b9389a41aa048460a1b82f10dc9312ace9b852ce0e8c29eb0a97ca","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"hi","translated":"सिस्टम","updated_at":"2026-06-26T21:29:24.057Z"} {"cache_key":"dda4ba3e6a2a4cd53b15e3cd9bed7b0f6b0d68043919155d7b89f0d241ded520","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.emptyGrounded","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No staged grounded replay entries right now.","text_hash":"3c85fa80872b7e5f27da121c22707aecb7dc74f627b2bcecff0373916fbf7270","tgt_lang":"hi","translated":"अभी कोई स्टेज की गई ग्राउंडेड रीप्ले प्रविष्टियाँ नहीं हैं।","updated_at":"2026-06-26T21:34:03.457Z"} +{"cache_key":"ddff536c58c392a9a95bb6c5523537377494654c5da5c81a455f2162f34dc9d7","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"hi","translated":"वैकल्पिक क्षमताएँ इंस्टॉल और प्रबंधित करें।","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"de22973301b1d85c7308ba8de2325f89216b22b6af17da8c9c4565dc3547f6c3","model":"gpt-5.5","provider":"openai","segment_id":"workboard.lifecycleRunning","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"hi","translated":"चल रहा है","updated_at":"2026-06-26T21:32:52.647Z"} {"cache_key":"de35098e8fa7d593902ac0ef0628e92f4b2734da18f328c932000fc7fa27e94f","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.labels.security","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Security","text_hash":"8f6fb4eb7f42c0e245e29e63f5b82cc3ba19852681d1ed9aed291f59cf75ec0e","tgt_lang":"hi","translated":"सुरक्षा","updated_at":"2026-06-26T21:31:18.653Z"} {"cache_key":"de4d7682a206764b4e2a9b6e5a5d3ef9a54fbbd7d35fb683395b7817168b1371","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.rateLimited.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Too many failed attempts","text_hash":"e24ae5a05703ebb1dc9679745b0a32d8829084c1f925e344569ec16761d8f30b","tgt_lang":"hi","translated":"बहुत अधिक असफल प्रयास","updated_at":"2026-06-26T21:35:56.265Z"} @@ -1473,6 +1590,7 @@ {"cache_key":"e58f70581bcb41b6bf4365d685476c9cd3bf79c7e34b903d7e793091ab37c60e","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventCommentAdded","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Comment added","text_hash":"b474791acafe8d8b4796982afdcecd5cbf2492435fb6a5598069e6d8ff4230df","tgt_lang":"hi","translated":"टिप्पणी जोड़ी गई","updated_at":"2026-06-26T21:33:00.304Z"} {"cache_key":"e58fd2498cffd4e17da0274d4ba34aded971cd06cc419fc2cde032ffc554cb4e","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.pairing.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Device pairing required","text_hash":"6e596885ae4dfd349a51e96302c8dc653164909cc1c85fdcdb86bdf26bb962cd","tgt_lang":"hi","translated":"Device pairing आवश्यक है","updated_at":"2026-06-26T21:35:56.265Z"} {"cache_key":"e592e21569f0e6e3d08aef35d70359410ffd57442a2690ac96fe1d7b9c3adcdf","model":"gpt-5.5","provider":"openai","segment_id":"chat.disconnected","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Disconnected from gateway.","text_hash":"4ffc03107f19ff43bc14cf84fc703c7de4716a08e1368561d53ba09b96e46fa9","tgt_lang":"hi","translated":"Gateway से डिस्कनेक्ट हो गया।","updated_at":"2026-06-26T21:36:16.800Z"} +{"cache_key":"e5c88a9520035c6302f27c9435838096de178b5be0bc067aaa515d4a6d158103","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"hi","translated":"प्लगइन खोजें","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"e5e10df2d255b6f88e84e564034f2be82973cc74fd003d9d966ff5f0a8861a06","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.thinking","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Thinking","text_hash":"a20d12c5e9c428c398b9d25e4dded1d6d3e599184e38b4d37bcb9d2d595ff8f7","tgt_lang":"hi","translated":"सोच रहा है","updated_at":"2026-06-26T21:30:21.093Z"} {"cache_key":"e5e2af788789a144fd6ca9c527c316084ab07181a0375a4cb59de72369f80f98","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.header.on","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Dreaming On","text_hash":"061ed023b8699af1bcd0fdd2542b6327093052411dc5fb89c81fdc61e0ae6191","tgt_lang":"hi","translated":"Dreaming चालू","updated_at":"2026-06-26T21:33:54.151Z"} {"cache_key":"e5f593257c3abc0015088157b572bd222c965e0da5bf94a8f969b7489aaa287b","model":"gpt-5.5","provider":"openai","segment_id":"workboard.openSession","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Open session","text_hash":"b205bb47f81a30968789eac28cefb848c4b849245d4d12f9311557c5f56ce770","tgt_lang":"hi","translated":"सेशन खोलें","updated_at":"2026-06-26T21:32:11.358Z"} @@ -1506,6 +1624,7 @@ {"cache_key":"ea602aee27b1b66782105956f0cc0474d8c2652dd764a1aca82eb985224261d8","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.trace.signals","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Signals","text_hash":"88b01c8a4bff9a08b6b56b8de43beb07205956d64d1c58eff683de7eaf3645e5","tgt_lang":"hi","translated":"संकेत","updated_at":"2026-06-26T21:34:11.503Z"} {"cache_key":"ea7e1bf53ef6afcb96dc976f6107793116f70e6c1574e6182499e10cf52eef41","model":"gpt-5.5","provider":"openai","segment_id":"overview.connection.copyCommand","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Copy command","text_hash":"9a01feecae675f2fb94baefe9b95c9b6f2970d7b4ccaf64e774335626cba785a","tgt_lang":"hi","translated":"कमांड कॉपी करें","updated_at":"2026-06-26T21:33:34.535Z"} {"cache_key":"ea7eec6b00718e38fbf01f0e9afd8f9a755cb1de0ac9f3a7397a622233ebce39","model":"gpt-5.5","provider":"openai","segment_id":"workboard.fieldAgent","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"hi","translated":"एजेंट","updated_at":"2026-06-26T21:32:39.899Z"} +{"cache_key":"ea8883e2e2bc0d0e55975a6c6a926c0e809e33ba5e49b055e9078c571a1d807d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"hi","translated":"कोडिंग और इन्फ्रास्ट्रक्चर","updated_at":"2026-07-10T05:22:16.629Z"} {"cache_key":"eac88670aeea5c43d90884774831203a60a58b9c018dcc62f39a472dcdd194ef","model":"gpt-5.5","provider":"openai","segment_id":"usage.query.tip","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Tip: use filters or click bars to refine days.","text_hash":"3062d0128ec3be6245bfc99d9cd9370d6911d947f90ada05baff887e7fe8c15c","tgt_lang":"hi","translated":"सुझाव: दिनों को परिष्कृत करने के लिए फ़िल्टर का उपयोग करें या बार पर क्लिक करें।","updated_at":"2026-06-26T21:34:43.709Z"} {"cache_key":"eb0494704a75d8687658aa581e6bbd61cc826bf9c7df1b1896cf179482353455","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.channelHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Choose which connected channel receives the summary.","text_hash":"65cb19d00d3ec2d597fac1e50da8d7926ca53a992b154d8e6b39aeacb632d1e4","tgt_lang":"hi","translated":"चुनें कि कौन-सा कनेक्टेड चैनल सारांश प्राप्त करेगा।","updated_at":"2026-06-26T21:37:57.526Z"} {"cache_key":"eb3bcfdf940067672cce385a8d95aa93a9551d3b7493b9c0ebfce045a4f0ed32","model":"gpt-5.5","provider":"openai","segment_id":"usage.mosaic.subtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Estimated from session spans (first/last activity). Time zone: {zone}.","text_hash":"711be9280277f81f8392c1db00b40b8e2ecc9f4fe322da79b19f260b46b0a1f0","tgt_lang":"hi","translated":"सत्र अवधियों (पहली/अंतिम गतिविधि) से अनुमानित। समय क्षेत्र: {zone}।","updated_at":"2026-06-26T21:35:33.329Z"} @@ -1528,16 +1647,18 @@ {"cache_key":"ef00b1047f3cd3452dd8871da87e220d374f12964a045fbb21e0f92a30527fd9","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"hi","translated":"अभी साफ़ करें","updated_at":"2026-07-05T21:01:02.212Z"} {"cache_key":"ef1210a197447d1cec4fa595953bee23b7ea314b84bbfa8977a7814649494b30","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.pairing.stepApprove","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Approve the pending browser/device request from that list.","text_hash":"d1a4ba76c4f75efa957637632b5a0155d593ed02a3696002cab59d7ec94e933d","tgt_lang":"hi","translated":"उस सूची से लंबित browser/device request को स्वीकृत करें।","updated_at":"2026-06-26T21:35:56.265Z"} {"cache_key":"ef196cef5346a32545e024561276c0866f5f1b9ed89324e93465426a74e9b752","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.clearSelection","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Clear Selection","text_hash":"c52ff5ea803d577544a8224d1404ecefa836b803f029d87cd7450af6c18a70ef","tgt_lang":"hi","translated":"चयन साफ़ करें","updated_at":"2026-06-26T21:35:13.036Z"} -{"cache_key":"ef6033e3e3d99b22783bde80d468cb0f62ccec9cbcb34f6bb782ab394710b83a","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"hi","translated":"खोजें","updated_at":"2026-06-26T21:29:38.612Z"} {"cache_key":"f00c046c6916fc3b5b4677c58ab7de0547954445126c4a534a38dc18f53d509e","model":"gpt-5.5","provider":"openai","segment_id":"common.saving","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Saving…","text_hash":"23e39291d6135814ed7c936e278974544b0df5fbf0eb0427b6700979b7472a93","tgt_lang":"hi","translated":"सहेजा जा रहा है…","updated_at":"2026-06-26T21:29:38.612Z"} {"cache_key":"f07eb656dabc20642993860990948fd5f1ddaf860962b122a1e0d6e6fc7f265c","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.modelAuth","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Model Auth","text_hash":"15e5d3b038456d28fe3c7255935a490892a1517c8d316170e5776009bc9dc9bd","tgt_lang":"hi","translated":"मॉडल प्रमाणीकरण","updated_at":"2026-06-26T21:33:34.535Z"} {"cache_key":"f07fc3f37ed84c3a976b88616d1836e96faf8b509a3624a2513c531c519e4d57","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"hi","translated":"लिंक कॉपी करें","updated_at":"2026-07-09T11:02:50.954Z"} {"cache_key":"f094d194efe0d4b81d8d819e14af6e719dcd7954198442f21850c67785b1632e","model":"gpt-5.5","provider":"openai","segment_id":"nodes.binding.defaultBinding","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Default binding","text_hash":"ce2cc6f09a11b7087293c651a72a308715d38aee5875150ff00907b9443bad4e","tgt_lang":"hi","translated":"डिफ़ॉल्ट बाइंडिंग","updated_at":"2026-06-26T21:29:59.416Z"} +{"cache_key":"f0a0b01aaf4104b3f5c11921800826dc357cf475894d8638d7d37ae54d542a96","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"hi","translated":"प्लगइन लोड हो रहे हैं…","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"f0a2d4b6e86bc86da28d7e86a04605098a5424342a0dc78ae3c54d65270ad51d","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"hi","translated":"सिस्टम डिफ़ॉल्ट","updated_at":"2026-07-06T17:33:48.459Z"} {"cache_key":"f0d9ddebe62004ba4775acf66cd53f5ac13e46ed28d03a24a477ca8c718fc552","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.hours","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Hours","text_hash":"21e8492938abc179410c21f3598f141c4c59a8bf2d3b4e475b7d83e10adfc00f","tgt_lang":"hi","translated":"घंटे","updated_at":"2026-06-26T21:34:37.383Z"} {"cache_key":"f0dc1f994a7ed83e31caf938694925e109510384a0843b0c9a7ce03153a966be","model":"gpt-5.5","provider":"openai","segment_id":"workboard.openLinkedSession","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Open linked session","text_hash":"6a75b7758b13d5f8832e1f8515543aa9fd95c789edc8cf39c82029bc0f0fb21c","tgt_lang":"hi","translated":"लिंक किया गया सेशन खोलें","updated_at":"2026-06-26T21:32:11.358Z"} {"cache_key":"f10360f8cf198506f840d07e49cbe8dd090c0361a51ed8d236a7a4ae1b4560d5","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.aiAgents","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Agents, models, skills, tools, memory, session.","text_hash":"5287f8a70328347ae6d9ac8fdf076a630f642c1a10dcfee96cd280aa505d8357","tgt_lang":"hi","translated":"एजेंट, मॉडल, स्किल, टूल, मेमोरी, सेशन।","updated_at":"2026-06-26T21:31:44.582Z"} +{"cache_key":"f11acd9a966a3f779f0d21b1678fe17ade4b62962cf8866119d88f9c14ba80ea","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"hi","translated":"ध्यान देने की आवश्यकता है","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"f1306f162a36e4f0597b8c82074f91afed9264b1ba75b7b6fc21d2745724858b","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.stagedDescription","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Replay candidates pulled from older daily log entries.","text_hash":"66e7a8b3e05e33e61428644192797de53a97e2f142f9b1b475847fa601e4fdfd","tgt_lang":"hi","translated":"पुरानी दैनिक लॉग प्रविष्टियों से निकाले गए उम्मीदवारों को फिर से चलाएँ।","updated_at":"2026-06-26T21:34:03.457Z"} +{"cache_key":"f140c651e8618e0f059ae7321e39f7d028b1a56eac6ec3dc209ab5683a1b1e1e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"hi","translated":"सभी","updated_at":"2026-06-26T21:37:06.965Z"} {"cache_key":"f14e5adeb033f25759929a198d1775c0f597f3b38b957fe5f975d99c526c3e45","model":"gpt-5.5","provider":"openai","segment_id":"languages.it","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Italiano (Italian)","text_hash":"0090dc269d25b87e5739c688fed25a00a04b01d196c0c54fafeabf22351e6864","tgt_lang":"hi","translated":"Italiano (Italian)","updated_at":"2026-06-26T21:36:51.337Z"} {"cache_key":"f15ac94f6558d790bc0cafd53f854383d8e8454333948f875ddfd7688724a225","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"hi","translated":"Snapshot विफल: {error}\n\nSnapshot के बिना हटाएँ?","updated_at":"2026-07-05T21:01:02.212Z"} {"cache_key":"f193d223a32d3df8b0a4fb3c53046d113306eab8114159c726891c4556eed373","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.staggerUnit","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Stagger unit","text_hash":"91f427bfe9e5d6bb461f1cdcd124fbf3ee25ceec6e5763c69092ffe9120007ed","tgt_lang":"hi","translated":"स्टैगर इकाई","updated_at":"2026-06-26T21:37:57.526Z"} @@ -1545,6 +1666,7 @@ {"cache_key":"f1adb83ee03bba3c4ce43ca10cf67a18bbd20e3d725e5f1415f1df781e548b7e","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.noRecent","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No recent sessions","text_hash":"100ac08064a6d5867a400a56b2949f9de3f6da4602a99461ee3a300c20273c1b","tgt_lang":"hi","translated":"कोई हालिया सत्र नहीं","updated_at":"2026-06-26T21:35:13.036Z"} {"cache_key":"f1b47365512f6a88884e4565619c005208e7927eb4e26c20fe9c9ef6a19e50e1","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventStale","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Stale session","text_hash":"9dd66bb12810fe63df0065abbd8e1875a3a1677d6b5d2ce1f814f8004a1dab1e","tgt_lang":"hi","translated":"पुराना सत्र","updated_at":"2026-06-26T21:33:07.229Z"} {"cache_key":"f1bb29f0657d90793e47d5d2e2ab2ddcacef5f673d92e5eb78132098caff72a2","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"hi","translated":"{count} आर्टिफ़ैक्ट","updated_at":"2026-06-26T21:36:47.054Z"} +{"cache_key":"f1c3191f7353f00aa89b33b453b7f5e33adb277d30a7647f0d49cb603865cf0c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"hi","translated":"ClawHub में खोजा जा रहा है…","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"f1c4b79ba1cf74d03a68298ff790612558df81c298ef64e2cc46a086d66be529","model":"gpt-5.5","provider":"openai","segment_id":"workboard.notesPlaceholder","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Notes, acceptance criteria, links","text_hash":"78bc408092930b58b8e710723503c40bafe4b6b3566e9717c3da1acfce4442fc","tgt_lang":"hi","translated":"नोट्स, स्वीकृति मानदंड, लिंक","updated_at":"2026-06-26T21:32:45.360Z"} {"cache_key":"f20a94d4a7ab4f6c7655308a4459384c243133b7ac09c937c284e30f60289d29","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.selectedRange","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Selected Range","text_hash":"95917ae71066a19c266cd4530068f4bf775ed2401951ebf37ab0c91daa1a67d3","tgt_lang":"hi","translated":"चुनी गई अवधि","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"f23479e2778626a8df3382a6d13fa79efe92f4c3322a1d6e11f28b8d2c39a9cc","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.diary.noDreamsHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Dreams will appear here after the first dreaming cycle runs.","text_hash":"8a252309d817bc57e543418f758794fec3efef8473bdf0bdeb22fb667edb76ff","tgt_lang":"hi","translated":"पहला ड्रीमिंग चक्र चलने के बाद सपने यहां दिखाई देंगे।","updated_at":"2026-06-26T21:34:11.503Z"} @@ -1570,7 +1692,6 @@ {"cache_key":"f5159f82b4fb896c278acdd2716dd02bee7690674a7fca02b2f225101410f0f1","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.subtitleAll","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Latest runs across all jobs.","text_hash":"518357fee0ecb18cbbd2f1d29ea0fdda418f839ce47a3a0c0613aa9f92eedd89","tgt_lang":"hi","translated":"सभी जॉब में नवीनतम रन.","updated_at":"2026-06-26T21:37:15.387Z"} {"cache_key":"f51cd143c73c8ba8fb2b0a15e256c241e92cb2eac5e93a25636f20e823bc5668","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.nurturingInsights","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"nurturing fledgling insights…","text_hash":"da5f6e65f6de5a90400e5c1a810989556b06996de08e3fa459a4ed21b9b59d78","tgt_lang":"hi","translated":"नवोदित अंतर्दृष्टियों को पोषित किया जा रहा है…","updated_at":"2026-06-26T21:34:31.303Z"} {"cache_key":"f51f2de489771c429d9f03f38cbc115e6a8c0ecd3a4cbe73ba16301667ea68eb","model":"gpt-5.5","provider":"openai","segment_id":"agents.channels.subtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Gateway-wide channel status snapshot.","text_hash":"ec2da3c2795d082812a8dbd72ae91ab2aadb236aa1cbc77e5eb3b1ba2638c96e","tgt_lang":"hi","translated":"गेटवे-व्यापी चैनल स्थिति स्नैपशॉट।","updated_at":"2026-06-26T21:30:49.011Z"} -{"cache_key":"f523339d4f4286a90c87bb14c4f2186521ccd81380ed48d00a7fa86f863c4a41","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"hi","translated":"सेशन फ़ाइलें दिखाएँ","updated_at":"2026-07-10T06:08:16.400Z"} {"cache_key":"f54dfbf933ec3767fb117307586eed26522ecab9af1756ed594b2d94b036bd17","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"hi","translated":"माइक्रोफ़ोन इनपुट व्यस्त हैं या ब्राउज़र के लिए उपलब्ध नहीं हैं।","updated_at":"2026-07-06T17:56:41.735Z"} {"cache_key":"f56d87d2e259ac5bc7b20b8c1dcca50254a11ff840581679fb759fd26dbc11dd","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"hi","translated":"{count} सेशन","updated_at":"2026-07-05T14:39:53.244Z"} {"cache_key":"f57230e071a563fbcf11b4bc3a56fdfbe1c00fba16b8d5125e6d5dafbfc8a5d4","model":"gpt-5.5","provider":"openai","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"hi","translated":"30s","updated_at":"2026-06-26T21:32:33.484Z"} @@ -1582,6 +1703,7 @@ {"cache_key":"f601f952b4480b760dfec91d03fa7f9e091eb26200a1f8d5524b5d050de66bb7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.global","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"hi","translated":"वैश्विक","updated_at":"2026-06-26T21:30:08.627Z"} {"cache_key":"f6163863ca5abe8d14078e1713c50381815c427c9f0e274990acb11bef412961","model":"gpt-5.5","provider":"openai","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"hi","translated":"पुराना","updated_at":"2026-06-26T21:32:18.718Z"} {"cache_key":"f6185bbd261ad03f25a4b2779545f13d687acfe49b3cf396acc8fba8bdab103a","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.docsPairing","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Device pairing docs","text_hash":"cdc78ca3a99762d6554c3486eba07c4a61044a14b43ab4a8072e312be6e0c7fa","tgt_lang":"hi","translated":"डिवाइस पेयरिंग दस्तावेज़","updated_at":"2026-06-26T21:35:43.732Z"} +{"cache_key":"f6342ca67ad898a83a2f202377ada8f90012d54a0e8df277a2feb7384a98cccf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"hi","translated":"खोज तैयार की जा रही है…","updated_at":"2026-07-10T02:25:04.728Z"} {"cache_key":"f659708429be7dfcc63a8f18b670860a1e74036504c88aa1b6332da068cc0d85","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.daysCount","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"hi","translated":"{count} दिन","updated_at":"2026-06-26T21:34:43.709Z"} {"cache_key":"f660a2741e37e5ff0b77945a6d2d775ba1c35af92662e7b7931d75cd5dc54882","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"hi","translated":"समूह हटाएँ…","updated_at":"2026-07-06T23:41:00.554Z"} {"cache_key":"f665c0b97c9bd1761adc0a394b136b0671241d79e130b9ff39a5faef3e9ab82d","model":"gpt-5.5","provider":"openai","segment_id":"debug.security.noCriticalIssues","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"No critical issues","text_hash":"4d69adae3af68edb6e97622becd8761755e2dd325602d8abfe01e7a88d6fbea1","tgt_lang":"hi","translated":"कोई गंभीर समस्या नहीं","updated_at":"2026-06-26T21:31:05.913Z"} @@ -1590,6 +1712,7 @@ {"cache_key":"f6a0d7b2317a472a55282a5ac9ace78051f96f25ed7bcf3a35470b4bf61252b0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"hi","translated":"तारीख","updated_at":"2026-07-05T14:39:53.244Z"} {"cache_key":"f6e1d2f1dae5e5a920c3cbe7025bbaacf0bf41d2f3f661e8e95c38fe297a5338","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.advancedJob","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Advanced job","text_hash":"5511691a1cb33cd049c36d7828436ff8c2787f848563716455b36426f5f165ef","tgt_lang":"hi","translated":"उन्नत जॉब","updated_at":"2026-06-26T21:37:31.894Z"} {"cache_key":"f700dcad87a55031a33256aa5fe3ae28b8b7ffbade0c4b1cc4d512a556d9165a","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolsTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Most used tools","text_hash":"8bc3f9b213a6e4c632b3c09d45d7c373a07c75389ab5d6c17cc053352ea16847","tgt_lang":"hi","translated":"सबसे अधिक उपयोग किए गए टूल","updated_at":"2026-07-09T11:27:33.869Z"} +{"cache_key":"f7073b0f4acb9fd25b362affaa6533fa0427a845ccf5738b85c8f6f6e3aac720","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"hi","translated":"घर और मीडिया","updated_at":"2026-07-10T05:22:16.629Z"} {"cache_key":"f742c0019ace3141652a2656edcb34ce1f1c55968ed1a2db8cf3e8e869f4c71e","model":"gpt-5.5","provider":"openai","segment_id":"agents.context.primaryModel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Primary Model","text_hash":"bc2701b024601dd88c58cdba885c980d2f87f74401b4182bfcbebf1cd9fe8647","tgt_lang":"hi","translated":"प्राथमिक मॉडल","updated_at":"2026-06-26T21:30:41.032Z"} {"cache_key":"f778bdfb2eaa65e31fe58a2e009960ce902a7435790ac89f32e7884e7eb43efb","model":"gpt-5.5","provider":"openai","segment_id":"usage.mosaic.subtitleEmpty","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Estimates require session timestamps.","text_hash":"242d30713d9b93113fb26af72f562aab6200824db8395f314351cfcbe0a164f0","tgt_lang":"hi","translated":"अनुमानों के लिए सत्र टाइमस्टैम्प आवश्यक हैं।","updated_at":"2026-06-26T21:35:33.329Z"} {"cache_key":"f77d5d82c040790091ab49856e66d12ffbbac9cf6366ca7e9ff5a15697bfd050","model":"gpt-5.5","provider":"openai","segment_id":"logsView.subtitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Gateway file logs (JSONL).","text_hash":"21e20de54e40ec4f79656620af6f2c7ab13905e908c29da02c30876108c3842b","tgt_lang":"hi","translated":"Gateway फ़ाइल लॉग्स (JSONL)।","updated_at":"2026-06-26T21:31:58.515Z"} @@ -1599,12 +1722,14 @@ {"cache_key":"f89c585a2b1de981064ae85977b35c654c36c7b85811235d9ccde8c6a2fa27eb","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.title","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Context usage details","text_hash":"0e04e44654b5a2abf769dcd2f82a32e0501a41689d6635d7f718978c160958f0","tgt_lang":"hi","translated":"संदर्भ उपयोग विवरण","updated_at":"2026-07-05T10:16:11.934Z"} {"cache_key":"f8ec79be32c3af4c0c9675588136b563d7f75948f44d56dff136720222e678ea","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.promptPlaceholder","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"e.g., Check my inbox for urgent emails and summarize them...","text_hash":"f4675787351dcf3b421c7f187fc9e501f37cb0a5ca79ddcde938cf99efe2dac1","tgt_lang":"hi","translated":"उदा., मेरे इनबॉक्स में ज़रूरी ईमेल जाँचें और उनका सारांश दें...","updated_at":"2026-06-26T21:36:59.582Z"} {"cache_key":"f90380429beb95d907b7115fb569e29cbfd5ad959b72d50db892e3a86a5d897a","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.settings","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Settings","text_hash":"74a883a037bc227f91891ab654a753d3a99f31ab06ae5b5d2b6e594a692b41f8","tgt_lang":"hi","translated":"सेटिंग्स","updated_at":"2026-06-26T21:33:46.154Z"} +{"cache_key":"f922859155869b2807fc8ec323c52d20d29ef3f691c66dd8379a8fa8c1a28ee1","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"hi","translated":"पूरा commit hash कॉपी करें","updated_at":"2026-07-10T09:47:11.706Z"} {"cache_key":"f9369b76507cdbde98934e04d2eefe9ff1331816b37220f2ff65e5025a8b37b1","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"hi","translated":"ऑफ़लाइन","updated_at":"2026-06-26T21:29:19.678Z"} {"cache_key":"f9430f699861525e730844548b910daefb29604477005c3e664ef75f830b7851","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"hi","translated":"विभाजित करें","updated_at":"2026-07-06T22:56:25.594Z"} {"cache_key":"f94eecafb0b66380faf3a1e489ced0cdda5aea0ca4404eacd1be7248d10cbad7","model":"gpt-5.5","provider":"openai","segment_id":"overview.insecure.stayHttp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"If you must stay on HTTP, set {config} (token-only).","text_hash":"d1a4cb0c430ca9f73d0dbb992f19d6e7e301e24acdc269d368b31fa1efd4ff1e","tgt_lang":"hi","translated":"अगर आपको HTTP पर ही रहना है, तो {config} (token-only) सेट करें।","updated_at":"2026-06-26T21:33:25.942Z"} {"cache_key":"f98d47c5b187ddcaa5e9354da1ff99e739647f49174fa5dcf97d2af4c6099500","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"hi","translated":"उन्नत Talk सेटिंग्स के लिए operator.admin एक्सेस आवश्यक है।","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"f99128956eeb05331c5034e79446729b2c3a319ab6846d5d8533d5069e9f703a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeSkills","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"{count} skills","text_hash":"c6c2928e3abbbdfaae0f5608b23b1a805b43a8d1daf54e1d307126ff01e80718","tgt_lang":"hi","translated":"{count} कौशल","updated_at":"2026-06-26T21:32:45.360Z"} {"cache_key":"f9ce90d1b9ddc53659489c7e0787f03d0cbe5f531b387ba312d5be78ccbc418a","model":"gpt-5.5","provider":"openai","segment_id":"tabs.automation","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"hi","translated":"ऑटोमेशन","updated_at":"2026-06-26T21:31:33.548Z"} +{"cache_key":"f9eccc977b189b7b39e9c4aa6f1c19dfb95eb9d2300a0b01653a6ca6b1b5408b","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"hi","translated":"अनुपलब्ध","updated_at":"2026-07-10T02:25:34.869Z"} {"cache_key":"fa5e4ab72649a3d26ffc57fd030f188b299c9cf300250a37517428091ae3cc97","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.pairing.stepList","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Run openclaw devices list on the Gateway host.","text_hash":"6fda39b49917ce92d098f67aaf75f5b75c29077e53038be071f111dd36e1fecb","tgt_lang":"hi","translated":"Gateway host पर openclaw devices list चलाएँ।","updated_at":"2026-06-26T21:35:56.265Z"} {"cache_key":"fa816ff2d5b51f062b276a75df911db7489aaa617a1d5c8ad8c09b7ded68259e","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.you","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"You","text_hash":"08b041935798fbf6fd6ff51099ffedb140a475889986d14f5559ff8e7fc571dd","tgt_lang":"hi","translated":"आप","updated_at":"2026-06-26T21:35:33.329Z"} {"cache_key":"fabed05e4aa15aa8cd26025e7d3951ffe81b753bcb0f87192dbe62239e47d013","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"hi","translated":"सत्र कार्यस्थान सारांश","updated_at":"2026-06-26T21:36:47.054Z"} @@ -1618,6 +1743,7 @@ {"cache_key":"fb8d5d7ca64f51141ac8db0c4f308678f26dc3e7a30e8be426727f9823092acf","model":"gpt-5.5","provider":"openai","segment_id":"activity.collapseAll","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Collapse all","text_hash":"25f7b3721119f1ec7fdf7c8c66e779ee9999e2049e569afc3b00a9fbdeece7db","tgt_lang":"hi","translated":"सभी संक्षिप्त करें","updated_at":"2026-06-26T21:31:52.012Z"} {"cache_key":"fb9f32bc7a5bfc584a9f536f84f1531660882d3e5feefaf0643b4455bfdd5e1f","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.exactTiming","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Exact timing (no stagger)","text_hash":"02c679552df9fa650dcbc6302ae5f8e954f0303b05cf5b5bddcadf40d6892849","tgt_lang":"hi","translated":"सटीक समय (कोई अंतराल नहीं)","updated_at":"2026-06-26T21:37:57.526Z"} {"cache_key":"fbaf0adea9b8d93e6596c016bb2fdda175d365e60c257d5c3ac65d80b7e06d9c","model":"gpt-5.5","provider":"openai","segment_id":"common.call","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Call","text_hash":"d6e645b7d2b2da646d44130464143171935ffa47558b4e36c05df175de7197ba","tgt_lang":"hi","translated":"कॉल करें","updated_at":"2026-06-26T21:29:19.678Z"} +{"cache_key":"fbb4cedd2b5693726afe246be0e839ab5701cb49eb7f58ac9b2d631d965dfd10","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"hi","translated":"URL या कमांड","updated_at":"2026-07-10T02:25:24.766Z"} {"cache_key":"fbcd9d4cffe145bc95b46eaaa54afe818195fae4b7a4908896f85fec32d7dcb5","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.stats.phaseHits","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Phase Hits","text_hash":"7048bb922818ecab86930a1e134b4a9cd165faca3cbe48c9af93d7bc5bcf407d","tgt_lang":"hi","translated":"चरण हिट","updated_at":"2026-06-26T21:34:11.503Z"} {"cache_key":"fbf0e4f96ddef2f239b20ae80e63a89ae232e5b905f9997ba86b9f776804cf67","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventDiagnostic","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Diagnostic","text_hash":"b1fa878a98a15b74d970ceea6ea791354c52b43d99bccefa209ac6e9b59c946c","tgt_lang":"hi","translated":"निदान","updated_at":"2026-06-26T21:33:07.229Z"} {"cache_key":"fc2299d78fb9c17da1e064cb61cb3b771a3aa42c115584808540e852001d8dbb","model":"gpt-5.5","provider":"openai","segment_id":"common.showAdvanced","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Show Advanced","text_hash":"365075d1bf3ed18878ba0bb50360278b7eaa5973d32ed92fa1544238c09254cb","tgt_lang":"hi","translated":"उन्नत दिखाएं","updated_at":"2026-06-26T21:29:38.612Z"} @@ -1642,7 +1768,6 @@ {"cache_key":"fef306afbe342c656e6dee73f722dd00f7f343a8aec6ccbcc8381a5ab1dc9a78","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.agentTurnHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Starts an assistant run in its own session using your prompt.","text_hash":"96fbd6ab75c8af8fb9a095827bf23510c72fcbd595d3a20a28ce389d8f288dd1","tgt_lang":"hi","translated":"आपके prompt का उपयोग करके अपने स्वयं के session में assistant run शुरू करता है।","updated_at":"2026-06-26T21:37:46.380Z"} {"cache_key":"fef4729e4219a5ab6090dc5006d427567edb3553e065047dfe8053f77864d5d5","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.modelHelp","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Start typing to pick a known model, or enter a custom one.","text_hash":"6ebac6c51e0da79d2ad76fe3d1395dff0c7a51ec7aa0d6b39ac38b0ba9fd8724","tgt_lang":"hi","translated":"किसी ज्ञात मॉडल को चुनने के लिए टाइप करना शुरू करें, या कस्टम मॉडल दर्ज करें।","updated_at":"2026-06-26T21:38:06.735Z"} {"cache_key":"fef6daad8a56d7ed19e428872065fb5866bbfc986171da1d7fded4eb3d06bbcc","model":"gpt-5.5","provider":"openai","segment_id":"agents.channels.loadHint","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Load channels to see live status.","text_hash":"bcefda2639b6f198c48c0ef1b7e7a4d1169d9a5f7474fb9ddb1f3afc63730de9","tgt_lang":"hi","translated":"लाइव स्थिति देखने के लिए चैनल लोड करें।","updated_at":"2026-06-26T21:30:49.011Z"} -{"cache_key":"ff201622f4dd4055837f40403d3ec964c3f54fc26d914ca25b9f11ee82b458f4","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"hi","translated":"नीचे डॉक करें","updated_at":"2026-07-10T06:08:16.400Z"} {"cache_key":"ff492b7ea0801f90d72d34d376b28fdf6d00ea47c2323bf5c20aca9c29d6fe60","model":"gpt-5.5","provider":"openai","segment_id":"common.lastProbe","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Last probe","text_hash":"1a9f0db29cc4cfdcbca5e4c46688aac828d86b574e6abb5d0f12ab5c8a0ff6d3","tgt_lang":"hi","translated":"अंतिम जांच","updated_at":"2026-06-26T21:29:32.270Z"} {"cache_key":"ff983c8dd0e4d17881cbcb2c686240475fd91621de8fba32a584ee2b40f9234a","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.weavingShortTerm","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"weaving short-term into long-term…","text_hash":"1d64d672d34876489dc3885e05677abcae21d06bfa1d25ed87001721e441bd12","tgt_lang":"hi","translated":"अल्पकालिक को दीर्घकालिक में बुना जा रहा है…","updated_at":"2026-06-26T21:34:24.815Z"} {"cache_key":"ffadff1b11964a8a564c6bc4cdc4d3be4d119d2227b377d057f2c27756af3b7c","model":"gpt-5.5","provider":"openai","segment_id":"overview.pairing.docsLink","source_path":"ui/src/i18n/locales/hi.ts","src_lang":"en","text":"Docs: Device pairing","text_hash":"3c43dc8fc050619b6acd3ee877420360cba1387553c4bc6bf5036e34282c4879","tgt_lang":"hi","translated":"Docs: Device pairing","updated_at":"2026-06-26T21:33:25.942Z"} diff --git a/ui/src/i18n/.i18n/id.meta.json b/ui/src/i18n/.i18n/id.meta.json index 628b24bf5a71..8bf58c089a3f 100644 --- a/ui/src/i18n/.i18n/id.meta.json +++ b/ui/src/i18n/.i18n/id.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:26.981Z", + "generatedAt": "2026-07-10T09:47:32.148Z", "locale": "id", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/id.tm.jsonl b/ui/src/i18n/.i18n/id.tm.jsonl index 122741704031..b3e8471db545 100644 --- a/ui/src/i18n/.i18n/id.tm.jsonl +++ b/ui/src/i18n/.i18n/id.tm.jsonl @@ -1,34 +1,50 @@ +{"cache_key":"00d56bfba381989eb95c697f59e38724a8ebdabddc15912e1191a9d2f5c00d3d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"id","translated":"Nama","updated_at":"2026-07-05T21:01:23.086Z"} {"cache_key":"011703a945494d857d1578de77410560b32e06e186f268197810287342257a98","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"id","translated":"Tidak diketahui","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"01618b153e62bafc1b3c7a7a01cd8df0297648ac42f02320ee4f7925ef999338","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"id","translated":"Tidak dikelompokkan","updated_at":"2026-07-05T14:40:07.941Z"} +{"cache_key":"0201e829be237074a1a27a95b4ed06d7ae3d64c359d06b5fac98b6dc5276ef80","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"id","translated":"Kategori","updated_at":"2026-07-10T04:28:41.010Z"} +{"cache_key":"02026dd9977bb523d76e7b434acca4ba65d1e290db2e8b0e0ddd3c0e1f05e962","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"id","translated":"Tidak tersedia","updated_at":"2026-07-10T02:27:39.399Z"} {"cache_key":"0334418fafe430f85889f94c0ff2bb58696a0ede4f25790cd852ffd4131ff511","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"id","translated":"{count} token cache","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"03d1f738e399c1f3d4041bc950448f24199b9504649a77b3408c75472aa0ed73","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"id","translated":"Tidak ada aktivitas","updated_at":"2026-07-05T14:40:07.941Z"} +{"cache_key":"041a61297639855383141c6c4714ce68161e974f71931e7b4db7511f1f79b1c1","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"id","translated":"Hash commit disalin","updated_at":"2026-07-10T09:47:32.145Z"} {"cache_key":"04669397fec8f29a24c6d80729f62e81bad1edd9a4830d2f50c044544b5f2195","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"id","translated":"Tinjau","updated_at":"2026-06-17T14:15:58.283Z"} {"cache_key":"0466e4090b85229ca62c475b4db88e06edde6b483d0e6085bfee8f30fdc06d5d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"id","translated":"Artefak","updated_at":"2026-06-16T14:16:57.267Z"} {"cache_key":"048a6839afed9d228f01b76f24a486503c2c9c7e75c8adfd9c74fb4ab3dc85cb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"id","translated":"usang","updated_at":"2026-06-17T14:16:03.086Z"} {"cache_key":"048ab54a338ba04f4c3052f09482db2831cf10dd974f41ea1454b723194bfb23","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"id","translated":"Memuat workspace sesi…","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"04b30f7c04243b536832716774ee94b16dedf63bc0119b51431fe0f9d5b5ff88","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"id","translated":"Orkestrasi","updated_at":"2026-05-30T15:38:39.708Z"} {"cache_key":"050da47803f9c8406c8dd73d61b113cfcb91cdb8627c3296bf7292d6463e6636","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"id","translated":"Grup kustom","updated_at":"2026-07-05T14:40:07.941Z"} +{"cache_key":"050ee5c50953fe09d23ac0f97627c47448830678a8eadc3a8abd7555d9a74d4d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"id","translated":"Pengaturan MCP","updated_at":"2026-07-10T02:27:32.155Z"} {"cache_key":"06ae083441ab91c6c0ced61a99c09402213719655da386d00f8f3a71de716e45","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"id","translated":"Ringkasan sesi Codex","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"0718c1a7b387aa7fb00af72de962bc1d491d38d418f393ca070e836945cb1392","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"id","translated":"Pengaturan lanjutan memerlukan akses admin","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"0751b9850a86b176925779fcaad3a18c7490bbd16d27c03aed2a134e08daa222","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"id","translated":"{count} diubah","updated_at":"2026-06-16T14:16:57.267Z"} +{"cache_key":"077ff867faca10ef70897b3331db107a33f5085759bfdcb444ee19293919332c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"id","translated":"Diaktifkan","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"07996f05ed57834759bd73f7059f16179a1a416a2d10a16675f131609612e725","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightUniqueTools","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Distinct tools","text_hash":"fba464c701baf969580caaec17d4b305c85824e189a770ce3c6ff4b6fa120989","tgt_lang":"id","translated":"Tool berbeda","updated_at":"2026-07-09T11:28:23.299Z"} {"cache_key":"07ea4bd275582acd231460c46d8e2f94fea2b1f584c01b2c28ef0cececf9812d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"id","translated":"host","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"080caa1bdaccab0af1224c14a33f84829dfc31ebb14783a83248af52f9caf496","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"id","translated":"worker {state}","updated_at":"2026-05-30T15:38:39.708Z"} {"cache_key":"0867097c85d6ab96d60cd094dd6a429536f105e3988258a34237362ef654e994","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"id","translated":"Mikrofon yang dipilih tidak tersedia. Pilih input lain atau default Sistem.","updated_at":"2026-07-06T17:57:03.488Z"} +{"cache_key":"087d4e3b2da9dcd85c6c5c5484a46544d6f0a145cfbda38b54c229edfa553aff","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"id","translated":"Tutup","updated_at":"2026-07-10T04:28:41.010Z"} +{"cache_key":"088e921b28c46f57d7fb23a6e4fc1305f1ae94ab7c42866de641da4c0cc690ed","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"id","translated":"Memori","updated_at":"2026-07-10T02:27:32.155Z"} {"cache_key":"089c2e482dffe0e942a43e622821326e0d93f85ed63371a11e1c934cc955936b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"id","translated":"Realtime Talk memerlukan akses mikrofon browser.","updated_at":"2026-07-06T17:57:03.488Z"} +{"cache_key":"08ad68cdb22069ab5f42de4e5f6700981caa3d4126ac9470c31b28e983af5c23","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"id","translated":"Salin hash commit lengkap","updated_at":"2026-07-10T09:47:32.145Z"} +{"cache_key":"08e5a3fba13f59d2bf7f2ebbdfd7ec59fe8ab9eded9711aa0202c8b5a2d717e5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"id","translated":"Hubungkan ke gateway untuk mengubah plugin.","updated_at":"2026-07-10T02:27:39.399Z"} +{"cache_key":"094fe90d769a9e3e9a9914eef190a60e4b4cadf9723d89f0e6679e8a6eb3c17b","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"id","translated":"Menyalin hash commit","updated_at":"2026-07-10T09:47:32.145Z"} {"cache_key":"0a05bb051b2b5f963c2689470f7ca4e6452995ae2bdf138e9f871f57019e89e9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"id","translated":"Tanggal","updated_at":"2026-07-05T14:40:07.941Z"} {"cache_key":"0bbe723c3378fdbb375c2c6a050998d7bbe5987545d07ecb79d0a1dd958722c7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"id","translated":"Aktif","updated_at":"2026-07-09T10:01:43.737Z"} +{"cache_key":"0bdb655458a8528351131d01b48a54d525e53eb4dc06940be03ad1191ef4d666","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"id","translated":"Konektor MCP sekali klik dan pencarian ClawHub pilihan untuk layanan populer.","updated_at":"2026-07-10T02:27:28.813Z"} +{"cache_key":"0c07975fd9654a093c1f72a3b78ad8b181aaea55aaadf2accd510995a1f89950","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"id","translated":"Resmi","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"0d9d6876b2a520eea8604155265ebe5d64b96804399e5c96b014f52425fc6969","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"id","translated":"Urutkan sesi","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"0da1072c1c2123cda1651337dc232380abf36e2a63da7616cbf0aac5229e6df6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"id","translated":"{agent} (default)","updated_at":"2026-06-17T14:15:58.283Z"} {"cache_key":"0e3c6bcc85e1cc680c911793dc2985929b165f698bdde9097325cf5907c2ca2b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"id","translated":"Nama grup baru","updated_at":"2026-07-05T14:40:07.941Z"} +{"cache_key":"0eafdc68103d6d1b0a7371310464f1a4c7e669659d4145266b3a63fbdb1b0963","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"id","translated":"Tambahkan server","updated_at":"2026-07-10T02:27:32.155Z"} {"cache_key":"0ef12c47985da0cbe3651a7bb7653682893f01a0b4497cb3cecc56481da1fe8c","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"id","translated":"Kembali ke aplikasi","updated_at":"2026-07-09T08:08:07.402Z"} {"cache_key":"0fb91253656e1d6d2f962eb4f024bf0fd135a86897c11c5c89fced8eb383247a","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"id","translated":"Tidak ada worktree terkelola.","updated_at":"2026-07-05T21:01:23.086Z"} {"cache_key":"1033051a40796832f2a0400338931d3c8ebc612d760e30b9d1f4f05f6d17e600","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"id","translated":"Tidak dapat mengakses input mikrofon.","updated_at":"2026-07-06T17:57:03.488Z"} {"cache_key":"113fe3206d85c741c558033f8dd0b08eead5e32f0e805ff21f5f65392cfb4d53","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.adminRequired","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Administrator access is required to create setup codes.","text_hash":"ebdddd4b5a8fa32c796cb3ae068c328a3f8564f67217b781c65a072ab7bcc9ff","tgt_lang":"id","translated":"Akses administrator diperlukan untuk membuat kode penyiapan.","updated_at":"2026-07-04T16:48:34.014Z"} {"cache_key":"122ea8ae66aa38103ea547f46e9ac5b24827862c281110a5d725baf90c0e2144","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"id","translated":"Belum ada file yang disentuh dalam sesi ini","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"12b0721661df9d2d726b094cf723f8bab31559ffe118cae2c270a7ef0e693842","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"id","translated":"Diarsipkan","updated_at":"2026-07-09T10:01:43.737Z"} +{"cache_key":"135584dbb4a9c3e32dd57c838a5ad50aa6f7faa449be01706538af21c2a62fcb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"id","translated":"Kapabilitas OpenClaw opsional.","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"137f297948fa485ae32293971606c7f4a4319975635d06638e8cef898e48bc29","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"id","translated":"Hapus grup…","updated_at":"2026-07-06T23:41:12.290Z"} {"cache_key":"1381886e9826cea57f5af37c4d7f1aa8a0e844bca651e8114d3e3721a08bcb5c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"id","translated":"Gateway","updated_at":"2026-07-09T10:01:43.737Z"} +{"cache_key":"13953d3d096dd2c731f4bddcd429e579dfe6237b1fc50ed8c8c90a3fcba9ee65","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"id","translated":"Plugin bundel","updated_at":"2026-07-10T02:27:39.399Z"} {"cache_key":"13d0168cc36c943fa42e16c317575ce58c698402a78b22953d726d40249894ca","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"id","translated":"Kirim permintaan revisi ke sesi obrolan saat ini alih-alih sesi workshop proposal.","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"1430e62883d0dce7419a71c061c4ea3fc37fe03a90a0737fce31240be3f0b1e6","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.channelChipTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{tokens} tokens on this channel","text_hash":"2f961c917719fceaa0b9fd222ea8590637986dce227e23deeeaf63b6cf11e9f8","tgt_lang":"id","translated":"{tokens} token di channel ini","updated_at":"2026-07-09T11:28:19.904Z"} {"cache_key":"1489c586164c4f6f29d23eed8acee24ddafde9d80c4c476d1488fb2f10eb6ae7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"id","translated":"Hapus grup \"{group}\"? Sesi-sesinya akan dipindahkan ke Tidak dikelompokkan.","updated_at":"2026-07-06T23:41:12.290Z"} @@ -36,65 +52,89 @@ {"cache_key":"16ac4c899924f98a6a2920c90997debeac224231488a7e8d10888054b988216d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"id","translated":"Protokol worker","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"16ca84b950c6cf8001f197b5bc7e1c0e6cd59c7d61f2298d4344466c7ab18c74","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.sessionsCapped","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count}+","text_hash":"4af395b8d907e1cc1d3de75eb4644a9ed3a243f5f5a66f93da927d7899844d57","tgt_lang":"id","translated":"{count}+","updated_at":"2026-07-09T11:28:23.299Z"} {"cache_key":"17113aef99b3aa66cb1f359c323cdfb9a746d0a0a8d79b407b542b2b647cf223","model":"gpt-5.5","provider":"openai","segment_id":"tabs.profile","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Profile","text_hash":"d696a35bdd1883da07a8d6c41bb7a3153381b23aa197629ee273479a6eaa5a9c","tgt_lang":"id","translated":"Profil","updated_at":"2026-07-09T11:28:19.904Z"} +{"cache_key":"17a764acf9d94533d9e3320e0833640dae1728518759312bfefd13bc4ff4b06c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"id","translated":"Tersedia","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"17bf6a28eb443d1a679385451deefec655056d60e169e2d88b8f4c27e9535d14","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"id","translated":"Tersimpan","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"17c6d93e816adc255d4d6503801d02364b81f6518493d7d95edf150503d22979","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapCellTokens","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{tokens} tokens","text_hash":"507a17952dbcbb44f1b9ffff34ec5fc71563ca5d60c07c5fa9ab68339e462139","tgt_lang":"id","translated":"{tokens} token","updated_at":"2026-07-09T11:28:19.904Z"} +{"cache_key":"188812249aaefa3a3a69bc3ad86385896cf49ea9baec9a067368c27bf8e58287","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"id","translated":"Coba lagi","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"18f45f1221f81619aa2a564bfc24c178d532ba50ffd017b673a8d55485c54c60","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.qrAlt","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"OpenClaw mobile pairing QR code","text_hash":"6c402a1c5d7208ea5d5ebf5dd95c5826c9bb81f74a880c0cebe4c2eb1347a7bf","tgt_lang":"id","translated":"Kode QR pemasangan OpenClaw seluler","updated_at":"2026-07-04T16:48:34.014Z"} {"cache_key":"191e1f58e5876ac7380e37b42737f07b47bb35a7dfcd508c6566457ce06eeea9","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"id","translated":"Branch","updated_at":"2026-07-05T21:01:23.086Z"} {"cache_key":"1b978aa23730cb263ba09a9ac227fef0b8e5b7ecfac28cf9aa541776b4f3d789","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"id","translated":"{count} ditampilkan","updated_at":"2026-06-16T14:16:57.267Z"} +{"cache_key":"1c134131b3d271093f0afa77bef01ca2d7ab51df7f58605a69de0415a2c7f187","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"id","translated":"Instal dan kelola kemampuan opsional.","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"1c44185370ac0d34d2feb25faee86425a19ae9266162880168f0c804452d4108","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.qrUnavailable","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"QR unavailable. Copy the setup code instead.","text_hash":"e8d0d53b8389740ab80b08474ac2539c28e54ad279bd2658fab050e92755b42f","tgt_lang":"id","translated":"QR tidak tersedia. Salin kode penyiapan sebagai gantinya.","updated_at":"2026-07-04T16:48:34.014Z"} {"cache_key":"1c867aa88a24def82413c339c763b25393dbe61dc2808c5928bb4037e45ec158","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"id","translated":"Mikrofon {number}","updated_at":"2026-07-06T17:57:03.488Z"} {"cache_key":"1ca16289a1c9ee2d9bc5ede8a75396e8d9356dfdc6d0984fb331101587d4f422","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"id","translated":"Diperbarui {time}","updated_at":"2026-06-17T14:16:03.086Z"} +{"cache_key":"1d750032a09542ff338dd38fa67a8acc74230fef4a2635ea97864722a10d56ff","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"id","translated":"Tidak ada plugin yang ditemukan","updated_at":"2026-07-10T02:27:25.105Z"} +{"cache_key":"1d863b4decd7bc557e996c18d2346100e9fe82fe8b6b3d1262df19af249de432","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"id","translated":"Pengodean & infrastruktur","updated_at":"2026-07-10T05:22:32.452Z"} +{"cache_key":"1e4a78485f4cfc2ed9cf05df4daa22dda40632d769975f50e64a0251465f0a08","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"id","translated":"Unggulan","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"1e575f21e4b5bad1a0669038c53673ae26721b967599fd634483562dc92a5637","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewAll","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"All cards","text_hash":"2306120917506b5998ec702f3661068b102dac538ba4c9e4634d65fe33eea98a","tgt_lang":"id","translated":"Semua kartu","updated_at":"2026-06-17T14:15:58.283Z"} {"cache_key":"1f2ef4f2d5f224910a592dccf648f7d331068ac67822786dd6dd71138f3ecc8d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"id","translated":"Sesi Codex tanpa judul","updated_at":"2026-07-09T10:01:43.737Z"} +{"cache_key":"1f7726c3db95df7ff8a0314715c2ffd04394fdc9b8427410b3f396ab509058ad","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"id","translated":"Aktifkan","updated_at":"2026-07-10T04:28:41.010Z"} {"cache_key":"20cfe99188b63ff3d814604ce6a2b05a535ae2ff5743ce49cc4d83a2d5e111f1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"id","translated":"Sesi di semua komputer Anda","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"21b97ab6117399c517ac47d142a20c85b89e5969eb7af8b3c187053b0bc7eda4","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"id","translated":"Katalog sesi tidak tersedia","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"2214a5eb361fa9f77286505dddbb064637bcc50091600ea9f47a0c146b15e737","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"id","translated":"Komentar","updated_at":"2026-07-01T01:07:58.622Z"} {"cache_key":"227a95d5e4f762423adc7b47def93a1c5f8d0e45ee05c32c7ab429a3ba398a93","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"id","translated":"Diagnostik","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"23db780eaf067ba537b4fec8e0ee4d135d25682e28dd61fac94aa127848524b8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"id","translated":"Hilang","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"243f9918d0f1e3d9ee9c3c0e560901be19c81e478b17cb0f7ea98b6bf9a9fc34","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"id","translated":"Catatan operator","updated_at":"2026-06-16T14:16:44.079Z"} +{"cache_key":"24437f1116179e45bf89544c0c98268c8128c5b61466cf8ed2e440aff6b65ee6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"id","translated":"Belum ada server MCP yang dikonfigurasi. Tambahkan satu di sini atau pilih konektor dari Discover.","updated_at":"2026-07-10T02:27:32.155Z"} +{"cache_key":"25b7e40d7fe05078951ead0edf35f0588f8ecddb5ba47cae9b9e34e7227946fa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"id","translated":"Memerlukan perhatian","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"25d713838291c863e2415580042a62bf79d0c94830f85b54ae0205171d3aa08b","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"id","translated":"{count} hari","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"26b89ef5af5f28535c4b9725af586544602113890ed35b497b22cc5a699ba080","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"id","translated":"Server MCP {name} dihapus.","updated_at":"2026-07-10T02:27:32.156Z"} {"cache_key":"272131f8d6ac2b1762b6d46fe9c10f1ea4739fe104526b726b513be30f81b24e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"id","translated":"Otomatis","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"27bfa1e362d48bf25ad773c9e49fe6333900469710857a5caa1d2c6ebf8afcc3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"id","translated":"Kartu tanpa agen eksplisit.","updated_at":"2026-06-17T14:15:58.283Z"} +{"cache_key":"27f960bb54f5611a6da1ea98c013fefcb56e082d7df6b26a925e0a1526cc182a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"id","translated":"Katalog plugin","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"29ca689f2698cfc89a7b5a7df9baf32551e3209ba50ff1989f9f35cfe5863a37","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"id","translated":"{count} artefak","updated_at":"2026-06-16T14:16:57.267Z"} {"cache_key":"29ff67f80005ca5b6bee49f15be068eecca99873204ec2cf08598606e87363c9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"id","translated":"Nonaktif","updated_at":"2026-06-17T14:15:58.283Z"} {"cache_key":"2a295f5f22ad4dc1600ec4f861d172409054baea9480ad9e75a757a96887392f","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"id","translated":"Skill Workshop","updated_at":"2026-05-31T21:48:34.877Z"} {"cache_key":"2b375a43961fdfcfdd974503b29314f06a33027760f2592eace136fda36732fd","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"id","translated":"Catatan tujuan","updated_at":"2026-05-29T21:01:43.534Z"} {"cache_key":"2baad8e513c8f1f6bbdbe955b58a98803fa706e73db9eeb8dae841fd64f6d587","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.restoreSession","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Restore session","text_hash":"35e4dc9befd3b3a29b50938839af0efb41b08051988dde53e1c1e73d1c2a039f","tgt_lang":"id","translated":"Pulihkan sesi","updated_at":"2026-07-02T14:30:35.554Z"} {"cache_key":"2bf8183ada97a0a707f6ae0e36e680beeab499564d713ba5f4bedd5d09cd8c22","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"id","translated":"Dependensi","updated_at":"2026-06-16T14:16:50.406Z"} +{"cache_key":"2c1c660e69fde416449f331275d46f764a87e9fef9bbfeb2c16489accca8dc7c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"id","translated":"Nama server menggunakan huruf, angka, titik, tanda hubung, atau garis bawah.","updated_at":"2026-07-10T02:27:32.156Z"} {"cache_key":"2c1c9d989d89df08a4aa50275df82ecb6e55e3e0974e1f8c3ac57ab88ced5b2e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"id","translated":"Kepadatan kartu ringkas","updated_at":"2026-06-17T14:15:58.283Z"} {"cache_key":"2c42f50a4dd87c0ec154164877a3b6bb60efb1ec066c77f7fb1f57079e0dccab","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.emptyBody","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No token activity yet. Send your agent a message and watch the reef light up.","text_hash":"372d6a37efc587e1d6c91c0229222235c6ec6a6ffd0d7545874ce359afb33e04","tgt_lang":"id","translated":"Belum ada aktivitas token. Kirim pesan ke agen Anda dan lihat reef menyala.","updated_at":"2026-07-09T11:28:19.904Z"} {"cache_key":"2cc67433bf17a54dc88a0d02574db01506421c940c871d840e15e132c670ea15","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"id","translated":"bukti hilang","updated_at":"2026-06-17T14:16:03.086Z"} {"cache_key":"2d830f86c5a2da662fe185d222735c2483bd78565a59e5db20fa0a9df2e964d1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"nodes.pairing.review","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"id","translated":"Tinjau","updated_at":"2026-06-17T14:15:58.283Z"} {"cache_key":"2d873d4eafeb6ce26c96e2b74c12981177aaf8920b9554d29d8ae5c5197e317b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"id","translated":"{agent} (tidak dikonfigurasi)","updated_at":"2026-06-17T14:15:58.283Z"} +{"cache_key":"2dd7664017d3a1cd3fb9f5dfff35d5fc37d4111f356cff23c0597840bab3c1c6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"id","translated":"Cari ClawHub","updated_at":"2026-07-10T02:27:25.105Z"} +{"cache_key":"2f0b710594dc2d3430a06e8bfe030f119df6c9565b36074f34cc067e68e6eeec","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"id","translated":"Temukan di ClawHub","updated_at":"2026-07-10T02:27:28.813Z"} +{"cache_key":"2f51fb2a7dc3f43f9de93df644bb25d97756ced3d7f8c029d4e431ece388c978","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"id","translated":"Menghapus…","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"307243b98ce38c53223f38e903c8fa330bf8ac29335fc068c39f54744662f7c8","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightAgents","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Agents in the reef","text_hash":"050a0a3d70a5c89d65789f7983024ee9eb2539cee6c2e0b31677ac78b0cd3534","tgt_lang":"id","translated":"Agen di reef","updated_at":"2026-07-09T11:28:23.299Z"} {"cache_key":"30d0d4ddcba7f31f8225436a0a6ab0831906e39f374e7bb4002fd451c4d71135","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"id","translated":"Perintah","updated_at":"2026-06-16T14:16:59.378Z"} {"cache_key":"30efea59a5af2c5e27f65d2083274a0ae551c77e260bab8aa125f64435ec33e6","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.streakDays","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"id","translated":"{count} hari","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"31a0fe8de0eaba70473a09598c152532f8a204269dc6948c4bacf21a7ba7b0d6","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"id","translated":"MCP","updated_at":"2026-05-31T05:36:49.780Z"} {"cache_key":"31a20ecdac599b32cd18c50f4632426930b7293ceb7b73cc19b4d7077c62d72b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"id","translated":"Menampilkan file pertama yang cocok. Perbaiki pencarian untuk mempersempit hasil.","updated_at":"2026-06-16T14:16:57.267Z"} +{"cache_key":"31a7417caff024362cc808c6083419847dd8645d61ab5cebd3c445ba7c67d7c2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"id","translated":"Tidak ada plugin terinstal yang cocok","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"32a8709ab9b75177109dfcbcada773e3643da0093e4402bae684b9309fa21f87","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"id","translated":"Tidak ada sesi di host ini yang cocok dengan pencarian Anda.","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"3356ae9573be1c07469332b76cd0a349d4ea63cff817c2d7d162fa2e906fc5d1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"id","translated":"Ringkasan: {summary}","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"336f23917c2aebd1e3bc962e313d57cecfa3c25895972a36af8335e148ec1028","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"id","translated":"Diperbarui: {time}","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"33e277390a638d8272600f2ed59fe9cdb2d289f31a256575eeb024df87f3dc5d","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightSessions","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Sessions tracked","text_hash":"b1b77d34c51bc94340e818faacf7b2271593f409d75d7be9be7a5a12047775f0","tgt_lang":"id","translated":"Sesi yang dilacak","updated_at":"2026-07-09T11:28:23.299Z"} {"cache_key":"348f662b81a5a67a317e11a53a17559576df231599ac96053eca92c66ccb85be","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"id","translated":"Status","updated_at":"2026-07-05T21:01:23.086Z"} {"cache_key":"35768d71c26721545d9febe61793ba5dc3b0e2fcb9f860110380e64901c73b8a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"id","translated":"Offline","updated_at":"2026-07-09T10:01:43.737Z"} +{"cache_key":"35eb16983f2ab6965d2a6cf11640ef38a7ec70c7b207277b4b620a64be4fb500","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"id","translated":"Tindakan {name}","updated_at":"2026-07-10T04:28:41.010Z"} +{"cache_key":"36e1950b36a12b1907fbae75462298fb2d81bd43ae8a61e745eecd25c2a861d5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"id","translated":"Masukkan URL http(s) atau baris perintah.","updated_at":"2026-07-10T02:27:32.156Z"} {"cache_key":"39273085632774bf3c0341b56d5e8102f2e5a663ea99450a5befba923250785e","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"id","translated":"Tinjau, sempurnakan, dan terapkan proposal sebelum menjadi Skills aktif.","updated_at":"2026-05-31T21:48:34.877Z"} {"cache_key":"39e7697f65e6bc21447109050d34e28266a5272fb52bf586ef920f5cb98eb1a6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"id","translated":"{count}j","updated_at":"2026-06-17T14:16:03.086Z"} {"cache_key":"3a1551e5f217a5cfd3d11232ffff7549516b25ae3eb6caefa9562191d1db991d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlockedTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Waiting on dependencies: {parents}.","text_hash":"50fb8f9b1326b69bd67d25583ddb4f70b9d75ae6e3ff8a9056a9361daa4b7d8b","tgt_lang":"id","translated":"Menunggu dependensi: {parents}.","updated_at":"2026-06-16T14:16:50.406Z"} +{"cache_key":"3a9d774e5a9360f925232f63143a8600729bba2c8b8d091c6b2bc426d9aad82e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"id","translated":"Menyiapkan pencarian…","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"3ab0d9168f9ac736467618b707669bc71a24ccf251c98693bc81f7fdb39773b7","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"id","translated":"Dapat dipulihkan","updated_at":"2026-07-05T21:01:23.086Z"} +{"cache_key":"3b5c6816715328df854ecfaf9d0cb85a100f9fca7b1b3fc3a7e522d71bee6969","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"id","translated":"Temukan","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"3c5e5f12e693a6bec8942647373a2f89c6377925e17d80ae0241388d0089d062","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"id","translated":"Tenant: {tenant}","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"3cac7496974e1465804f5501aef81e8d8b959775bbfdee652eeb59bd4843f7a8","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"id","translated":"Dorong dispatcher","updated_at":"2026-05-30T15:38:39.708Z"} +{"cache_key":"3cea980c60db805fa79184de6c516fe7c66202ae4e151eb215e3bd106ad64563","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"id","translated":"Dinonaktifkan","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"3cec18685f19cb05472d5d94f723a1ea0638ec412c095b04b172edad7d2fcda8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"id","translated":"Log worker","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"3d2bbff189f50a2021d09cceb293307419d80776e278b2831467f205a0486596","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"id","translated":"Tugas terbaru yang selesai, gagal, dan dibatalkan.","updated_at":"2026-07-09T21:53:32.685Z"} {"cache_key":"3db628ace8f6c6b26e89ce04c18492511523a060e7d39d779dc37d7fe9f1045e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"id","translated":"Disematkan","updated_at":"2026-07-02T14:30:35.554Z"} -{"cache_key":"3e237afaa02d4526327be9d243a224e37a59e7f2037b5a4755dafd24282cc2ef","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"id","translated":"{name} · pertama kali dikunjungi {date}","updated_at":"2026-07-10T04:20:40.914Z"} {"cache_key":"3f9c8d6e761c43a3c42ebb528de224071e3bbc7b767b0bd9978c5ed0925de786","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitDown","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Split down","text_hash":"8730b89df7caaf5b5090f9b7365a0a03e0a13d9682dc6418f556b8a676d9e98f","tgt_lang":"id","translated":"Bagi ke bawah","updated_at":"2026-07-06T07:24:02.090Z"} +{"cache_key":"3fb453bb9a7778e1e872f60b0f6b556590a2fe7a11abe0fce8e79ff74524fb96","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"id","translated":"Mencari ClawHub…","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"40088507feca3532e0cd6c74a5715bda500f3614bd0e1900d3b6f7035b77bc7f","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"id","translated":"Tidak pernah berkunjung","updated_at":"2026-07-09T20:51:44.462Z"} -{"cache_key":"412cdec03193b6348a4efe33b80f0c168d9df83f8647590cd2735850463f7a63","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"id","translated":"Gelembung kecil saat disentuh","updated_at":"2026-07-10T04:50:31.993Z"} +{"cache_key":"4065d95528409dff1bd27dd7f3389d50ca53e8079d5d44a20200cc473273429e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"id","translated":"Masalah","updated_at":"2026-07-10T02:27:28.813Z"} +{"cache_key":"4091bfc779dd804e1799094a9c533165976005393867cba9c0b66e99f5274264","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"id","translated":"Control UI","updated_at":"2026-07-10T09:47:32.145Z"} {"cache_key":"420eca569d85f88bea97b95169058226e08a7116636aec1fcb3f8ad72cfa90ff","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"id","translated":"Input mikrofon tidak tersedia saat halaman ini tidak aktif.","updated_at":"2026-07-06T17:57:03.488Z"} {"cache_key":"4358bc7fb0c6ad391fcdf8bf43aee357afcc725f1ba7481cac8debd7ec254b98","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"id","translated":"Jalur workspace","updated_at":"2026-06-16T14:16:57.267Z"} {"cache_key":"44404222a34c516946794befe2144dac14c34a4c67a9549d1608813e3c1dffc4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"id","translated":"heartbeat {age}","updated_at":"2026-06-17T14:16:03.086Z"} +{"cache_key":"4517d07e64c879175f1634c8bb297a7653d77041b2a4070c6353df2e7855b200","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"id","translated":"Cari plugin","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"4716e76bc7033fc7512538625ff8e2065cabfa0318173057163d9ba1c6634827","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"id","translated":"Filter arsip sesi","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"483399d71c48cef6276e0e5a6c34a573ee1d57fcdaac2e9ecde554a5d2d90cd9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"id","translated":"berjalan","updated_at":"2026-06-17T14:16:03.086Z"} +{"cache_key":"48f647c4e2c15dd9829523ea207ca837c5ba2ffcef9a08ff74a68688e4859c8d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"id","translated":"ClawHub","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"48f92e8ec78fc5c17ee71787653510e4007681e0adf4406c72106ea901200f1b","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightsTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Activity insights","text_hash":"ba3b52a117285b5aada2567de5773c4141fd7d70a62b9b7afda8db8f9aebb40b","tgt_lang":"id","translated":"Insight aktivitas","updated_at":"2026-07-09T11:28:19.904Z"} {"cache_key":"49666909ac94489069929fca059ac95966aa5fdc88b67ccd8834bf54349c4979","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"id","translated":"Belum ditetapkan (menggunakan {agent})","updated_at":"2026-06-17T14:15:58.283Z"} {"cache_key":"498c9089f9b154189ca08d4a6dce61851a951b9ac581d989b4717ce13309612a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"id","translated":"Usang","updated_at":"2026-06-17T14:15:58.283Z"} @@ -102,23 +142,33 @@ {"cache_key":"4a355626dd39c2d2fd6d2099f21bfa17b74b97ce09fa07340208e56984554337","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"id","translated":"Kesalahan tool","updated_at":"2026-05-31T06:44:03.510Z"} {"cache_key":"4b454ed369b3f67a027be68a016897ec97831a8ea4869a8af1bcd76b557137aa","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.help","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Pairing help","text_hash":"38b889fa410f64c497158988bdf8da130164f09128b2960c1dc3f3da24636ac2","tgt_lang":"id","translated":"Bantuan pemasangan","updated_at":"2026-07-04T16:48:34.014Z"} {"cache_key":"4b73813711dbe9972820f9a38815caf23003b8bf11ccff72db7cee296431de1d","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.showSetupCode","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Show setup code","text_hash":"dc4fa0026fedf726e622f08eafb87102dfe74b6f27a47c5bc3e78df69498296b","tgt_lang":"id","translated":"Tampilkan kode penyiapan","updated_at":"2026-07-04T16:48:34.014Z"} +{"cache_key":"4d2e959cdf8342dc69288df44591b28154305937aa3a863af9787f8f1300671a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"id","translated":"Rumah & media","updated_at":"2026-07-10T05:22:32.452Z"} {"cache_key":"4e3d2ccc8be933037cd3ac933590b8c2e3a2e1e120c9a13c2e25aa748dd21e48","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"id","translated":"Ganti nama grup","updated_at":"2026-07-06T23:41:12.290Z"} {"cache_key":"4e51abc01bd0ba2ec978c79b0a572b9d82992435d5fc19de119e070b7deb5acd","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"id","translated":"Terakhir aktif","updated_at":"2026-07-05T21:01:23.086Z"} {"cache_key":"4f90dc08d577506049821d95bb08c632c157d21dcf5eb3fa12a2f94fa68c8ed7","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"id","translated":"Checkout repositori terisolasi yang dimiliki oleh OpenClaw.","updated_at":"2026-07-05T21:01:23.086Z"} -{"cache_key":"4fcda7c9c9ae64c3ffc5e87aa80d85ac3619e054e85dcdff57e6ef2192ff8428","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"id","translated":"Senyap","updated_at":"2026-07-10T04:50:31.993Z"} +{"cache_key":"5018d800d934ea36a3216090cac2aff6fe5f69c3a4188134ef70358dc2cf4b5e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"id","translated":"Konfigurasi tidak tersedia; segarkan dan coba lagi.","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"522d20bd88db6d217285113176957b73cc9fa83b6e6f1b2d2d44642c268fcbaa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"id","translated":"Lihat detail","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"52609c90590618f0cf856e7d2cd76c8976fc0c33d949a71dd2bf3e7e8fa57439","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"id","translated":"Hari ini","updated_at":"2026-07-05T14:40:07.941Z"} {"cache_key":"53569f49c6e28f91008e3f8c403207c97c8288cf7a13cdfe16f81db760bf66d3","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLongestSession","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Longest session","text_hash":"7f727c1b85939ac165087fe5c3081e15ca00c6e6a0c0b6f8c908ff21eda7a4f2","tgt_lang":"id","translated":"Sesi terpanjang","updated_at":"2026-07-09T11:28:19.904Z"} {"cache_key":"54772267c364941a63a2130f8e64bb284025e7af724031a488704fd230b72849","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"id","translated":"Worktree Terkelola","updated_at":"2026-07-05T21:01:23.086Z"} +{"cache_key":"551ae5d7a4ca9b982eda7c7034443fbd57bf2f66092a09cd80e7dab20ea59f2c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"id","translated":"Tinjau peringatan ClawHub sebelum menginstal plugin ini.","updated_at":"2026-07-10T02:27:39.399Z"} {"cache_key":"559ab5cf0c7b3e1668f9ab6eaa3b3b44d24de403972c50dd1cd4ab7ceff53a74","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLongestStreak","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Longest streak","text_hash":"49095cff1349a49e9b8672a0ef850d5bec7be2af58e803a0f17c41faf6753f39","tgt_lang":"id","translated":"Rentetan terpanjang","updated_at":"2026-07-09T11:28:19.904Z"} +{"cache_key":"55a3715990e6f0bd4d17ee56d207f5e1e989b39ad94ec53771e6253f443b50b0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"id","translated":"Tidak ada plugin opsional yang terinstal","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"55bc5c9d9e963edca9cd27039b499d3a994d32dc7b005b3850b5abdbe82055f5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"id","translated":"Sesi","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"55deac8c879ac26458f9422fa7da267ce14dab4b2fd73948d71bd913aba5358f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"id","translated":"Lainnya di Pengaturan","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"58c19df1efc609dc055a9679d72da3a448c33522efc6db4902bc1ac06235d43c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"id","translated":"Hapus {name}","updated_at":"2026-07-10T02:27:35.501Z"} +{"cache_key":"58f7a8aac486063b9abf7e0b74c711f297a5513abf94bd88afad407688d491c4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"id","translated":"Masukkan setidaknya dua karakter untuk menemukan kode dan plugin bundle.","updated_at":"2026-07-10T02:27:25.105Z"} +{"cache_key":"5921bd1a9a7e3c4d5806c653025604e99d63216157ff8f9232692a545b9c04fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"id","translated":"Plugin kode","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"595321df923f387017db59f0be3754ef6aac7c0274f2d232e4486184ae5d9544","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"id","translated":"{parent} (hilang)","updated_at":"2026-06-16T14:16:50.406Z"} +{"cache_key":"597353bd6a711b93d02cdf4af15d4f256c85891eda6fdf1249824a48478f0540","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"id","translated":"Kehidupan sehari-hari","updated_at":"2026-07-10T05:22:32.452Z"} {"cache_key":"5a3fde21c63792689bd02caefc9f8ef5fc03fe92a53d49c86d61eedc2e6fce4e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"id","translated":"Detail kartu","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"5ae629e4e003b0e8b375fc5255e7e75cfe5e8caba9c9d979cd26bb52d3dd0632","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"id","translated":"7 hari","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"5b0c9b45c7221e3674d7ebcfb35184e65f6d2e375b6b958d7053fff8f60ef125","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"id","translated":"{count} kartu","updated_at":"2026-06-17T14:15:58.283Z"} +{"cache_key":"5cb004b04f8496be63d96cda12e4761d61d4be00992afeca4e25abcb9fb86e46","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"id","translated":"Instal {name}","updated_at":"2026-07-10T02:27:39.399Z"} {"cache_key":"5ce6753629334180afdef044f82f64b6336c276d2b4270ee12b51be426cb2ac7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"id","translated":"Kelompokkan berdasarkan","updated_at":"2026-07-05T14:40:07.941Z"} {"cache_key":"5cf36a9287b48f7953f676c6e5d842fad4595709344a19c0ee24396db527f9a5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"id","translated":"Ringkasan workspace sesi","updated_at":"2026-06-16T14:16:57.267Z"} +{"cache_key":"5da4a728bbb6cd95e5da90894447c3bab409a17a09a17a4893760011dc264a04","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"id","translated":"Lainnya","updated_at":"2026-07-10T02:27:32.155Z"} +{"cache_key":"5df3fa755b1bf47325f3324479e44863983697b6cd05ade47511bbffe6689a7b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"id","translated":"Kerja & produktivitas","updated_at":"2026-07-10T05:22:32.452Z"} {"cache_key":"5e1ee4ec781243c13f6e9649b98bf707d8aab67269bb76cff001d9254e9ae61b","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"id","translated":"Penjadwal","updated_at":"2026-07-09T21:53:32.685Z"} {"cache_key":"5e25e52158e861c32bbae6f718bcf1aad6f5d41b37151a8a011a1807bc62a4fb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"id","translated":"Grup baru…","updated_at":"2026-07-05T14:40:07.941Z"} {"cache_key":"5e3e1d45bccb136b48d4fd2cf830fdef685503040d8a0c59e14a49ea9a933727","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"id","translated":"Biaya harian penyedia","updated_at":"2026-07-06T06:40:15.357Z"} @@ -129,18 +179,25 @@ {"cache_key":"63b2a86482bb389c02b91f9616a612bce2f7266a7ac54d6905fb158910fc6eca","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"id","translated":"Chat baru di worktree","updated_at":"2026-07-06T04:56:32.084Z"} {"cache_key":"648a221b7baf3174254a8b8d4a2e6d3a104a9093bdf4ba99535453fe84a1f2ea","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"id","translated":"Pulihkan","updated_at":"2026-07-05T21:01:23.086Z"} {"cache_key":"649cfe0ea391f1b6349fb49a5183965fe4bd6451654500e2eaf3bb9f2b826f81","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.pending","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Device requests waiting for review: {count}","text_hash":"0bc0822235b930faa4038f1d7859f695de2519c989595c438505f8ce100a5801","tgt_lang":"id","translated":"Permintaan perangkat yang menunggu peninjauan: {count}","updated_at":"2026-07-04T16:48:34.014Z"} +{"cache_key":"6534d1d8680671e56e2632870086fc97508675ddb777772b2b2c8f4855550ae1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"id","translated":"{name} telah diaktifkan.","updated_at":"2026-07-10T02:27:39.399Z"} {"cache_key":"67653b2923e84bc982dc1459aa9bc993117d919663a95ec6e8af054ba338c2ae","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"id","translated":"Diarsipkan","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"67cd7d399ac6b47ec03d740d51f17a3ee6d2d20603465d9b86a9281d2ee812cd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"id","translated":"Tambahkan keputusan, penghambat, atau catatan bukti...","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"68f19148dc88d8f0ec70552a39ca753063b5e6cea2f1c88a027adae431d41b71","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"id","translated":"Grup","updated_at":"2026-07-05T14:40:07.941Z"} +{"cache_key":"695e660e984f53b4360e8b81140a51f7b441303f207743573ab852ba9bbeae4c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"id","translated":"{name} telah diaktifkan. Restart Gateway diperlukan untuk menerapkan perubahan.","updated_at":"2026-07-10T02:27:39.399Z"} {"cache_key":"6ab97365f3886c29eaf8cf9531ce3b002686c3bff684de4ba0cb428dcc9679de","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"id","translated":"Berjalan","updated_at":"2026-06-17T14:15:58.283Z"} {"cache_key":"6ba9ad6bad6de220e708de34c85091028b780515b2b6eb2d84cc82915fc3198a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"id","translated":"Cari judul sesi","updated_at":"2026-07-09T10:01:43.737Z"} +{"cache_key":"6bd731b78bf371dd706508180bc051a3ac78760d1c6ae5213123e845790f7d26","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"id","translated":"Server MCP sekali klik","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"6c3277821a46a2deef2632a2579875dfd967fab0e6e93bf9cb01fc72235e4644","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"id","translated":"~{percent}% konteks digunakan ({used} / {context} token, perkiraan)","updated_at":"2026-07-09T07:40:45.497Z"} -{"cache_key":"6c7a9f51928b27dbdf31939b0db78f469ad072f0f825cec5f67ba37dff98e270","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"id","translated":"Tampilkan file sesi","updated_at":"2026-07-10T06:08:32.662Z"} +{"cache_key":"6cda4ca9066d02d6ac60f1a6ca42ba5e09dacfe7500f9ca5cbbb2f2aaa395e4c","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"id","translated":"Dibuat","updated_at":"2026-07-10T09:47:32.145Z"} {"cache_key":"6d3f002ea9f1beccf036f89b97cf96ee19e165b8b1257e2ff838ccee757bf655","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.failed","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Could not create a setup code.","text_hash":"bc3b0c8b6d41d7975d2ad4bd6c6b8603819d888916a2e87ca09ec575f23158c2","tgt_lang":"id","translated":"Tidak dapat membuat kode penyiapan.","updated_at":"2026-07-04T16:48:34.014Z"} {"cache_key":"6d65b4a00fc44857ed79e57ba1bf2589430ea9abae8464243209aa40a0f5ad1f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"id","translated":"Root","updated_at":"2026-06-16T14:16:57.267Z"} +{"cache_key":"6db9c72d708bf8ec7c34efb84e3ee1509de1207c7580f3822795ec939e724016","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"id","translated":"Memproses…","updated_at":"2026-07-10T04:28:41.010Z"} +{"cache_key":"6faf5bf568d0188dcb26f1a88aab85297a32ce8bf4f12f0f0474d9bed2689809","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"id","translated":"{name} ditambahkan. Perbarui endpoint dan kredensial di pengaturan MCP sebelum digunakan.","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"708a72aa32c7ad6eb3951b4ae37ab744e5a92cc34ff56d25a47ba4bd8a724ec9","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.button","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Pair mobile device","text_hash":"7ac73fd1ec7be4a7e633b8b9022e0815b7d262765fe2cffdf71bd63a0ae6780d","tgt_lang":"id","translated":"Pasangkan perangkat seluler","updated_at":"2026-07-04T16:48:34.014Z"} {"cache_key":"70f00cd490e1e0de81907f456fd83c246dd8850c91c1e0e3c79db0d73e031a34","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"id","translated":"{count} token output","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"711aa2dc934c7cb4341db593bd0eaba71d45247d97df5a5574ae120ec7d5ca75","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"id","translated":"Hanya menelusuri. Gateway ini tidak mengizinkan perubahan plugin.","updated_at":"2026-07-10T02:27:39.399Z"} {"cache_key":"7121d5f04ec3c472927dddd623a2cacfd856983ddfb98e9514b514934ef8bf57","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"id","translated":"Penggunaan konteks sesi: {used} dari {limit} ({pct}%)","updated_at":"2026-07-05T10:16:23.978Z"} +{"cache_key":"71ac2f0ebc358f8e4bdb41ebc7920693b6e2f651265ab109310348cabae20581","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"id","translated":"Plugin resmi","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"744c2fb7ecdd252386922657cec0d3d3f4f1bb89ed74666bb3abd51f460b3da4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"id","translated":"Baru selesai","updated_at":"2026-06-17T14:15:58.283Z"} {"cache_key":"745086d636a1096431106dae8ec2cbfb4b1be11011f2b0d213d0f7c78a6babc3","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"id","translated":"Pindahkan sesi ke grup","updated_at":"2026-07-05T14:40:07.941Z"} {"cache_key":"74bc9eb04180a5bc305e471d65e62d07c7851e103391d914ad9a44fce756bbfb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"id","translated":"siap tanpa penugasan","updated_at":"2026-06-17T14:16:03.086Z"} @@ -155,15 +212,23 @@ {"cache_key":"78bbcce7dcb615895e98a4ed95107abec8866ff7fc88893b4f6c0d86c3f00349","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"id","translated":"{count} sesi","updated_at":"2026-07-05T14:40:07.941Z"} {"cache_key":"79770d539897d7ac9b8a732af75bc5bcf8108cfaceee352cb9afd4ad73d1c881","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"id","translated":"Kartu yang secara eksplisit ditetapkan ke agen default yang dikonfigurasi.","updated_at":"2026-06-17T14:15:58.283Z"} {"cache_key":"79c067f9c60be036942a797e1fe1cd0f810777884f74fc0821f8020a57410b41","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.open","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Open split view","text_hash":"51e50f7be73433216ae62f58fdbc586372f5a6063ee9978cec96793ef75fa554","tgt_lang":"id","translated":"Buka tampilan terbagi","updated_at":"2026-07-06T07:24:02.090Z"} +{"cache_key":"7a18f247a9824f683b1e4a0f344c98172d47a65e04684c52162d3737d70f6650","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"id","translated":"Aktifkan {name}","updated_at":"2026-07-10T02:27:39.399Z"} +{"cache_key":"7a393bd59f6a755fe62bcca7e5d4d9d1eb9341b91a7eeca182d35c0fbd3ab4fc","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"id","translated":"Dilaporkan oleh koneksi Gateway aktif; terpisah dari build Control UI ini.","updated_at":"2026-07-10T09:47:32.145Z"} +{"cache_key":"7b0dc27dfdcd45f2366b937d8c0c2dfc90ef7d97bb799a44194d6a24ca07df2f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"id","translated":"Saluran","updated_at":"2026-07-10T02:27:32.155Z"} {"cache_key":"7c0a57eec8cc11751e844b98508b6102b05404426a8edc87cab3b53221a59ea2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"id","translated":"Ganti nama sesi","updated_at":"2026-07-02T14:30:35.554Z"} {"cache_key":"7c498d9d71398453d7e02efee5742cf69dfcc52b9721323cded0945de09d4437","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightToolCalls","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Tool calls","text_hash":"da5122dc0f97b158bfbd27c5bd479322f34e0916a0cd4626d42c03bb0000e4b4","tgt_lang":"id","translated":"Panggilan tool","updated_at":"2026-07-09T11:28:23.299Z"} -{"cache_key":"7cc05613d5490bebb60188cdd733e48dcf8286ebdb931449ae6fa16dba9c611e","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"id","translated":"Tambatkan ke kanan","updated_at":"2026-07-10T06:08:32.662Z"} +{"cache_key":"7ce30f02678c17433094df30ce0407b9f4da9e1bcab99528c9853354b881592c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"id","translated":"{name} dihapus. Gateway perlu dimulai ulang untuk menerapkan perubahan.","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"7dc3d097aaac4bbd9588cde2efaf65c4d73b17ee0fd71a43fd2d77d3167c4c2f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"id","translated":"Tinggi","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"7e809a096db424d4505173371d652ff6ad3e6a6a60f000b8b16ee44ea5d7a33d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"id","translated":"Hubungkan untuk menelusuri plugin yang terinstal dan direkomendasikan.","updated_at":"2026-07-10T02:27:35.501Z"} +{"cache_key":"7ec6c8eb6daa84cce9c75f9cf011360dc85f6554a97a14f55d3ee37725c1bead","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"id","translated":"Jelajahi ClawHub","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"7ee22cb8eab8e6d9973b31c45c4a02dd4d428c3026352cc386fb7512c9f36a97","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.sinceChip","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"In the reef since {date}","text_hash":"ded006c6417b781fc23bdac6fab292b69da412484cf516cfe8d6757551960dd7","tgt_lang":"id","translated":"Di reef sejak {date}","updated_at":"2026-07-09T11:28:19.904Z"} +{"cache_key":"7f3c9d1077e1c083239b4aeefc65ff1545a019b6321c1ece6127add4db082888","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"id","translated":"Instal","updated_at":"2026-07-10T02:27:39.399Z"} {"cache_key":"7fc90d6555dfff8342099d2cf2bf92cee1d57a5d52c8a139233a9335e5b629b5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"id","translated":"{percent}% konteks digunakan ({used} / {context} token)","updated_at":"2026-07-09T07:06:29.950Z"} {"cache_key":"8013fce2e44ac76d5f3d1250031b386d22ddd7b761fd9f1da253a256a1ee1444","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"id","translated":"Dibaca","updated_at":"2026-06-16T14:16:57.267Z"} {"cache_key":"80c16723b9493e771f4ea550e11e149989014c6af810342aab9d0cf5f7dfcf06","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"id","translated":"Buka di Peramban Default","updated_at":"2026-07-09T11:03:03.655Z"} +{"cache_key":"811203b59ea229c1f12be0052accbd8445f908e881fba22525f5cadfc3eaad88","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"id","translated":"{name} telah diinstal.","updated_at":"2026-07-10T02:27:39.399Z"} {"cache_key":"8125570da6e44802016771b98d5813455cd9c760065ba06f46f6a8d83ed8aa63","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"id","translated":"Opsi grup untuk {group}","updated_at":"2026-07-06T23:41:12.290Z"} +{"cache_key":"819e05c1bdbcc45d0bfe517bb04bc06b5fdf8df427603e4d5c03cd7766ce1ca7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"id","translated":"Lihat detail","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"82335a79758d012cc71569cd356d68ed8d220749afe5f38b659989e09a6b85b7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"id","translated":"Belum ada catatan operator.","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"828e83436a397a326e5cc220c83cacd44ae71c34c6a4794fedaac2db8df31d29","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"id","translated":"Tindakan tautan","updated_at":"2026-07-09T11:03:03.655Z"} {"cache_key":"83279b9347999113353e3329acd5681eabb3c3bca3c2229fbb5322c59a7bfa1f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"id","translated":"Lepas sematan sesi","updated_at":"2026-07-02T14:30:35.554Z"} @@ -171,19 +236,27 @@ {"cache_key":"83c5760dbb67987691e4fc4f45359c36906186ae798f1cfb1eabbd97f52c469f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"id","translated":"File proyek","updated_at":"2026-06-16T14:16:57.267Z"} {"cache_key":"83d4864f0ad0c51bb802f8ba5db662911ce59b702c41da0006a340ea1389a768","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"id","translated":"Umum","updated_at":"2026-07-09T08:08:07.402Z"} {"cache_key":"84098be15ea5251843b529e5e9e6ac794abe3493901a02efe1d7f612638a88af","model":"gpt-5.5","provider":"openai","segment_id":"languages.hi","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"हिन्दी (Hindi)","text_hash":"fab2abfce45382f3031c59477017700a8cb5dfaf8d15379dc24304809b97c7d5","tgt_lang":"id","translated":"हिन्दी (Hindi)","updated_at":"2026-06-26T21:43:38.080Z"} +{"cache_key":"8483483bd4750f2de9bcc6008340554c9aebbad6cc51f6529f1c65b4932d488b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"id","translated":"ID Plugin","updated_at":"2026-07-10T04:28:41.010Z"} {"cache_key":"848d8ef6ebd0fec027a88754bd59c104c8f91617514c25d7cc18421b0150cf47","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"id","translated":"Penyegaran otomatis","updated_at":"2026-06-17T14:15:58.283Z"} +{"cache_key":"84f04075dab08f2adcfe51eddbf4a39cb66140972423f40b8eef4ad651fd008a","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"id","translated":"Control UI dan Gateway yang terhubung membangun identitas.","updated_at":"2026-07-10T09:47:32.145Z"} {"cache_key":"84f28ff1ea129a1580b1ecafff91b01cfd0989988b7b58b9fde9ba4b9281f53e","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.estimatedCost","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Est. cost","text_hash":"3199f14286736527bfc6ad9165629415a5aa087517acd2c0e9b1ae8bb5d26766","tgt_lang":"id","translated":"Perk. biaya","updated_at":"2026-07-05T16:00:23.410Z"} {"cache_key":"8591d72a7fd4f73c39238608b1cea45f12419ed2214ab812a9323adf2be1abc1","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"id","translated":"Lampiran ditambahkan","updated_at":"2026-05-30T15:38:39.708Z"} {"cache_key":"85c51654a541e9d629d6916e9f0326dd6510a4bd1bdc30e3ede4ee20472924e7","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"id","translated":"{count} lampiran","updated_at":"2026-05-30T15:38:39.708Z"} {"cache_key":"878f87dabaf9343ff41d5d431fcc14814bc83b418a776a0798aac69aef7142a4","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.generating","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Creating a secure setup code…","text_hash":"eca7942aeec595e3a1ebf01564b7dfc4ad90868636da4337f0470dcf1d97bc52","tgt_lang":"id","translated":"Membuat kode penyiapan yang aman…","updated_at":"2026-07-04T16:48:34.014Z"} {"cache_key":"887c1ac41bc1d56ce2edbd3316d27a13feae5660ba9e70593699354a711886f0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"id","translated":"Kepadatan kartu nyaman","updated_at":"2026-06-17T14:15:58.283Z"} +{"cache_key":"88bc89759cb779273a6cedc99788468085088382f28b4956c89bfb69ac571bc6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"id","translated":"Perlu perhatian","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"8b32dd163f5ee63420c68929ed25138569ed89e803c3d95db53bc2eb468acabb","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"id","translated":"Akses mikrofon diblokir. Izinkan di pengaturan situs browser untuk menampilkan daftar input.","updated_at":"2026-07-06T17:57:03.488Z"} {"cache_key":"8b3e60572d1314d99e05c28b7a595e5b6410d5ad0739516dd8617a9fd2b80831","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"id","translated":"Terakhir diperbarui","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"8bc0448d144a3974390eeeef39c2abe2a03a9602dccf0b284b4230d5ee9c1ad1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"id","translated":"Kesalahan sistem","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"8bec1d39e62ad1fee388a1a984df810284c4bd1cc0dae0ebc5cf10de820e5de9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"id","translated":"Hilang","updated_at":"2026-06-16T14:16:57.267Z"} +{"cache_key":"8cef0108b884291d2fc8e784e1fee1e63766cee9d9d95dd32f07f1648e2ee67f","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"id","translated":"Tidak dapat menyalin hash commit","updated_at":"2026-07-10T09:47:32.145Z"} {"cache_key":"8d18d0cb812253e3451d1879ef4e5c2fa0733868812d840e2eb7f16459836e6a","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.profile","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Your agent's stats, streaks, and life in the reef.","text_hash":"1fdc442e9cb9b6f4abdb44a4e6c4c304ab51c2dbe616e4c975add631108a4b28","tgt_lang":"id","translated":"Statistik, rentetan, dan kehidupan agen Anda di reef.","updated_at":"2026-07-09T11:28:19.904Z"} +{"cache_key":"8dd2e56b2c94146cd99d286e5e1583ea6a9cf51769f4f1d0cd426c358ba4564b","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"id","translated":"Commit","updated_at":"2026-07-10T09:47:32.145Z"} {"cache_key":"8dfdacbba9e37affe1b7b366b704ad8feaa934a77d898656ba3c8fb56667c618","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"id","translated":"Salin jalur","updated_at":"2026-06-16T14:16:59.378Z"} +{"cache_key":"8f4fd9e62bed5a5d70de27c4267cea64c693275ea2076df801e3abba29b71f2e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"id","translated":"Disertakan","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"8f9d906352209cff0e3dddfbf52499a637ba0a770f43159db5cc8efbec9931f4","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.loading","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Diving for stats…","text_hash":"81a616d9c5f179db9a23f119bd752b6c0445a3e37bcc28e76eab97fd29da7c74","tgt_lang":"id","translated":"Menyelam mencari statistik…","updated_at":"2026-07-09T11:28:19.904Z"} +{"cache_key":"8ff672077654fe675e38813934cac4702b2f78ff377a33e1b89b629cbd5f1156","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"id","translated":"Nonaktifkan","updated_at":"2026-07-10T04:28:41.010Z"} +{"cache_key":"90847aa3cc445920e5319c7d01d5f8de862b6450cfd87ca0a37a62d694293070","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"id","translated":"Hubungkan dunia Anda","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"90853298b76d7d2bde50fcb87834a7bf5c034e06e56688621b6f7ae539251d39","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"id","translated":"30d","updated_at":"2026-06-17T14:16:03.086Z"} {"cache_key":"90adc9a077f43897ea1a4ad086467460faa71e4768736a4e39adbd8db2635a16","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitRight","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Split right","text_hash":"aa9997bb1d8c23d0b88521c4093fc8c3ee01b187f78635ae4d3e16d27e8a8475","tgt_lang":"id","translated":"Bagi ke kanan","updated_at":"2026-07-06T07:24:02.090Z"} {"cache_key":"914124ffdd34d85f05f995c98fdbfcbd49573c619c0dcd739e531d6a33eb340a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"id","translated":"{count} siap","updated_at":"2026-06-16T14:16:50.406Z"} @@ -193,36 +266,50 @@ {"cache_key":"9305858983a43c06054aedbb2c28ad572ab7d742086442f889f60e79b3aaf0b8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"id","translated":"online","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"931533fbb84582681d7deb8cf3dd75a56bb0bd3bb79e34a79f2b558ab4666862","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"id","translated":"Agen default","updated_at":"2026-06-17T14:15:58.283Z"} {"cache_key":"933fea56309e94d0320d1dd121a86e0b1e62e9cefc2ac0ba3fd25f6bceb7026c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"id","translated":"Suara","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"93879e932e46297468b430e489d888ed6786570fca8598245f8c477c27ff1a3f","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"id","translated":"Plugin","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"93bb864a992b0835a7675d23ac7f7eb05a04b9886e267a9b9d0329ae3bf3568a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"id","translated":"Diperbarui","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"953eed65c64158ccff955f49666b2273efb8751c998e6ec6a08aa21432b8fe3f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"id","translated":"Board: {board}","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"95c033c739529164331035adf1b44685f19be96280bd27980650d61ca257d379","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.badge","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Expired","text_hash":"424a2551d356754c882d04ac16c63e6b50b80b159549d23231001f629455756e","tgt_lang":"id","translated":"Kedaluwarsa","updated_at":"2026-07-01T10:33:20.040Z"} +{"cache_key":"9605bd4c4cf998fd1845bc9c804be6733a2f778fab4cfca3ac631ffb766b4ae8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"id","translated":"Konfigurasi","updated_at":"2026-07-10T02:27:35.501Z"} +{"cache_key":"965d320ca5e3850eba6adfc41e1d41f75d3c6e71a9544915838dacf89e745bbe","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"id","translated":"Server MCP “{name}” tidak ditemukan dalam konfigurasi.","updated_at":"2026-07-10T02:27:32.156Z"} {"cache_key":"973fe65a34f96553838f6373b66b7e4052f205961fb1ac705909fb207193f0ca","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"id","translated":"Siap","updated_at":"2026-06-17T14:15:58.283Z"} {"cache_key":"9797ccab3e346656b3370be9687fe5b93d676c4f44c2a8929c615989fee9645d","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"id","translated":"Snapshot gagal: {error}\n\nHapus tanpa snapshot?","updated_at":"2026-07-05T21:01:23.086Z"} {"cache_key":"97ba33ecbfaa2cbd383f3cb530d18ce868d04fae1f09e21568f57c21f94782f3","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"id","translated":"Kategori biaya","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"9904fcedb8f389c643e499148caae987d1dd229b635df4306a7cacee975c1716","model":"gpt-5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"id","translated":"Muat ulang","updated_at":"2026-07-09T10:01:43.737Z"} +{"cache_key":"992e5b61573e51073476a4f2e4399300a2eb95179f05ba1d19168d3ff04737e9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"id","translated":"Akui risiko dan instal","updated_at":"2026-07-10T02:27:39.399Z"} +{"cache_key":"9a0671d8412bc3f9472f8e8cb22860fb025aecdb018c331cef1564b9d24ba859","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"id","translated":"Coba pencarian lain.","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"9a23aa0c564bb15c0e2ac193098e972c245dbe7b2e3bd6d544fb00c4409aece4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"id","translated":"60d","updated_at":"2026-06-17T14:16:03.086Z"} {"cache_key":"9a6094400e4e615f25ae9be31a688ef81fcac72ff43d806803f6ca759765c64d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"id","translated":"Workspace","updated_at":"2026-06-16T14:16:50.406Z"} +{"cache_key":"9a82e7430b0976430c195191e7a3aa8ff57c6e99495c4196b2335e8217493c81","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"id","translated":"Diaktifkan","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"9ae18f99c7ece1f4106fe7262faaf7451d49d648a5f424e9f4e4e8e44b1fffc5","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"id","translated":"Terhubung","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"9c4e80637eb47b53ac918e25fe85d18f7662511f12568894a4fae49519f948e5","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"id","translated":"Bersihkan sekarang","updated_at":"2026-07-05T21:01:23.086Z"} {"cache_key":"9db01479d4219bc2b39c9076f667e693f7cb70d43540b6c64158b0dc16c9b88b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"id","translated":"Buka obrolan","updated_at":"2026-07-09T08:27:24.741Z"} {"cache_key":"9fdcae90a19ea39bac800a197a0e61ca7d5c04fe302c05d1808f88f4df3c658c","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.manageDevices","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Manage devices","text_hash":"3511575c8f3ee17581f629d4cf559c5c2fe4550d4249be8268404a1eb67920f8","tgt_lang":"id","translated":"Kelola perangkat","updated_at":"2026-07-04T16:48:34.014Z"} {"cache_key":"a08a305a53d4cf11ab4b37240c68c62caa38de6cef898d86d70d588b685a5f52","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortCreated","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"id","translated":"Dibuat","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"a0ed87c8a6c5244acb1f6c9e261ad377ff04c144574c10ea8ea20c2945a39734","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"id","translated":"Tambah","updated_at":"2026-07-10T02:27:28.813Z"} +{"cache_key":"a121558d7db0866e2ae346f0bed321e165ecd576a559ab5672c91976813bbaf4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"id","translated":"Gateway offline","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"a20599cf549caead376749c24ce2ee676b7cf6f4aac285ebc273e1411bbf19a6","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statPeakDay","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Peak day","text_hash":"c3a0833ac4b7cd06e29368f323fef10520637658605aa35de342df7bac6357f1","tgt_lang":"id","translated":"Hari puncak","updated_at":"2026-07-09T11:28:19.904Z"} {"cache_key":"a24275f9cce49e7aef0e801b42b9b7bd4e587d3090aab8ad95321876f761b8cc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"id","translated":"Sedang","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"a508d7339d5b8f6100e8331efc85df926afd60592d5e4c5bbd6a276c05ae31fa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"id","translated":"Cari file","updated_at":"2026-06-16T14:16:57.267Z"} {"cache_key":"a57bfc810504561b292c8bd9fd4b9ebbbec215d4584f31b98733ab6bef911292","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightMessages","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Messages exchanged","text_hash":"3e0eaa1c266dfdf2f9799c1f3c574da7533f63057934e0aa003eddabc517cfbe","tgt_lang":"id","translated":"Pesan yang dipertukarkan","updated_at":"2026-07-09T11:28:23.299Z"} +{"cache_key":"a60f0c448a44e804f102d8f192e85d87c2aa475043c50da49466dd9ca7294f08","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"id","translated":"{enabled} diaktifkan, {disabled} dinonaktifkan, {issues} bermasalah","updated_at":"2026-07-10T06:09:00.510Z"} {"cache_key":"a68fa56346c179bbc3fa2937f292696f494018936daae83bf21baa2daf2322f9","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLifetimeTokens","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Lifetime tokens","text_hash":"3d7b0d3aa231e0a255b58b67aa9eeb2b921b19ce9aa983bb867d7b7cf3e16ce9","tgt_lang":"id","translated":"Token sepanjang masa","updated_at":"2026-07-09T11:28:19.904Z"} {"cache_key":"a6d2ba943095b89f801022419b860d73fd86224275a100ed0a9f9250eb570674","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"id","translated":"Gunakan obrolan saat ini untuk permintaan revisi","updated_at":"2026-06-16T14:16:44.079Z"} +{"cache_key":"a7e531b1bbfcca7679194ae0025dfc092fb1fa065f0755d070e7fafa53f6d94d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"id","translated":"{name} ditambahkan. Autentikasi dengan “{command}”, lalu mulai ulang gateway.","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"a7fba23cc45a72692c36db999bb00ac6f525e0837801a2896dcf714123f89905","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"id","translated":"Agen & Alat","updated_at":"2026-07-09T08:08:07.402Z"} +{"cache_key":"a8a3fc54e9d6749323bb6d7f3a2a6c6a6269e2e35ee507f06a65470168280f92","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"id","translated":"Temukan plugin unggulan atau cari ClawHub untuk memperluas OpenClaw.","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"a8ed799d499e4c3fd56b32bc43104b56d015ab1498b002a3056200766a8f46f2","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"id","translated":"Tindakan","updated_at":"2026-07-05T21:01:23.086Z"} {"cache_key":"aa183c70182ec36fb394d2a21b4eca2d0a81cf81fa4c932ffddfcf20c8558e86","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"id","translated":"{count} dependensi selesai.","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"aafdf0513119d28449d59b0178da95fbf0377096ebbd648fb8f5efafc7bb99b1","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Token activity","text_hash":"05f1f9836e5173d8ab4539357cfa050c3ad480fc049ddc22cb8fb8ea437997e2","tgt_lang":"id","translated":"Aktivitas token","updated_at":"2026-07-09T11:28:19.904Z"} {"cache_key":"ab4087229a73b3b71e608dd538e061894816e3175b3fa75c1fa29e9353286567","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"id","translated":"{count} log worker","updated_at":"2026-05-30T15:38:39.708Z"} +{"cache_key":"ab69154738e9295f993e6f10d472b0cf12a74bfad6fc4bb58b1f44be2c1e97e3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"id","translated":"Server MCP {name} ditambahkan.","updated_at":"2026-07-10T02:27:32.156Z"} +{"cache_key":"ac1429337266e3776ed44a5d324db0620d82e2e66b2a9f4b1017a30b69e6f72d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"id","translated":"Penyedia model","updated_at":"2026-07-10T02:27:32.155Z"} {"cache_key":"ac33af0755f123eef7329b04adf42116ef03df6f657b17d9b155cb60e93ecef8","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.emptyTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"A fresh shell","text_hash":"da0d613f0ec767755258b8a2c43bec5d305997daeca16068dc927fbda8194378","tgt_lang":"id","translated":"Cangkang baru","updated_at":"2026-07-09T11:28:19.904Z"} {"cache_key":"ac61625915d6c867fcc679be097eacd5a54e725384ba3195e072ff64eec3ab83","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"id","translated":"Gunakan obrolan saat ini","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"aceec8a44d54fd1e6b9050ac91f81dcfcfbe4b37e4fddcddad54e203c423fd42","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"id","translated":"Default","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"ad2e68ef1284c4ccb35761e655323c14da5a27a153f3eba2db3b0fd3c9b235e7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"id","translated":"Ganti nama sesi","updated_at":"2026-07-02T14:30:35.554Z"} {"cache_key":"ad3853e3b218bb97b77b7153296ab380a9e6518ed82ce10ce45f1b64fa5fcc8b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"id","translated":"Browser ini tidak dapat menampilkan daftar input mikrofon.","updated_at":"2026-07-06T17:57:03.488Z"} +{"cache_key":"ad5391c8a91c8cb163f39fd456818e711859281a60db21401e6b9a4c93283afa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"id","translated":"Hanya menelusuri. Perubahan plugin memerlukan akses operator.admin.","updated_at":"2026-07-10T02:27:39.399Z"} {"cache_key":"adaafa567b294ca2a141ba3c60dac20a2b9cde45c0edc7aabdb6f8f435d45dbb","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"id","translated":"Muat lebih banyak","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"ade96abc5cf5bc4a64c8b6fe6e2a0424aec0c71ab0ca76187e22ce2f60bc955f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"id","translated":"Default sistem","updated_at":"2026-07-06T17:33:58.361Z"} {"cache_key":"ae0f22a3e0ac71e4aa5b4c93844e6ef666b6fe3e8e9e19ba222af77ab672210b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"id","translated":"Tidak ada sesi yang diarsipkan di host ini.","updated_at":"2026-07-09T10:01:43.737Z"} @@ -231,60 +318,84 @@ {"cache_key":"b037f499cec5f612909a291b6ad3f50324e90bb86d66166f35577ce496c3d16f","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"id","translated":"Русский (Russian)","updated_at":"2026-06-26T21:43:38.080Z"} {"cache_key":"b0640aa8dff3b5711cefa898e460b01e285a1e5948869b19ee80d82018193f2d","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"id","translated":"Model teratas","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"b0e566400a353278f40b1479ba6dd94a64e6303abedadf5914829b199f9fd71b","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"id","translated":"Pelanggaran protokol","updated_at":"2026-05-30T15:38:39.708Z"} +{"cache_key":"b16979a7eb88172bcdd59b0a96aeb7e8ba92df032b6416291383055e0ca80a90","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"id","translated":"Global","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"b194afbb7210dea84dd21bf201236c0af58b2cf68a3e146ae4072a52cf3fc0b4","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.legendLess","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Less","text_hash":"ae5239ec63f28cd401ccd63e9f56e4ede8254a738a135ebcd33e844c18dd247f","tgt_lang":"id","translated":"Lebih sedikit","updated_at":"2026-07-09T11:28:19.904Z"} {"cache_key":"b21f6b41afbd42158f484b9566f377d60e9f00cee49e93143b06aa2c0b91b93b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"id","translated":"Agen","updated_at":"2026-07-05T14:40:07.941Z"} +{"cache_key":"b2aca2e46ca34c377ab3845bde2f14ca639596de7ff20a1e5896ab7206686015","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"id","translated":"Mesin konteks","updated_at":"2026-07-10T02:27:32.155Z"} +{"cache_key":"b2c6d559bce122276ce508a2ab23bfc3ebf61d36c3b0b09fba2a8a09710335dd","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"id","translated":"Detail build Control UI","updated_at":"2026-07-10T09:47:32.145Z"} {"cache_key":"b2e9da596a5ae9d2c97878e926450c189fe2b110b6696586037eeb4ab8149ec0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.actions","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Workspace file actions","text_hash":"461817d921bc7672e95fe4a3b23f4ac2a4a20e35b3d6eef3f02e8f5ba4201050","tgt_lang":"id","translated":"Tindakan file workspace","updated_at":"2026-06-16T14:16:57.267Z"} {"cache_key":"b37b7a539e2397447eb5f39ed6aaec078d08964f69ecb7127a2210cb4d71120a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"id","translated":"Tambah catatan","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"b437b0517f5e8f792cbb4b4c541d9a19807a38027d4d37e46126adc0971f5848","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"id","translated":"Skills: {skills}","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"b47fc58a62e53c3aba1bcabae5d963b947d6893506871033cbfa12b63208d134","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"id","translated":"Lebih lama","updated_at":"2026-07-05T14:40:07.941Z"} {"cache_key":"b6158326dc4e8241e73302132db88572345f95c3e7b03c88a84fda0d39ccbccf","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"id","translated":"Thread","updated_at":"2026-07-09T10:01:43.737Z"} +{"cache_key":"b65de90f3bc9f2ddc8959f6ae408e78d09479469c1da44bfe9a2af7a505c4374","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"id","translated":"{name} ditambahkan. Sesi agen baru dapat langsung menggunakannya.","updated_at":"2026-07-10T05:22:32.452Z"} +{"cache_key":"b734303f37755a86a2b3f75646c6f52a701dfa75918b4321c66fe161fed24b30","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"id","translated":"Menambahkan…","updated_at":"2026-07-10T02:27:32.155Z"} {"cache_key":"b78888293711b4aae9d034ca861d47a01f4888fdbb875b691b5a7c3cae2704a0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"id","translated":"Aktif","updated_at":"2026-07-09T10:01:43.737Z"} +{"cache_key":"b840ea08629e01e6d55d6bbef3d8464bf1d964bd7361444bf2d41c7e20d13a87","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"id","translated":"Versi","updated_at":"2026-07-10T09:47:32.145Z"} {"cache_key":"b9544a1c5772877fa4ecbb8421d2e24e9468407ebb71874fde5ce4929bb8ef12","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"id","translated":"Tampilan hanya baca untuk sesi Codex di Gateway ini dan semua komputer terhubung yang membagikan sesi tersebut.","updated_at":"2026-07-09T10:01:43.737Z"} +{"cache_key":"b97d3b74c068797c47a0aee3e451260d7788c3abe1e9134b5b20f95b9afb92ab","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"id","translated":"Terpasang","updated_at":"2026-07-10T02:27:25.105Z"} +{"cache_key":"b9de0130b2164acb50db4bab97e3daad1bbb96b4fefaa0afe1e9e61207f85cec","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"id","translated":"{name} telah dinonaktifkan. Restart Gateway diperlukan untuk menerapkan perubahan.","updated_at":"2026-07-10T02:27:39.399Z"} +{"cache_key":"bae6aef9435c862d6eee9d6e2ebf1fc785bd4f6acde353002404c6ce1eaeda9a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"id","translated":"Sumber terverifikasi","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"bb72546cfd252e3b6fcd0d9ddf1c5b8583131a4ffa7639daea20053e96be4efc","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"id","translated":"Urutkan berdasarkan","updated_at":"2026-07-06T23:41:12.290Z"} {"cache_key":"bbd4fd1f40eb45f0dcd04d75032626584650aa393d208be9578c7862e05373cf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"id","translated":"terblokir","updated_at":"2026-06-17T14:16:03.086Z"} {"cache_key":"bc30c976e2acb3f362c9dd434f7e1ecfac8da80e65f5f3075d739c59621fa1d2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"id","translated":"Tidak ada file yang cocok.","updated_at":"2026-06-16T14:16:57.267Z"} {"cache_key":"bc7de7c40566fea74e2bea134f02ca096dd67734134e0fed88b1875ea05db911","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"id","translated":"Siaga","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"bc7e37b79acc8d618b4971b4bbafb0d2a8c5fa086feb94dec05a97e18d8a5ddb","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"id","translated":"Memuat sesi Codex…","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"bc943e1fdb3cebd9366a4b42fc82605da5ec87056f1c2ca1f450144a728919c1","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnly","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Archived only","text_hash":"da7ebd8c482f38dc2a5b693a0ec25aaa04ea7b5fa3713cce9fa41a28f2201a6b","tgt_lang":"id","translated":"Hanya yang diarsipkan","updated_at":"2026-07-02T14:30:35.554Z"} +{"cache_key":"bd5c79f3b40b75be6e0bfd30f0db0dff596518a44dabd621fef9da4dd6dccf99","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"id","translated":"Ditambahkan","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"bd70bdccab7c5bab105d8759241b13222cb15a89e36d8b5f905531af32c1be6c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.runDuration","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Run duration","text_hash":"b5e9698b25697ec71f0947df28e6b08438033fe73b1b87ac7362766d77b45b97","tgt_lang":"id","translated":"Durasi berjalan","updated_at":"2026-07-09T10:13:27.940Z"} +{"cache_key":"bd8152764a04562b07407c53797a05dc090b878e36f37f760a1cab6123355fce","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"id","translated":"{name} telah diinstal. Restart Gateway diperlukan untuk menerapkan perubahan.","updated_at":"2026-07-10T02:27:39.399Z"} {"cache_key":"be2567712d43d5604dec1e9417d633db34a90edd4383e93afb6595d20d9fa6bf","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"id","translated":"Worktree","updated_at":"2026-07-05T21:01:23.086Z"} -{"cache_key":"beebf53aed933ff8176be17d2428c5da54ad83302b70f85da074567ea64b1d53","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"id","translated":"Cari","updated_at":"2026-07-10T06:08:32.662Z"} +{"cache_key":"be684f3425f3bcc93d33d2066f5eba2e216cc9c3ea591ab281b9aa62d234d2a8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"id","translated":"Cari ClawHub","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"bf174d206b186b6e09e5518763ceeecb31d23f3f6d4e2648f28ba74899b32289","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"id","translated":"Node","updated_at":"2026-07-09T10:01:43.737Z"} +{"cache_key":"bf447e2137ce789da5606ed09d50e94dfdf059879a1b94f58a08682effba6de2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"id","translated":"Dari ClawHub","updated_at":"2026-07-10T04:28:41.010Z"} {"cache_key":"c09bed7cc6fff4cd103c8aff90f2745427f815abaf825b6ebed105cf92f1d554","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropOpenHere","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Open here","text_hash":"b08e2fd2e872adcb575b305187b9db8482369325806953ce80190fc2dc1ab9fb","tgt_lang":"id","translated":"Buka di sini","updated_at":"2026-07-06T22:56:32.657Z"} {"cache_key":"c1975e34b46eb09c6e3da8876097d8d07b1eb3f19a3e156f4009e4dc195bfc06","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"id","translated":"5d","updated_at":"2026-06-17T14:16:03.086Z"} {"cache_key":"c2dfc082f77321e0e99c9e6648abe7cb1941d51520da517aa395cd67534ee0da","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"id","translated":"{count} host tidak tersedia. Host lainnya tetap tersedia.","updated_at":"2026-07-09T10:01:43.737Z"} -{"cache_key":"c491df5d16977d0e21b8d92c5d2e56d35f9f1a19c757d5df85f8d81d8d520a86","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"id","translated":"Suara lobster","updated_at":"2026-07-10T04:50:31.993Z"} +{"cache_key":"c524368fe6956be316cef49cf546d8950524c5452f5f314b58167653a26b71de","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"id","translated":"Muat ulang","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"c555d35c23340c4c8ce7a451c92f251d655b3e777cef38ffa5dd3b6631e6a31a","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"id","translated":"Tidak ditemukan input mikrofon.","updated_at":"2026-07-06T17:57:03.488Z"} {"cache_key":"c602df6d7a66b36cbf051f81c1d9774c915e4c7f87dc18510d6a16c8146176f6","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolsTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Most used tools","text_hash":"8bc3f9b213a6e4c632b3c09d45d7c373a07c75389ab5d6c17cc053352ea16847","tgt_lang":"id","translated":"Tool yang paling sering digunakan","updated_at":"2026-07-09T11:28:23.299Z"} {"cache_key":"c7327dcdbefe9c102dc92626d1dad26644bb416f62543550124ec25a49e2152f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"id","translated":"Tidak ditemukan host Codex","updated_at":"2026-07-09T10:01:43.737Z"} +{"cache_key":"c809b52eea4a620660a95e4c3c695dba14a7248a57046a4671f577a55a42a10d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"id","translated":"Batal","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"ca1cd7818628ba3e873a7b3679124ff1868b88af4647fb8ed91f168f8997199b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"id","translated":"15d","updated_at":"2026-06-17T14:16:03.086Z"} +{"cache_key":"cabe407e8a19c51b7dd108b36c77d87308e63a7cf239cd08a58d8db45c4289b0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"id","translated":"Hubungkan server Model Context Protocol untuk memberi agen Anda alat tambahan. Perubahan berlaku untuk sesi agen baru.","updated_at":"2026-07-10T02:27:32.155Z"} {"cache_key":"cadf2109212fdb59bb3027b0a5ac681d8b0eaa5b545def4f9388336135d64a9f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"id","translated":"Hari ini","updated_at":"2026-07-05T14:40:07.941Z"} {"cache_key":"cc4f677ef970eba7cfb5bb33c25da843f3438a1e73df10d900d7a08c5b041d02","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"id","translated":"Jalankan /pair qr lagi untuk membuat kode pengaturan baru.","updated_at":"2026-07-01T10:33:20.040Z"} {"cache_key":"cd7614a073bbdeba806c84e8e681970009c6870fc9616de0356d47f9c2c09039","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"id","translated":"Kesehatan workboard","updated_at":"2026-06-17T14:16:03.086Z"} {"cache_key":"cda10596fbab4d92c8cf15b4241bd11a5502abe59c6ad680de15b7fb0f5c2d07","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"id","translated":"Bukti hilang","updated_at":"2026-06-17T14:15:58.283Z"} +{"cache_key":"ce078c18e4efb0b9b2a0bf9a1b2f1ff235a261ca2490605f97aed664b4895573","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"id","translated":"Terinstal","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"ce5ac442741ecee3d6a096aaeb3e6861cb8d5e91a190cb81e18a67104380d49b","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"id","translated":"Repositori","updated_at":"2026-07-05T21:01:23.086Z"} {"cache_key":"cf414f23fb517b3d12a14f5198f64c80665c46f4fddfea78d3b759be8a7b173a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"id","translated":"Tidak ada file di folder ini.","updated_at":"2026-06-16T14:16:57.267Z"} +{"cache_key":"cf8868105803bbc2294d354979746010c1d7dd57238b620c4e32576e25012909","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"id","translated":"{name} telah dinonaktifkan.","updated_at":"2026-07-10T02:27:39.399Z"} +{"cache_key":"cff6370c6d05b5ea2ef9033ecd49c2bdd9ea98f4da103b184c8dff5326f2083f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"id","translated":"ClawHub tidak memiliki hasil untuk “{query}”.","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"d01e208aed76e66c0f6f41883bb834dd2a07dc282b70a0d46bb53cd02fb4f1a0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"id","translated":"Perluas workspace sesi","updated_at":"2026-06-16T14:16:50.406Z"} +{"cache_key":"d09079c855cc6dcd2d4ec09ac703b41e723c6f1f4e31ab8cab0eb419415eb831","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"id","translated":"Memuat plugin…","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"d11fd4837a49cf65220571537c25ea83da0b0966f9cf242906909e687b15eafb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dragSessionHint","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Drag to move between groups","text_hash":"3e8692b1cd1c1f9a606a779f1037aa390c885fde224ddb841df9259e8aab03ae","tgt_lang":"id","translated":"Seret untuk memindahkan antargrup","updated_at":"2026-07-05T14:40:07.941Z"} {"cache_key":"d14f58d319cc2513fc6a0f9d69a6c8dcf47af9d39e03fca7cc95a9f059881def","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolRun","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} run","text_hash":"269b72554d7e530ba9a8a05270baba9af1ea6a9f02bb4889bf75ef0b3bb20c44","tgt_lang":"id","translated":"{count} eksekusi","updated_at":"2026-07-09T11:28:23.299Z"} {"cache_key":"d17a6569a5a7949dc09cdccf10a708c71a6c28326408ad80a7d735e054d080d5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"id","translated":"Workspace: {workspace}","updated_at":"2026-06-16T14:16:44.079Z"} {"cache_key":"d17ea4afe05a5ea355716ecb846f970d962a77730e8053e7a02dda7e34207ce3","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"id","translated":"Input mikrofon sedang digunakan atau tidak tersedia untuk browser.","updated_at":"2026-07-06T17:57:03.488Z"} {"cache_key":"d1b9ce88eae0c2ff01100dcdf05f44b71c1048d3b0c47359bde77765c04e4e4f","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"id","translated":"Koneksi","updated_at":"2026-07-09T08:08:07.402Z"} {"cache_key":"d1dfdde5a1fc67dafd89ebb09b0c1e1f8799cd8edc06551599da6a4356fb8931","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"id","translated":"Jenis","updated_at":"2026-07-05T14:40:07.941Z"} +{"cache_key":"d21b7a308c917af6cebd1532aebfc38864a09a520f17080a315ea96ca089fa9a","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"id","translated":"Tentang","updated_at":"2026-07-10T09:47:32.145Z"} {"cache_key":"d2cc2e60f880347a8596e0f4f9d1800854f4c6395b35749d87f3f0578668dbd3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"id","translated":"Pratinjau","updated_at":"2026-06-16T14:16:59.378Z"} +{"cache_key":"d2cf6b530d8f29064d1a695db534a21cf97f964d8df7a45de69f693b8e9903c2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"id","translated":"Plugin komunitas di ClawHub","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"d2dd5959dc2a6aa08732290f3ca29b64cd012e3f01099f985837adaae141decf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"id","translated":"Tampilan workboard","updated_at":"2026-06-17T14:15:58.283Z"} {"cache_key":"d331069534b84a516e57129c0b9a2539e951203faee740e963f9fcdc6f446c16","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.subtitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Scan this QR code in the mobile app to connect a new phone.","text_hash":"d2db2ea1eaa4ab5857be526ed93b485e1bd8f84a559eeb382151a683a576232e","tgt_lang":"id","translated":"Pindai kode QR ini di aplikasi seluler untuk menghubungkan ponsel baru.","updated_at":"2026-07-04T16:48:34.014Z"} {"cache_key":"d3619bcd9bb6f8cf314a802d938916577085d1bf081a026d9d71e45b6557f79f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"id","translated":"Workspace sesi","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"d3a918134517c768aac206d853615ef1f6b9b7feff80aafe4269785dd9b9db74","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"id","translated":"Mampir sesekali","updated_at":"2026-07-09T20:51:44.462Z"} +{"cache_key":"d3b7a1287b23561f07a1ee902187a1fc735978ac7efb870ca4dd5eea5664740d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"id","translated":"Nonaktifkan {name}","updated_at":"2026-07-10T02:27:39.399Z"} {"cache_key":"d52d278187418c30d66b6dd628b361a85aadc86f7be357c0c528ce0d09cb4f93","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"id","translated":"Tutup error Talk","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"d75b732d4f3af2e3193e42ea7d9b7a764afa01c897c66939c18ba20ea1025893","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"id","translated":"Sensitivitas","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"d78243b9f4340dc7d5cf0b7964e2b73c699659692c7e9da6c15d94442c162d52","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"id","translated":"Memuat mikrofon…","updated_at":"2026-07-06T17:33:58.361Z"} {"cache_key":"d8b6f259af732ca15e7e1a094d8935a542077a5919ca7e5f36ebfc5a98cd307a","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"id","translated":"Server MCP, autentikasi, alat, dan diagnostik.","updated_at":"2026-05-31T05:36:49.780Z"} {"cache_key":"d916c9efb6e2dd88be509cec8ffe5b318ba23230ff8ad732463a01cd96424d44","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.waiting","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Official OpenClaw mobile apps connect automatically after scanning.","text_hash":"40dd288c9aa182a2809e74f4511402a69db7b153685db075bb5d216d964c3be1","tgt_lang":"id","translated":"Aplikasi seluler resmi OpenClaw terhubung otomatis setelah dipindai.","updated_at":"2026-07-04T16:48:34.014Z"} +{"cache_key":"d91d329b5324a5b5a348c214195d8db998df7217e1a77239a091a55ef55c2474","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"id","translated":"Cari plugin","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"d9428950e8ee231b8a4af00d0b4ce85b5530bef4ebe23d089304e024850d13b8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"id","translated":"Tidak diketahui","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"da099d23dd19f571f31721b00525247c0187cce03422c39779dd7e97eae31c05","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"id","translated":"Semua sesi","updated_at":"2026-07-03T07:40:03.820Z"} {"cache_key":"da2665a240e003f184a3c123497f5b75aedb30c03e05fd4b175cc0ed21cd0141","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.title","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"OpenClaw mobile","text_hash":"9adab9e889c70409aa1138dbcbba43edfc6d39f9e2855f8182f0f801aaf3541f","tgt_lang":"id","translated":"OpenClaw seluler","updated_at":"2026-07-04T16:48:34.014Z"} +{"cache_key":"da3931738ed1e148d64fd4782474bbcbefe40e2848586ff775e4759e67848364","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"id","translated":"Tidak ada yang cocok untuk ditemukan","updated_at":"2026-07-10T02:27:25.105Z"} {"cache_key":"da6a4973169844d42ff83c5ef81720c02c4e49e1f8af9d4739ffabb2792af076","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"id","translated":"Ubah filter tampilan, pencarian, prioritas, agen, atau arsip.","updated_at":"2026-06-17T14:16:03.086Z"} +{"cache_key":"da6c889237aef3f8e14e98d5dc78bd940bcd3aee9e1c174ebe47f486c2fb2554","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"id","translated":"Semua","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"db0ab96e8ec3965f1ac322a9152776dd03849c5c65facbc7d3c4db16698b4a03","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changed","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Changed","text_hash":"2a6141e43be0c2125e3b5d9f74b4ff1261a0b320ff927c83d4d9b1b65585bad7","tgt_lang":"id","translated":"Diubah","updated_at":"2026-06-16T14:16:57.267Z"} {"cache_key":"dbc2bc6f455c60ec84e8c0922f8a17abca6a1bdac34560fc3f7308a80fa67d68","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"id","translated":"Buka detail penggunaan konteks","updated_at":"2026-07-05T10:16:23.978Z"} {"cache_key":"dbd97a91bf0cda6d66e22e140333d00e402ba31801432e7f1287141a5be8b3ae","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"id","translated":"Sesi","updated_at":"2026-06-16T14:16:57.267Z"} @@ -293,38 +404,48 @@ {"cache_key":"dc29ef5be5583c33d76ff0eb8236f31d47c3b1b4808dfb0059a460f85126227e","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolRuns","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} runs","text_hash":"627a5f9e7cc0ba0f9bc65c55fb5e6421519e92d24f35dabffabb1eaf16aa750b","tgt_lang":"id","translated":"{count} eksekusi","updated_at":"2026-07-09T11:28:23.299Z"} {"cache_key":"dc42bec598fec79909c2df6c8af3952380ebb9a6919343f0a7248b2dc338a455","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"id","translated":"Input mikrofon","updated_at":"2026-07-06T17:33:58.361Z"} {"cache_key":"dc98a188c615e6955e911eccf25d0455f40da17710eaa2a61215aab18a0abe49","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapSub","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"A year in the reef — deeper red, busier claws.","text_hash":"906b1cb4b717da013c2b9d075676cbe9d381b56a3385c636a7d4154127e976e0","tgt_lang":"id","translated":"Setahun di reef — semakin merah, semakin sibuk capitnya.","updated_at":"2026-07-09T11:28:19.904Z"} -{"cache_key":"dd4a580386483ec70b8f6d24f42a6ec8de056ee7bcae47b4456fc22b8ec2a857","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"id","translated":"Seret untuk menambatkan ke kanan atau bawah","updated_at":"2026-07-10T06:08:32.662Z"} +{"cache_key":"dcbe7686fadce1e2cbf3955ec465cfca83e6e27527e4fdd8a8043256132ac563","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"id","translated":"Versi Gateway yang terhubung","updated_at":"2026-07-10T09:47:32.145Z"} {"cache_key":"ddad2e9357ef5e513436b206bc4b0318b7f069d5f7fcb69584bd0f3f1a442544","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"id","translated":"Tidak ada sesi aktif di host ini.","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"de0c0815182131aa7c19ae6e492b1ab2825544ad4d4538991d18b0a0137c3fc1","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.streakDay","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} day","text_hash":"a4d254870473ab599749406cae968f3d24c7da6d9082093cf43ee4317175fd2d","tgt_lang":"id","translated":"{count} hari","updated_at":"2026-07-09T11:28:19.904Z"} {"cache_key":"de1884dd0281c220a976cc36a217e6be883564a443581542bb49bf08b25f56bb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"id","translated":"Arsipkan sesi","updated_at":"2026-07-02T14:30:35.554Z"} -{"cache_key":"debe65a728c3528cdf033a998baeaf8c1a1c67de77c3c9dc6427beed31ee6115","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"id","translated":"Lobsterdex","updated_at":"2026-07-09T23:56:02.833Z"} {"cache_key":"df66b8402857730723182ecd1fbb8c77ca79e4c7539e4269eb19ca3f7f4258f1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"id","translated":"Simpan komentar setelah jawaban akhir","updated_at":"2026-07-01T01:07:58.622Z"} {"cache_key":"df7bab00f1962121b0163be590b8067de30660a13ac55ca455b2678170f234d0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"id","translated":"Folder induk","updated_at":"2026-06-16T14:16:57.267Z"} {"cache_key":"dfac13a3dd2a4bb6dbf3011bc4941d16b54a1f82328322ed3ccb43679ce5c397","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.newCode","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"New code","text_hash":"3edce074d60711e799f3ebf89c7d2b12069c421558d76340108e13cdc16c6e57","tgt_lang":"id","translated":"Kode baru","updated_at":"2026-07-04T16:48:34.014Z"} {"cache_key":"dfb5832b7baa3a5a238d40cf94def220415157a53ed265d984520477a5b26101","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"id","translated":"Armada Codex","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"e000addc86a86a6463cf99575faee33fd71b95c3e34ddb9f6e2fbc56118817a2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"id","translated":"Ganti nama grup…","updated_at":"2026-07-06T23:41:12.290Z"} {"cache_key":"e0737763eb51a1941b8cccb78d07d18432f7685c3e7f35b454f4ad894fa2476f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"id","translated":"{count} terblokir","updated_at":"2026-06-16T14:16:50.406Z"} +{"cache_key":"e0cf8d5c32999988d0e427eefbee03f3c653002ea4e4732b2aa8486dc3b10fce","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"id","translated":"Server MCP","updated_at":"2026-07-10T02:27:32.155Z"} {"cache_key":"e0ed70b05e0495f85f71a63c1df7c9b013cf7850384d0040c7e3444e73feec17","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"id","translated":"{count} token input","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"e230810b4d058feb3e9db6dbf62e16f16c23a408fe4f7e77020d94196b0dd8bc","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"id","translated":"Mode warna: {mode}","updated_at":"2026-07-07T08:47:37.323Z"} {"cache_key":"e2c8af96e934057f2b7fc227e2eced830ee92d6aab1f84a51b93667e24097977","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"id","translated":"Penyegaran gagal","updated_at":"2026-06-17T14:16:03.086Z"} +{"cache_key":"e321d00b04a06c3cffe7b4cf8d9858a0a000d34deb0530aceda3e8acbdc750e3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"id","translated":"Filter plugin terinstal","updated_at":"2026-07-10T02:27:28.813Z"} {"cache_key":"e349b49ef9df4d1985ca260adc9b3e5fddad17b5cf2157baa62e44e0c8ffdaa9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"id","translated":"Otomatisasi","updated_at":"2026-06-16T14:16:44.079Z"} +{"cache_key":"e3f718eaead1fb101d739081bb3d97494866240dccb9c963c1d78c32b32d77bb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"id","translated":"Server MCP bernama “{name}” sudah ada.","updated_at":"2026-07-10T02:27:32.156Z"} {"cache_key":"e3faf30b8f50a29ad9a81e76a555b1938b48d3a1d00afe96c050cc522916d6a0","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"id","translated":"{count} permintaan","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"e40ae49e621bad6ff03715bb5181881cf0882291de7f380b0b87662c0e6d7cc7","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolsEmpty","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No tool runs recorded yet.","text_hash":"9db22f17f7e8e1c3f86b168cde0d59ef62ea10f4363e51f802a5a06f341dc343","tgt_lang":"id","translated":"Belum ada eksekusi tool yang tercatat.","updated_at":"2026-07-09T11:28:23.299Z"} {"cache_key":"e40c310f04a9f003f464e9a31ec8c8c34980125e65a5bdf3090518edac46a77d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"id","translated":"Model","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"e523524bb221cdd7479f54d061c011bb5c8900235d23fd5f41602d2f20c10a93","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"id","translated":"Sematkan sesi","updated_at":"2026-07-02T14:30:35.554Z"} {"cache_key":"e5ca3610e62811f451e93aaef650cbca7eff29c9259d28163bb022c39ae779a6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"id","translated":"Tampilkan hanya sesi yang diarsipkan.","updated_at":"2026-07-02T14:30:35.554Z"} +{"cache_key":"e7435d04a37f1f35359b8793805265fa1a52fefd32978b14641fb0a756a235ba","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"id","translated":"Tidak dapat menyegarkan konfigurasi Control UI: {error}","updated_at":"2026-07-10T02:27:39.399Z"} +{"cache_key":"e7b0eb0c8b731c2a04d898f7b4cadb996c92e72e9dc3ce7d6a322084a22fe6df","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"id","translated":"Identitas yang disematkan saat artefak browser ini dibuat.","updated_at":"2026-07-10T09:47:32.145Z"} {"cache_key":"e7b9ba14f638bd1119140becf179cb05ac5ef14c88e62e66b0699c5d0623f33e","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"id","translated":"Buat snapshot dan hapus {name}?","updated_at":"2026-07-05T21:01:23.086Z"} {"cache_key":"e982103174fa552144b2e70640a2b3ddde3247d2cbeeedd1ae65d6224de1ff68","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"id","translated":"Cari sesi Codex","updated_at":"2026-07-09T10:01:43.737Z"} +{"cache_key":"ea6ad150dd1161bc659e763c29fdb89ad74ca735496d7f40d889ea4684fbd395","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"id","translated":"Hapus plugin ini?","updated_at":"2026-07-10T02:27:35.501Z"} +{"cache_key":"eb078294d4bfaf6c73e534afa592a015f30819bd7a81c7b95f6cfe38bceba68e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"id","translated":"Tidak tersedia","updated_at":"2026-07-10T02:27:39.399Z"} {"cache_key":"eb48748888c8082cf62b33eb7ef510911fd65a023b4fecb22e15c577debfd1a9","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"id","translated":"Input suara realtime memerlukan akses mikrofon browser.","updated_at":"2026-07-06T22:42:22.467Z"} {"cache_key":"ed18d308aa8a5361e94da93bf2ef239f124417a6391de6147a3536b17e1d1314","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"id","translated":"QR pemasangan kedaluwarsa","updated_at":"2026-07-01T10:33:20.040Z"} +{"cache_key":"eebff747b7217d8c687866003b838b2bb853659bafd0ffab9d4c148312880fef","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"id","translated":"Plugin","updated_at":"2026-07-10T02:27:39.399Z"} {"cache_key":"ef4733e9cd59bbe281ad226372a26388b4d1243a965f45f3ff06fdb682a4fbad","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"id","translated":"Pulihkan sesi ini untuk mengirim pesan.","updated_at":"2026-07-02T14:30:35.554Z"} +{"cache_key":"efcf5feff9ed2e58f4f5e9c33178503a58002624bd9e8dbb06e9ba5893c09e0c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"id","translated":"Server MCP","updated_at":"2026-07-10T02:27:32.155Z"} {"cache_key":"f0163012fcadddfa9d3c798df4a3f6bb7195ad94443a8cf06f67e055f705e9c0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"id","translated":"Segarkan workspace sesi","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"f0e57bc79f7d7c9f2e562157cf337291af5fca264e55ac6d1ee9cb6b25b53062","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"id","translated":"CWD","updated_at":"2026-06-16T14:16:59.378Z"} {"cache_key":"f17ae074606bfb4498c7f17735484904a13da9850bcfa58d9567c823f9bec93f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewBlocked","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Blocked","text_hash":"18f2a0947f9d6523991b29b450307f22773f57d65f7efb98d48a167df04d6b1d","tgt_lang":"id","translated":"Terblokir","updated_at":"2026-06-17T14:15:58.283Z"} +{"cache_key":"f1b44f3602b823084e9154e675dc5965554ddc19fdd0522ae214c1ca5842cf3d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"id","translated":"Alat","updated_at":"2026-07-10T02:27:32.155Z"} {"cache_key":"f209b6e1e7d5e8ff677f83ee7125dbba869bf07d865938e95e9307414f02dad1","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"id","translated":"Pekerjaan latar belakang yang masuk antrean dan sedang berjalan.","updated_at":"2026-07-09T21:53:32.685Z"} {"cache_key":"f2e9fcfa2031a3d37b41eb410a6aa58a7bba85c32e8bb682555288067bc3119e","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightModel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Most used model","text_hash":"a13c86cd4f835d2c2b5af940171ede2a27e0f805cef070d87628f1bd333bb706","tgt_lang":"id","translated":"Model yang paling sering digunakan","updated_at":"2026-07-09T11:28:23.299Z"} -{"cache_key":"f37e0a58cd975edd6a1c670dc8ab0dd45ef65ec6235d484959a9e4a8193a06f6","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"id","translated":"Tambatkan ke bawah","updated_at":"2026-07-10T06:08:32.662Z"} +{"cache_key":"f2fd9e8562b8b8c0124c2921eea0adfa722b0d42784c548f61686b7c55a16221","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"id","translated":"Sumber","updated_at":"2026-07-10T04:28:41.010Z"} {"cache_key":"f5c5be6788e1ac4c9ff79d355061690067cd6af4c1feef09d3906fb40dd17233","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"id","translated":"Bukti","updated_at":"2026-06-16T14:16:44.079Z"} +{"cache_key":"f605de3c6220f21d0211d1159fcce98b0c6da8e9859c35d5bc936a23dfeb388b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"id","translated":"Paket","updated_at":"2026-07-10T04:28:41.010Z"} {"cache_key":"f64f45a19a4c17ef7b5a2c2d0b4f62aab785b008dee4a119461b2cfd5942cab3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"id","translated":"Tidak ada kartu yang cocok dengan tampilan ini","updated_at":"2026-06-17T14:16:03.086Z"} {"cache_key":"f66a0cf4437aa4946c48712571726afaae7c9b7369936426c0a8056f9bbb5dd4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"id","translated":"{count} dibaca","updated_at":"2026-06-16T14:16:57.267Z"} {"cache_key":"f79d93e9f99dfd8b7f5d35ea7d6b9c3bb12abb569a378b41cf4644d8a5bd48b0","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.legendMore","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"More","text_hash":"d47d7cb0e4f8fd2be5ee07826694c18917d83ca77d0a01698582d05f432db996","tgt_lang":"id","translated":"Lebih banyak","updated_at":"2026-07-09T11:28:19.904Z"} @@ -334,11 +455,14 @@ {"cache_key":"f9642bd5423e06835a406bbac9ac9e6ee4fb25710a065d808d6cacea71595764","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"id","translated":"Token eksekusi terbaru","updated_at":"2026-07-05T10:16:23.978Z"} {"cache_key":"fa055b871b9bd9ca6dda326459e5af64fdcdb7a17ad0ed42ce9200184e0de16e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"id","translated":"sesi","updated_at":"2026-07-09T10:01:43.737Z"} {"cache_key":"fa65d2992bc93c13c05e79fbec6565a3f70213d30c09b899a733844bb2091c33","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"id","translated":"upaya gagal","updated_at":"2026-06-17T14:16:03.086Z"} +{"cache_key":"fa85c2ffc487ebf2b73474918000e2e7c4c1ee15ad7856f76c1ea4c4b259ef07","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"id","translated":"Hapus","updated_at":"2026-07-10T02:27:35.501Z"} {"cache_key":"faf68dc5af548a4e09ba710d9b13da9921839a75e7fc637c3d607f691e8f7a2e","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"id","translated":"Jendela konteks","updated_at":"2026-07-05T10:16:23.978Z"} {"cache_key":"fb4a92811817189a6165cfa989b50f49b1db8e206535ab1f70b6c2fcbffb6430","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"id","translated":"Sistem","updated_at":"2026-07-09T08:08:07.402Z"} {"cache_key":"fb663cf7de8138e9585d262c48880fa2843da1ef75be7cbf9750c51905b04c70","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"id","translated":"Salin Tautan","updated_at":"2026-07-09T11:03:03.655Z"} {"cache_key":"fcd928fd054b0eee35d6b577464d4736092ee8651319be0d8cfdebfe71bc5efb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"id","translated":"Minggu ini","updated_at":"2026-07-05T14:40:07.941Z"} +{"cache_key":"fcff067763644bca9101b40de746a3f6db5916679f8c3e5067a9e70ea27b685b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"id","translated":"URL atau perintah","updated_at":"2026-07-10T02:27:32.155Z"} {"cache_key":"fd92e2a789288a3c451c5e575c10558faf23237805ef9ef230e94d4922234ef7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"id","translated":"Pengaturan Talk lanjutan memerlukan akses operator.admin.","updated_at":"2026-07-06T20:20:02.809Z"} -{"cache_key":"fe37cfdb3c4e12616539687402c1559f3631e83a0f6a1a6b5fb2f42fa012dd18","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"id","translated":"{seen}/{total} dikunjungi","updated_at":"2026-07-09T23:56:02.834Z"} +{"cache_key":"fdb7a7dd114de3080c554c2b68fead61c3d4f14c5ea2bd8a775436d8dd8a6f0d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"id","translated":"Workspace","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"fe3b8bb7f385af7d09f13c2993c0909423c87c583a628cac4af12bdb62f94132","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"id","translated":"Ciutkan workspace sesi","updated_at":"2026-06-16T14:16:50.406Z"} {"cache_key":"fe3de4973162f6c7b32f33095d1ed217c987810d906b28e16c045779ae424911","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.closePane","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Close pane","text_hash":"7fa0f9613d919e167b0f9aa03c22809d446af293eb6c3bac6866bae66d2656c9","tgt_lang":"id","translated":"Tutup panel","updated_at":"2026-07-06T07:24:02.090Z"} +{"cache_key":"fe90494e2292e0d70f2887c662ca98bc1e2b18b9d20aa7c286892cd4565b248e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/id.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"id","translated":"Menginstal…","updated_at":"2026-07-10T02:27:39.399Z"} diff --git a/ui/src/i18n/.i18n/it.meta.json b/ui/src/i18n/.i18n/it.meta.json index aabbaf940a06..044675053238 100644 --- a/ui/src/i18n/.i18n/it.meta.json +++ b/ui/src/i18n/.i18n/it.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:26.645Z", + "generatedAt": "2026-07-10T09:47:21.402Z", "locale": "it", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/it.tm.jsonl b/ui/src/i18n/.i18n/it.tm.jsonl index 0d9528928748..e57312072c21 100644 --- a/ui/src/i18n/.i18n/it.tm.jsonl +++ b/ui/src/i18n/.i18n/it.tm.jsonl @@ -1,16 +1,21 @@ {"cache_key":"003b05569784bbb668ad263f83428531e51daa5e1253acc1857b0bd6bb084576","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"it","translated":"{count}h","updated_at":"2026-06-17T14:19:20.279Z"} +{"cache_key":"00ada5cb27f9d33feaafd1379f05f9edadd47732f0b038a3966682f0a43d9663","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"it","translated":"Riprova","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"00d64ee41ffc286cca5ea5e05fa10ad88e4cf8c71bffef011df5ead1bfc91673","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"it","translated":"Comando","updated_at":"2026-06-16T14:15:54.477Z"} {"cache_key":"00d6b145bfb1edc9920ab3f807631b70cdc1a1257c2f292f76943e52d826b3f3","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightAgents","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Agents in the reef","text_hash":"050a0a3d70a5c89d65789f7983024ee9eb2539cee6c2e0b31677ac78b0cd3534","tgt_lang":"it","translated":"Agenti nella barriera","updated_at":"2026-07-09T11:27:56.887Z"} {"cache_key":"01666a1237f82d7e22a16a0257a4f9403571c742be47f9a083dfc60150037629","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.streakDay","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} day","text_hash":"a4d254870473ab599749406cae968f3d24c7da6d9082093cf43ee4317175fd2d","tgt_lang":"it","translated":"{count} giorno","updated_at":"2026-07-09T11:27:54.209Z"} {"cache_key":"0211275042f628fca767913ee41baf7cfe767fe528e674dd67f9ef332c2ecf6f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"it","translated":"{count} dipendenze completate.","updated_at":"2026-06-16T14:15:46.111Z"} {"cache_key":"034b6f860ea33856004add07b07ef3c5c40658482954d7b1cf22eb4d0d1dddf8","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"it","translated":"Orchestrazione","updated_at":"2026-05-30T15:38:31.723Z"} +{"cache_key":"03730f88fa2ffe675970b1519844d7d6787aab7e60b29f870e433b3addc06a06","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"it","translated":"Lavoro e produttività","updated_at":"2026-07-10T05:22:23.183Z"} +{"cache_key":"039314abf67ab259ee4dc7c0ac98bac645ba62c81cb38e2c0cfe2f975ac93b09","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"it","translated":"Non disponibile","updated_at":"2026-07-10T02:26:36.599Z"} +{"cache_key":"03fcbb71cac1878e377a6d3db991bbb57cb105c9681c0679d65235ccae591cf9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"it","translated":"Connettiti per esplorare i plugin installati e consigliati.","updated_at":"2026-07-10T02:26:32.807Z"} {"cache_key":"04ffebf265ed2c2f33aeb8c7ee5552a7311b922e6e88f95a39a47510aeac37be","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"it","translated":"{count} pronte","updated_at":"2026-06-16T14:15:46.111Z"} {"cache_key":"05a4be73360e62ce17ea5c586afd0be2802f7ae24cf064dbdc00929804539811","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"it","translated":"Carica altro","updated_at":"2026-07-09T10:01:43.724Z"} +{"cache_key":"062098c2037c3c3d1b0858965e55def61fa197bb86c025e4b935de85c15165cd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"it","translated":"Server MCP","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"062403cf33337e0782d382f0037af0c0a272fa749ab87f7d9427a240b5c5df51","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"it","translated":"Dividi","updated_at":"2026-07-06T22:56:28.456Z"} +{"cache_key":"063db39dad8002579349985dfe08ebd9a7f5ce1bdf0b53f647ff6ad20fa81b75","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"it","translated":"Rimuovi {name}","updated_at":"2026-07-10T02:26:32.807Z"} {"cache_key":"0676e07f40f1cf2d4b4a7ca4222b8549cb16de22673976bba62a3c9dc7485f19","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"it","translated":"Branch","updated_at":"2026-07-05T21:01:11.440Z"} {"cache_key":"0681f73108535aeaa33e3f79f8fa88ac54de304ca08fcb9f6950bd475ce896bb","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"it","translated":"Ultimo aggiornamento","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"06b8779e4641dbc9a749aaac05f3f4fb951ee36930eb5813c75ebb5598f03be0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"it","translated":"Thread","updated_at":"2026-07-09T10:01:43.724Z"} -{"cache_key":"06e311246ab173c0c5db252619a9f6989509df49411e0d15b57693d041594063","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"it","translated":"Aggancia a destra","updated_at":"2026-07-10T06:08:23.266Z"} {"cache_key":"07d31d045a2692f4a59176552a7e449802b4b94c15e6323e890e03f40ab01122","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"it","translated":"Modifica la vista, la ricerca, la priorità, l'agente o il filtro archivio.","updated_at":"2026-06-17T14:19:20.279Z"} {"cache_key":"0af5dc13dd7beb73ec4e5c1d63a69452633a23d474cf033e1c8c18a0ec2f44e3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"it","translated":"Riepilogo area di lavoro della sessione","updated_at":"2026-06-16T14:15:52.376Z"} {"cache_key":"0b6ba71d23553c82ef73deee7bfaa013bb96bee4b8fd5631640bd87485313d47","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"it","translated":"Errore dello strumento","updated_at":"2026-05-31T06:43:59.338Z"} @@ -19,16 +24,20 @@ {"cache_key":"0d9c68c1213a48fd5937323f8282a4d6ffc053ea81c98acbad27ae4bceba09de","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"it","translated":"Workspace","updated_at":"2026-06-16T14:15:46.112Z"} {"cache_key":"0e783ef164969aa22668cfc50d9755a299eb5d0378536bfc16ca66177f3999d1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"it","translated":"Radice","updated_at":"2026-06-16T14:15:52.375Z"} {"cache_key":"0e97155e469a0fb5f4a47e5e55430127f6c2c8e85b50cf11c720bd145754741a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"it","translated":"Nessun host Codex trovato","updated_at":"2026-07-09T10:01:43.724Z"} +{"cache_key":"0ef0a5be37d544bab11a584a8a71b5a856dd9b80271b62e685ab03996ca342e8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"it","translated":"Altro","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"0f1ef1671fc0996575cf4eb8df3e6be0b68b687122877c8056c85aef307e688f","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"it","translated":"Worktree","updated_at":"2026-07-05T21:01:11.441Z"} {"cache_key":"10f9390d7ed31c5188b9663412768c8d085c4311c703765a09cee4309636e530","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"it","translated":"Nota sull'obiettivo","updated_at":"2026-05-29T21:01:19.873Z"} +{"cache_key":"10fc88f9aa0f9c0eb6835b4d113302676fa11c019e1374ee63ae3ec581fd4f1f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"it","translated":"Categoria","updated_at":"2026-07-10T04:28:30.818Z"} {"cache_key":"11b0e61eca4bc8cc377e6eecbacbe667dc2b102a6ebc06483986319a41fe058f","model":"gpt-5.5","provider":"openai","segment_id":"tabs.profile","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Profile","text_hash":"d696a35bdd1883da07a8d6c41bb7a3153381b23aa197629ee273479a6eaa5a9c","tgt_lang":"it","translated":"Profilo","updated_at":"2026-07-09T11:27:54.209Z"} {"cache_key":"129367368b875003a151a74813056abe69d238409a22d764f06fba4104ff8776","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"it","translated":"Flotta Codex","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"129e8712ff5303bf2901f99e3c810aa5b689acf1a15dcac851e14f564e556020","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"it","translated":"Abilita la condivisione delle sessioni Codex sul Gateway o su un computer associato, quindi aggiorna questa vista.","updated_at":"2026-07-09T10:01:43.724Z"} +{"cache_key":"13717d7d730c5d753ea746c8050c11b5a87f0c69f2cc538b6bb65630393ae642","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"it","translated":"{name} aggiunto. Le nuove sessioni dell'agente possono usarlo subito.","updated_at":"2026-07-10T05:22:23.183Z"} {"cache_key":"139297788916303e49a2370e4db7e1accdbfd2002cc35a51d7702dffd4b4c88a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"it","translated":"Aggiornato {time}","updated_at":"2026-06-17T14:19:20.279Z"} {"cache_key":"14f2070df37107b8629b7f4a0114966fe50251af2e1df0094ce4c5a34bb2e526","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"it","translated":"Allegato aggiunto","updated_at":"2026-05-30T15:38:31.723Z"} {"cache_key":"1576a6da7179a8c6426eacb8c1f6c83ca480a5aaf5fec4caf8ea4089bd62609b","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"it","translated":"Nome","updated_at":"2026-07-05T21:01:11.440Z"} {"cache_key":"158ada640a97eeea3ca76a8b444fbe7363071c96eeac4ac37645a95161588e45","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"it","translated":"Questo browser non può elencare gli ingressi del microfono.","updated_at":"2026-07-06T17:56:50.224Z"} {"cache_key":"1695b6418ddce8c3d27eed9900b3c419dbafac6349e811d2976af6d5974132d5","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLongestStreak","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Longest streak","text_hash":"49095cff1349a49e9b8672a0ef850d5bec7be2af58e803a0f17c41faf6753f39","tgt_lang":"it","translated":"Serie più lunga","updated_at":"2026-07-09T11:27:54.209Z"} +{"cache_key":"17d122e75f4c360de7397d4d9e44986449052b468faaec0d19493d349f98bf6c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"it","translated":"Richiede attenzione","updated_at":"2026-07-10T02:26:32.807Z"} {"cache_key":"17edf25ad1b7258980b7fcf5bf893967fffda2c821f50dd86b2fa8780d78e5b9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"it","translated":"{percent}% di contesto utilizzato ({used} / {context} token)","updated_at":"2026-07-09T07:06:25.937Z"} {"cache_key":"1833f4179a53df5f8c5e8452c219fbc9b210dee901a52a96ced1b78cbfd339ac","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"it","translated":"Automazione","updated_at":"2026-06-16T14:15:39.914Z"} {"cache_key":"1946d8b254aa060689b7a9ca8650b12d6304a69396b8082291594055a67cf771","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"it","translated":"{count} artefatti","updated_at":"2026-06-16T14:15:52.376Z"} @@ -37,73 +46,91 @@ {"cache_key":"19f1ef9adadbdb2c9162dda73652cb9690f5e7ba86e581ac51d0fbea5e1d83f7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"it","translated":"Letti","updated_at":"2026-06-16T14:15:52.375Z"} {"cache_key":"1a7a6f9b3606ded319da669710184809d91e18bf0f31479b49a3f88b8cb698a5","model":"gpt-5.5","provider":"openai","segment_id":"connection.retryNow","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Retry now","text_hash":"5148c3e20576923b589bd801ea84dc376213b82fbf8694f64437b621f1690615","tgt_lang":"it","translated":"Riprova ora","updated_at":"2026-07-05T21:55:37.627Z"} {"cache_key":"1aba1c935b5775d5c8168944c98577a8eb86fc6fa6d452c351ceeceb9474b3d8","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"it","translated":"Ripristina questa sessione per inviare messaggi.","updated_at":"2026-07-02T14:30:25.278Z"} +{"cache_key":"1abf8f755d98387214a5cc5b63aedbc9d85afac0a9d23684d3a7446cb6f8d4ea","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"it","translated":"Richiedono attenzione","updated_at":"2026-07-10T02:26:23.009Z"} {"cache_key":"1c3c542ff6e1c9e7a4c8d5dca28709225c42297de2fd2f313fa716a396400dd3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"it","translated":"{count} modificati","updated_at":"2026-06-16T14:15:52.376Z"} {"cache_key":"1cc3578ec5d895bfd49ac7396b6c8b5293d7b877565ecc7446d8e2f7321ae465","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"it","translated":"Riepilogo delle sessioni Codex","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"1d063cd1bd0599740405fac0d38914b864f8ee20a4dbcf8edbb0a26df3652052","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"it","translated":"Sollecita dispatcher","updated_at":"2026-05-30T15:38:31.723Z"} {"cache_key":"1f5d5dab5381cf78de86c338434c2590467b28b1773237218f9ac31da59d140f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dragSessionHint","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Drag to move between groups","text_hash":"3e8692b1cd1c1f9a606a779f1037aa390c885fde224ddb841df9259e8aab03ae","tgt_lang":"it","translated":"Trascina per spostare tra gruppi","updated_at":"2026-07-05T14:39:59.770Z"} {"cache_key":"2046b25c1cb0c1248c325428bedbe3cef12f94e854ff3cd2b6bf953719e43f5c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"it","translated":"Tipo","updated_at":"2026-07-05T14:39:59.770Z"} {"cache_key":"21b1f4fe9bbddbc68d658d5fb5a3b1243fe26b9682b5fdab570482090e78d522","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"it","translated":"Copia percorso","updated_at":"2026-06-16T14:15:54.477Z"} +{"cache_key":"21c642b4b1cf7cfc89bd1dc689d5a43a37e7d472a98f9ee8686699913b64eff6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"it","translated":"Esamina l'avviso di ClawHub prima di installare questo plugin.","updated_at":"2026-07-10T02:26:36.599Z"} {"cache_key":"22a86581527684f1b1eb35f00a52a4ff7a9ac135d8cc2dcd7fe07146908545d4","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"it","translated":"Nessuno","updated_at":"2026-07-05T14:39:59.770Z"} +{"cache_key":"230d9993fc3acc22af06c459ee0ce194ba72cbad6287d45207f81d1b0e4d0bb8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"it","translated":"Aggiunto","updated_at":"2026-07-10T02:26:23.009Z"} +{"cache_key":"231bfe79e4b6bf20afee3956aa3776a036acaf8a5adff03fc06591dd2dd73c29","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"it","translated":"Installa","updated_at":"2026-07-10T02:26:36.599Z"} {"cache_key":"238edc13badd2fa46344bbd30f94b606fe5fff4327ae2b1505f922b157a69281","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.restoreSession","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Restore session","text_hash":"35e4dc9befd3b3a29b50938839af0efb41b08051988dde53e1c1e73d1c2a039f","tgt_lang":"it","translated":"Ripristina sessione","updated_at":"2026-07-02T14:30:25.278Z"} {"cache_key":"24bbcd448121a4e9260a2da31ef915b5b38b96e0a5f75618700f78b196822830","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"it","translated":"Agente","updated_at":"2026-07-05T14:39:59.770Z"} {"cache_key":"24ea6e0a55e9e0638ab4f850cff97e1fa1ee9e449a84f9f00839c0657ef105f4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"it","translated":"Dettagli scheda","updated_at":"2026-06-16T14:15:39.914Z"} {"cache_key":"26570ca48dcdb7f65a7d88352c75d60754829da2f8294455fdbcb1f7860a2089","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"it","translated":"Cartella superiore","updated_at":"2026-06-16T14:15:52.375Z"} {"cache_key":"2674e3f12f57b66df2301065fe70293099c59af91064c29558aca7d8d2b9928d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"it","translated":"Cerca nei titoli delle sessioni","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"27d56506bde2e0d21e95e1a6c943abde090ad4f497883d9d95eda9d1916ed968","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"it","translated":"Sessione Codex senza titolo","updated_at":"2026-07-09T10:01:43.724Z"} +{"cache_key":"27e7786058794fd05481e486fae6ac20f43c08eff4fba0d33baf70245c7565bd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"it","translated":"Cerca plugin","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"28ab134d67b5074b49379521eaf41222edf4e8ea303ad5be32f606798326c147","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"it","translated":"Finestra di contesto","updated_at":"2026-07-05T10:16:16.437Z"} {"cache_key":"2903478dcd427f7c1f61dd54a9ffc9db2bac981812776373ab693a432c045028","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"it","translated":"Modalità colore: {mode}","updated_at":"2026-07-07T08:47:33.966Z"} -{"cache_key":"2921e861dc586f4f070f2fab2089c4681abae68d3480bdcd4574c42d17f04ea8","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"it","translated":"Mostra i file della sessione","updated_at":"2026-07-10T06:08:23.266Z"} {"cache_key":"2abc7c97ab962f5e34a9612833bb4c2490807655f98ebc3830fceef3e2130f26","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightModel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Most used model","text_hash":"a13c86cd4f835d2c2b5af940171ede2a27e0f805cef070d87628f1bd333bb706","tgt_lang":"it","translated":"Modello più usato","updated_at":"2026-07-09T11:27:56.886Z"} {"cache_key":"2b3e57d2c58f49b9438c99d917d15a33d2fc266adccb75e66192ffb8ef3915d7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"it","translated":"Caricamento workspace sessione…","updated_at":"2026-06-16T14:15:46.112Z"} {"cache_key":"2b9638a5eeac2a8946d76138d789f33ee36c3338869cac40fc499bb4de1eac54","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"it","translated":"obsoleto","updated_at":"2026-06-17T14:19:20.279Z"} +{"cache_key":"2b9ebf90b796d2d15c76b851cfd67e16583a09a0c9a668264138c19b83d86644","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"it","translated":"Prova una ricerca diversa.","updated_at":"2026-07-10T02:26:23.009Z"} +{"cache_key":"2cbab5f2d471cda4c17d1a42c4975744707c57db83bba37f1c9f7a0bbceec6b9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"it","translated":"Elaborazione…","updated_at":"2026-07-10T04:28:30.818Z"} {"cache_key":"2cf47ba786f2a034c95cf8b1fdd1057caedc9f7c5ded7f0fed4e46f3acaadcc9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"it","translated":"Ignora errore Talk","updated_at":"2026-06-16T14:15:46.111Z"} {"cache_key":"2d1c8b6aaa4fbab39282f20bde0c45cdafde6023c920c37729409cf1d28fc3f7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"it","translated":"Schede senza un agente esplicito.","updated_at":"2026-06-17T14:19:01.168Z"} {"cache_key":"2d92adf8b2eede705bae297dd0b2e4916cd60ac4a2042484c8d5c33f692376fc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"it","translated":"Nessun file modificato in questa sessione","updated_at":"2026-06-16T14:15:46.112Z"} {"cache_key":"2d99e7b5bb353f59257a5eff593e43b45e8ab1344d431b30e2c857c71633c82c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"it","translated":"Sessione","updated_at":"2026-06-16T14:15:46.112Z"} {"cache_key":"2e01c43c7ed288ef6fa2ca5d812ceb78cbb8cd10f4d88c0bb8b004ad4f6cfb43","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"it","translated":"{agent} (non configurato)","updated_at":"2026-06-17T14:19:01.168Z"} {"cache_key":"2e6cc82196d671aa1fc6f970a722654cbfa34d11bdbbe36ee56de2246c052513","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"it","translated":"Sensibilità","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"2edf6a1ac9bb84f9e27a3871c75220170efee455c31b5a43854110c2600b8b87","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"it","translated":"Hash del commit copiato","updated_at":"2026-07-10T09:47:21.399Z"} +{"cache_key":"2f2dcafead5b1e0527493cb291f2e6a9fa5d3699de413b8f59b9e76b4106322f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"it","translated":"Trova su ClawHub","updated_at":"2026-07-10T02:26:23.009Z"} {"cache_key":"2f57fb8c88cc9860fd21f637bffb5ff2b07485566302205b7e5ad51fb51e0e84","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"it","translated":"File del progetto","updated_at":"2026-06-16T14:15:52.375Z"} {"cache_key":"2f7b2ee738848d0d1576bd5ee8a2f734e4d9c1ca55d3b7aebd6026d9ed26f7d9","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapSub","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"A year in the reef — deeper red, busier claws.","text_hash":"906b1cb4b717da013c2b9d075676cbe9d381b56a3385c636a7d4154127e976e0","tgt_lang":"it","translated":"Un anno nella barriera corallina — rosso più intenso, chele più indaffarate.","updated_at":"2026-07-09T11:27:54.209Z"} {"cache_key":"2f97ec099e9a74ea333158c9215a3072b2ae6c6532af97a4ba58eded842064f5","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"it","translated":"{count} giorni","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"2fdc66a5b960018e37714b57af078df05c0147886201a2c17e56f22da30dff50","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"it","translated":"Il server MCP “{name}” non è stato trovato nella configurazione.","updated_at":"2026-07-10T02:26:28.426Z"} +{"cache_key":"3114dbe1b2a44b8484987e0b67396ef424b28c21b2542a27d397d16251e53522","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"it","translated":"Workspace","updated_at":"2026-06-16T14:15:46.112Z"} {"cache_key":"316731c2196b80cd30572ba7347bbcb415214a9bf89b1e2f6eae2f383c023982","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"it","translated":"pronto non assegnato","updated_at":"2026-06-17T14:19:20.279Z"} {"cache_key":"31703d8d87fa921a4691087d5a6fc0cf4096ab308d674fc5dea42b5e63e85e03","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"it","translated":"Costo giornaliero del provider","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"31e985892e47fba1b0d3c69810e7c70676c475936ca1382069c2ccc3c82a6a85","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goal","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Goal","text_hash":"cdbf6975e8a35b0d03558be6822dfae166482c24fb86b0433f60e8167f5c91e4","tgt_lang":"it","translated":"Obiettivo","updated_at":"2026-05-29T21:01:19.873Z"} -{"cache_key":"32231c0a3decff4199a4a6ce4cf28762986423f31f135028bcf0c374921261a0","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"it","translated":"{name} · prima visita {date}","updated_at":"2026-07-10T04:20:35.973Z"} {"cache_key":"327720c85807d086928efcb4304b94a026eceb598760fbb0fe3285eedbbe0ee0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"it","translated":"Sposta sessione in un gruppo","updated_at":"2026-07-05T14:39:59.770Z"} {"cache_key":"332db24e8e85772116191e50d622465a8cfe790ccf3dbcca87089ccbb0df8fe5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"it","translated":"Dipendenze","updated_at":"2026-06-16T14:15:46.111Z"} +{"cache_key":"346b83539d4883ec49420806ad2edaea6c103a71fe3a03283bae629490237462","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"it","translated":"Annulla","updated_at":"2026-07-10T02:26:32.807Z"} {"cache_key":"35357671f15f48fef1a9ac41ef519147068cf2052bb3cd330b8dbae79fb102d9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"it","translated":"{agent} (predefinito)","updated_at":"2026-06-17T14:19:01.168Z"} {"cache_key":"35d5f0dba45573323add2cf3263f99477af9a108bf21bd25f61a1ce10a31d1d7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"it","translated":"Aggiornato: {time}","updated_at":"2026-06-16T14:15:39.914Z"} {"cache_key":"35f6218c52c4a0be6bd937c2edec3e202a45268a509c18823283b73bc3851fc9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"it","translated":"Riconnettiti al Gateway per aggiornare le sessioni Codex.","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"3697c5693a998ef8aeba2799d6f9b580706ae3a39744b64888c3e86275208bce","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"it","translated":"Prova mancante","updated_at":"2026-06-17T14:19:01.168Z"} +{"cache_key":"370b14ab8d069c852fb91fcf6ac0f5394dd16bb5b6d08be8dd6e0287736449dc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"it","translated":"Filtra i plugin installati","updated_at":"2026-07-10T02:26:23.009Z"} {"cache_key":"37422243d0eb94fff9e401158ee263567e94d694b8422472c33c6b87b0c25b03","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewAll","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"All cards","text_hash":"2306120917506b5998ec702f3661068b102dac538ba4c9e4634d65fe33eea98a","tgt_lang":"it","translated":"Tutte le schede","updated_at":"2026-06-17T14:19:01.168Z"} {"cache_key":"376d8bc71134b338c7d5701640f516299078c0f1206e65e4e9857589e082a73d","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"it","translated":"{count} allegati","updated_at":"2026-05-30T15:38:31.723Z"} +{"cache_key":"37c647e00d599e8b2d2aada6f7b801f8c678ce6f730383ef56a08f359c424465","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"it","translated":"Azioni {name}","updated_at":"2026-07-10T04:28:30.818Z"} {"cache_key":"3804ebbe0f359a86a4cdb243a3448bf293c8b22d35afd6e33223cf6ac4688eda","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"it","translated":"Checkout isolati delle attività degli agenti e snapshot di ripristino.","updated_at":"2026-07-05T21:01:11.441Z"} {"cache_key":"381189ab10b76c9dbfb3777d402b7d77e965c6803bb2828e994962abe1a3a874","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"it","translated":"Copia link","updated_at":"2026-07-09T11:02:55.325Z"} +{"cache_key":"381c318e139d025239cd079e7edaa8ee0c3d6046b94468f6411f15e2b692bec3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"it","translated":"Solo consultazione. Questo gateway non consente modifiche ai plugin.","updated_at":"2026-07-10T02:26:36.599Z"} {"cache_key":"38b73b55e0e54885508225249705edb8752340d685679d501b7729c24492359f","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"it","translated":"worker {state}","updated_at":"2026-05-30T15:38:31.723Z"} +{"cache_key":"3979bf2c50710833bb0f222e990d3a351194ada841fcdef358dc0e6b4b8fdde6","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"it","translated":"Plugin","updated_at":"2026-07-10T02:26:36.600Z"} +{"cache_key":"397dd6698867a736bb5a27d1bcb2b05f4a9fca2d995e11599f555ea0799937b3","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"it","translated":"Informazioni","updated_at":"2026-07-10T09:47:21.399Z"} {"cache_key":"39da36e39b4cb6c5631fdd767bfaf384b23e2617c235a20673db5b01cd367949","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"it","translated":"Opzioni del gruppo per {group}","updated_at":"2026-07-06T23:41:05.438Z"} {"cache_key":"3cec7f61410edbc952139da9adb2a14497f2d131b6b4de67c23ba17535d11bd2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"it","translated":"{count} mostrati","updated_at":"2026-06-16T14:15:52.376Z"} {"cache_key":"3d380fd54b67a868e65927ab21cf27d42b4ac60266297a9e45748a2f9a85546c","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"it","translated":"Ripristina","updated_at":"2026-07-05T21:01:11.440Z"} {"cache_key":"3e1f5f4525137d5e5cfdf1ed9891cc8bf2793900f76ea8a4006b73fb1533df20","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"it","translated":"Ieri","updated_at":"2026-07-05T14:39:59.770Z"} +{"cache_key":"3e42e12be01532e3611c42dfd8762c461d7a55fa2e4e2c855ffeb44d2ea615e1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"it","translated":"Scopri un plugin in evidenza o cerca in ClawHub per estendere OpenClaw.","updated_at":"2026-07-10T02:26:23.009Z"} {"cache_key":"3ea263c874303b3a038780ec369a8922270fe0e78151112e6cd1950251ba49e2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"it","translated":"Meno recenti","updated_at":"2026-07-05T14:39:59.770Z"} +{"cache_key":"3fcc2b8e4f69f40cde93f1385b9b6e03fcbd35e7661c1cdfc676dea521a868e2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"it","translated":"Riconosci il rischio e installa","updated_at":"2026-07-10T02:26:36.599Z"} {"cache_key":"40496e38b9b28e5abb01c7c3ff83c9b5fc5dd48e6d503a17620739e13ede626e","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"it","translated":"Checkout di repository isolati di proprietà di OpenClaw.","updated_at":"2026-07-05T21:01:11.440Z"} {"cache_key":"4070bc6719b4c0c00f67a75377873ba9ce23cab3b682f9a02aa53ae7aaa5e9c9","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"it","translated":"Nessun worktree gestito.","updated_at":"2026-07-05T21:01:11.440Z"} {"cache_key":"41a1a94b80649ed6907be7af39477fd6a1d76d952fd8b84d1bfc8559901b6854","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"it","translated":"Caricamento microfoni…","updated_at":"2026-07-06T17:33:52.462Z"} -{"cache_key":"41bb429c8f10812466d191387b9a3a32ddff958e8d736baba5c0a90cf813ad1c","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"it","translated":"Cerca","updated_at":"2026-07-10T06:08:23.266Z"} {"cache_key":"4281dec2d8e6f2c04087aa8bcec9ec872fbe8bfc0e237d28b6587a3c04abedb0","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"it","translated":"Apri i dettagli sull'uso del contesto","updated_at":"2026-07-05T10:16:16.437Z"} +{"cache_key":"431b435a17d1e9e3a96c4ad821d51217917cabc603407708c8538875728411a2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"it","translated":"Tutti","updated_at":"2026-07-10T02:26:23.009Z"} {"cache_key":"4361d839b7e43548e496d0743ed55c2871012226dfc995aff74c74c1ed7d0dc3","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"it","translated":"7 giorni","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"43b2b318f9f91158f81db165004a2d12de5cbbc22a767823d5e21d38904f26f6","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"it","translated":"Microfono {number}","updated_at":"2026-07-06T17:56:50.224Z"} {"cache_key":"45d1474fb3b7d43b4656ff444aab155f7fb0308e4c8eb3fe8daa581dda292c63","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"it","translated":"Cerca sessioni Codex","updated_at":"2026-07-09T10:01:43.724Z"} +{"cache_key":"460da7496208cde9dd8acb5fef1202fbf588d5ef230cd9125f37c9cf52398698","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"it","translated":"Inserisci almeno due caratteri per trovare codice e plugin bundle.","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"463c7e4ef60fb19ec1fe2a0e82eaa67ee06fe80bf08d021094045864e6df8660","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.emptyBody","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No token activity yet. Send your agent a message and watch the reef light up.","text_hash":"372d6a37efc587e1d6c91c0229222235c6ec6a6ffd0d7545874ce359afb33e04","tgt_lang":"it","translated":"Nessuna attività dei token ancora. Invia un messaggio al tuo agente e guarda la barriera corallina illuminarsi.","updated_at":"2026-07-09T11:27:54.209Z"} {"cache_key":"4697a1cee1d84a3d9dfa1c844aab06c43ba62029f243e442f45f6f2c6aa0ce53","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewBlocked","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Blocked","text_hash":"18f2a0947f9d6523991b29b450307f22773f57d65f7efb98d48a167df04d6b1d","tgt_lang":"it","translated":"Bloccate","updated_at":"2026-06-17T14:19:01.168Z"} {"cache_key":"469ac76a2993a9eabe4c514efea0c257ec7ec6c2e32036a242a534326900f9e6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"it","translated":"Densità schede comoda","updated_at":"2026-06-17T14:19:01.168Z"} {"cache_key":"46bdde6d3ee8e0bfd791f314f619d90b1efa2b9ed85493357782bd929a46bf12","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"it","translated":"Connessioni","updated_at":"2026-07-09T08:08:02.216Z"} {"cache_key":"4740307d2ac3cae4d486d6430ad926457931945da1ff31f87d802ee56615d40b","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"it","translated":"Azioni","updated_at":"2026-07-05T21:01:11.440Z"} +{"cache_key":"478019c941855c24aa3e0d4a23982364d3de0fd2b9d6835d0a5631438784e6a6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"it","translated":"Plugin della community su ClawHub","updated_at":"2026-07-10T02:26:23.009Z"} {"cache_key":"47b49cca05ba988a7de558a3c1b2d615e2024e35b83c38daa4753b34433c3031","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"it","translated":"Ordina sessioni","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"49a344baa91aac2945b9c483b7b6d59278903b7320a375cdeb3dfb345a2c5607","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"it","translated":"{count} sessioni","updated_at":"2026-07-05T14:39:59.771Z"} {"cache_key":"4a6a4c2df665fbcc390de9178b7ce5feca13d046338909c4f7735bec9886901a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"it","translated":"bloccato","updated_at":"2026-06-17T14:19:20.279Z"} {"cache_key":"4ac20d2705f46cc6d285f6b7f3b0ac1e8763e1ab0fef6653e5b6ecb1dba3e3af","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"it","translated":"Caricamento delle sessioni Codex…","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"4b5bc9365b4baadb1173bf3f1917dfbadeb6235b7962b18b6bba27b672300f15","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"it","translated":"Archiviate","updated_at":"2026-07-09T10:01:43.724Z"} -{"cache_key":"4b90873297447578c79534830718fb30c9f41f0be7e61b515883ce32c1c20306","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"it","translated":"Aggancia in basso","updated_at":"2026-07-10T06:08:23.266Z"} {"cache_key":"4c650b94b1b5179437c06cc921f367cc5f58c0e12844e5a29b8cc42fedfd86c2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"it","translated":"Mancante","updated_at":"2026-06-16T14:15:52.376Z"} {"cache_key":"4cdc6209e134102494e36f716da526897f6ed530ab5193879af5fbe94f5005c4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"it","translated":"Le impostazioni avanzate di Talk richiedono l'accesso operator.admin.","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"4d1ff0125908d8ce2e6bb452e5c5d08c82751c60112946c36281661479f3b1ae","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"it","translated":"Ultime attività completate, non riuscite e annullate.","updated_at":"2026-07-09T21:53:25.511Z"} @@ -119,33 +146,46 @@ {"cache_key":"50bb3501f32849a3df79e95bd5483c2abbcca93935d22adc6c8233e11ee44b70","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLongestSession","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Longest session","text_hash":"7f727c1b85939ac165087fe5c3081e15ca00c6e6a0c0b6f8c908ff21eda7a4f2","tgt_lang":"it","translated":"Sessione più lunga","updated_at":"2026-07-09T11:27:54.209Z"} {"cache_key":"50f8cfe47fa3eb8b9a4c62307887d4263dfbd8ebbe1ad2d961c6f2d34fb95f5a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.badge","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Expired","text_hash":"424a2551d356754c882d04ac16c63e6b50b80b159549d23231001f629455756e","tgt_lang":"it","translated":"Scaduto","updated_at":"2026-07-01T10:32:45.702Z"} {"cache_key":"5122dfd79664f9ca79ac88138556c669167e5f1aba543b8000fde90714a8bff6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"it","translated":"Attività Gateway","updated_at":"2026-06-16T14:15:39.914Z"} +{"cache_key":"51321d7f4faa063f77bf5dadfe0d2eebca10b85e1b3d8490b67542041d3dca05","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"it","translated":"Server MCP","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"5169ddd7972e6b5213a43ee9b491193037e5f2cdee351586bdee64ff194d36cc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"it","translated":"Risultati della ricerca","updated_at":"2026-06-16T14:15:52.375Z"} {"cache_key":"51bd9787e98f662b1ed309d71fafa5e668cfc400f58b9248b1fed2f268b0e2fd","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnly","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Archived only","text_hash":"da7ebd8c482f38dc2a5b693a0ec25aaa04ea7b5fa3713cce9fa41a28f2201a6b","tgt_lang":"it","translated":"Solo archiviate","updated_at":"2026-07-02T14:30:25.278Z"} {"cache_key":"522aad631e9eb6e8b781667f04babfa67e7e872f356e3bf006fffcf0047219a0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"it","translated":"Aggiungi una decisione, un blocco o una nota di verifica...","updated_at":"2026-06-16T14:15:46.111Z"} {"cache_key":"523f841837ff44dcefc973fddb3653a718df9bec7777bb4149acb27097afda99","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"it","translated":"Non raggruppate","updated_at":"2026-07-05T14:39:59.770Z"} {"cache_key":"525863f59f7c3deb66cb27e112a937efb9d1f049001b8514639c231117e50a8d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"it","translated":"Rinomina gruppo…","updated_at":"2026-07-06T23:41:05.438Z"} {"cache_key":"527f7b455533c166625ce1dbeabc38f4490c46b0cf1bb0b128695c75c682c024","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"it","translated":"Nessun file corrispondente.","updated_at":"2026-06-16T14:15:52.375Z"} -{"cache_key":"538a0ced1101af2e1eb9a4b4b126cc8313eea778cf7267e794427cfd22bb3829","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"it","translated":"Trascina per agganciare a destra o in basso","updated_at":"2026-07-10T06:08:23.266Z"} +{"cache_key":"52a87aff62800b6f1313902baafd71d8e7641c4e92183264793ae98b06c6c6eb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"it","translated":"Casa e media","updated_at":"2026-07-10T05:22:23.183Z"} +{"cache_key":"53078257e5ea030aaac13f19a9ea74f7b40da1a941f38bc02bdda5189a5b604d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"it","translated":"Cerca plugin","updated_at":"2026-07-10T02:26:17.828Z"} +{"cache_key":"573e1e0a3fa5a5779a1c2e018c33578d8d248fb1839a715ca2fec840c3a1bf1f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"it","translated":"Programmazione e infrastruttura","updated_at":"2026-07-10T05:22:23.183Z"} {"cache_key":"57450b74a7695e29b9627733d68e7f7cd2b8bf7b7757f82206839be9cfb42568","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapCellTokens","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{tokens} tokens","text_hash":"507a17952dbcbb44f1b9ffff34ec5fc71563ca5d60c07c5fa9ab68339e462139","tgt_lang":"it","translated":"{tokens} token","updated_at":"2026-07-09T11:27:54.209Z"} {"cache_key":"5774b6a2f1f2ca7dbcde887793ff11b42858176e3768594ec28f6b0dd52d1d11","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"it","translated":"Eliminare il gruppo \"{group}\"? Le sue sessioni verranno spostate in Senza gruppo.","updated_at":"2026-07-06T23:41:05.438Z"} +{"cache_key":"57f7aa2ca99116b97925768402449a80f6fbfa3cfe93859af6c58b030112dcab","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"it","translated":"Rimuovi","updated_at":"2026-07-10T02:26:32.807Z"} {"cache_key":"5821d76d45ee667c2d9020165a45cb234e2bc5825502d964b3e58889d7b2eb59","model":"gpt-5.5","provider":"openai","segment_id":"connection.lostTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Gateway connection lost","text_hash":"ec6cd265976239ff6fc4f227bb25e8e6286fe38c3d1c64326dcdbb76c28b515e","tgt_lang":"it","translated":"Connessione al Gateway persa","updated_at":"2026-07-05T21:55:37.627Z"} {"cache_key":"59cfa64a24a3f78e0a0470f6763a38e01ff0e9fc50c88da7f5021aa54f1f4d88","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"it","translated":"Nuova chat nel worktree","updated_at":"2026-07-06T04:56:22.325Z"} {"cache_key":"5a78bd188f2332c44fd3882f8b96d1b39aa977f5953ea4aa3ab7fe3508d27c25","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"it","translated":"Offline","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"5a9548f1084f3cf999e6ebe5a9f4936eef0a834882640344c5ae0ae724cdf8b3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"it","translated":"Revisione","updated_at":"2026-06-17T14:19:01.168Z"} +{"cache_key":"5cbff69843613c9a9f65f83888513d2483bc6161ba6e5cd4cce2b7ca884ae4da","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"it","translated":"Rimuovere questo plugin?","updated_at":"2026-07-10T02:26:32.807Z"} +{"cache_key":"5ce5237f6c9edde183f4d9167f8868830a2b5057ade8da804cb0ae950842f1d2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"it","translated":"Inserisci un URL http(s) o una riga di comando.","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"5d85969158f163e81ecbb25c8c41ca5de39c1c5ab0c980b1414ce87f8ebfb245","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"it","translated":"Mostra solo le sessioni archiviate.","updated_at":"2026-07-02T14:30:25.278Z"} +{"cache_key":"5daf9dbe02b4c2ecda074de59d4182c6a45370c70fc2d95d40b05ae4b2e3a382","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"it","translated":"Versione","updated_at":"2026-07-10T09:47:21.399Z"} +{"cache_key":"5e66ad1126d991a8f92cdaee00d3f600a63eed93c993cf9988dbd9d60c95e473","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"it","translated":"Vita quotidiana","updated_at":"2026-07-10T05:22:23.183Z"} {"cache_key":"5fd9092703d43b8ce7f885f30ed053516a60425f8f1384dd1c2ed5373e844ab8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"it","translated":"Mantieni il commento dopo la risposta finale","updated_at":"2026-07-01T01:07:32.292Z"} {"cache_key":"5fddf1e0355e6c7ad4b84090846ae14761144c19b8ee135c3dd639e9e0652e8d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.actions","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Workspace file actions","text_hash":"461817d921bc7672e95fe4a3b23f4ac2a4a20e35b3d6eef3f02e8f5ba4201050","tgt_lang":"it","translated":"Azioni sui file dell'area di lavoro","updated_at":"2026-06-16T14:15:52.376Z"} {"cache_key":"5ff1e6938d058b1fad5ef36e4d3f58d59e66afaaa32f93a270bef71fa9d62303","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"it","translated":"Questa settimana","updated_at":"2026-07-05T14:39:59.770Z"} +{"cache_key":"60551111eda89c4380d94489767ba30f2867081b7e686e70d84eff7da6e7aea9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"it","translated":"{enabled} abilitati, {disabled} disabilitati, {issues} con problemi","updated_at":"2026-07-10T06:08:55.047Z"} {"cache_key":"60e4d5d4758edc987a9d69e98ff52147883180725d277c136aeea1f0b3cf8296","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortCreated","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"it","translated":"Creato","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"618986f50cd2bbff001a4f53d5013ccbcc383be5ca71b5a8e10b18792df10df5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"it","translated":"Connetti il tuo mondo","updated_at":"2026-07-10T02:26:23.009Z"} +{"cache_key":"61beef33f25a4dc4bed6098acaed85afc1f67d1d204cb7793025690b717f95d3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"it","translated":"Scopri","updated_at":"2026-07-10T02:26:17.828Z"} +{"cache_key":"6220a20a76e27ec708cc75d7ebaab69a20505f2b349d73340db30aefae749d4d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"it","translated":"Abilita {name}","updated_at":"2026-07-10T02:26:36.599Z"} {"cache_key":"6270d663467f0cf241493fc4d5cb85d1795113ee0b8753754c195dec05e2c2cb","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.emptyTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"A fresh shell","text_hash":"da0d613f0ec767755258b8a2c43bec5d305997daeca16068dc927fbda8194378","tgt_lang":"it","translated":"Una conchiglia nuova","updated_at":"2026-07-09T11:27:54.209Z"} {"cache_key":"62fb72f78b09e1c26de754f39dd946e813ca73c73eca103631909148383a4d87","model":"gpt-5.5","provider":"openai","segment_id":"connection.reconnecting","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Reconnecting…","text_hash":"27b80374e1151af6df7824a358606c77502548bff4d467e4ae2e146801f601ce","tgt_lang":"it","translated":"Riconnessione…","updated_at":"2026-07-05T21:55:37.627Z"} +{"cache_key":"63158048368f8902aeaa2523972ba8ea4f68e70717356858facd321c914110ca","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"it","translated":"Installazione…","updated_at":"2026-07-10T02:26:36.599Z"} {"cache_key":"63488c5403e58b137b472ef2db5b34431f9dd02396514456724332d0badad358","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.legendLess","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Less","text_hash":"ae5239ec63f28cd401ccd63e9f56e4ede8254a738a135ebcd33e844c18dd247f","tgt_lang":"it","translated":"Meno","updated_at":"2026-07-09T11:27:54.209Z"} {"cache_key":"63c50429a6e4dfd077cc94e3719c1f6a81da1831499bbbdeb4dd873408136fb3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"it","translated":"Workspace sessione","updated_at":"2026-06-16T14:15:46.111Z"} {"cache_key":"64d7150aad7e267d8fd248a1c6be0d8e9c45f75f65e3b7942da5a4cb1992b587","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"it","translated":"Comprimi workspace sessione","updated_at":"2026-06-16T14:15:46.112Z"} {"cache_key":"64f116b99db45b068a4aa09ec0f320035601a323b63b17b4e5b5f63533fbd81c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"it","translated":"Fissa sessione","updated_at":"2026-07-02T14:30:25.278Z"} {"cache_key":"65b5fe6f0e3b45f8bf91233d684b649f8ac6e699987f4d8627bae32ac4b79b7d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"it","translated":"Fissate","updated_at":"2026-07-02T14:30:25.278Z"} +{"cache_key":"65eb4e2e16359d00af3c9e1338d0ddf8963fd3ca5cebca075e9444c798ca5768","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"it","translated":"Strumenti","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"672ad4783b240525d66e7944aa7d5c4859971aa200d0cb7e6730bbf9bed1cdef","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"it","translated":"Oggi","updated_at":"2026-07-05T14:39:59.770Z"} -{"cache_key":"67ed7fb279207f11b3f43ac8ca412b1f960e4e3edd868eb0bc4a9ace2e613105","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"it","translated":"{seen}/{total} visitati","updated_at":"2026-07-09T23:55:58.457Z"} {"cache_key":"67f69efc75f0991664a402cfb7bcf1ef1f6470a3002a73311604969e3785062a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"it","translated":"{count} bloccate","updated_at":"2026-06-16T14:15:46.111Z"} {"cache_key":"680ae7c714a7519e90903dc18bc7bd452a63f30eb105e28b8d19f09c9244f0c9","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.closePane","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Close pane","text_hash":"7fa0f9613d919e167b0f9aa03c22809d446af293eb6c3bac6866bae66d2656c9","tgt_lang":"it","translated":"Chiudi riquadro","updated_at":"2026-07-06T07:23:48.580Z"} {"cache_key":"68197fccfd5758980aebad06c5fae915d1f5ac25a093a12c9dc2c0ce1729a6a2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"it","translated":"Mancante","updated_at":"2026-06-16T14:15:46.111Z"} @@ -153,28 +193,39 @@ {"cache_key":"69c3fe1ecfb902c40d78a12c2c5841c7d359a59718af63b5eebf288020b718b2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"it","translated":"in esecuzione","updated_at":"2026-06-17T14:19:20.279Z"} {"cache_key":"69df355b7e592da47564c882df8490dbb0a9f19f610b469e8a569bdb2a22e9c4","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightUniqueTools","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Distinct tools","text_hash":"fba464c701baf969580caaec17d4b305c85824e189a770ce3c6ff4b6fa120989","tgt_lang":"it","translated":"Strumenti distinti","updated_at":"2026-07-09T11:27:56.887Z"} {"cache_key":"6a1d34c714eec801ef303d02f34a24578229002349be9a38ec5c6544df61e8dd","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"it","translated":"Gateway","updated_at":"2026-07-09T10:01:43.724Z"} +{"cache_key":"6a7d33d5fe172e593645c89d35b27a69f85229e0d56fb443365dea2a30ca2e08","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"it","translated":"{name} abilitato.","updated_at":"2026-07-10T02:26:36.600Z"} {"cache_key":"6b1c5ddeac137e344bf96f6df0d536f0dba75018b8d6231bdf97666576584378","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"it","translated":"In esecuzione","updated_at":"2026-06-17T14:19:01.168Z"} {"cache_key":"6bf71bbb5a3a5b95752ddab1d78f8e3d54e0484e6e1990433b008c6e44305bf0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"it","translated":"Modello","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"6c3b976539eae080fc5f4b7443e915fa0a5c5e411dc076aeadd409c6baf5b472","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"it","translated":"Creare uno snapshot ed eliminare {name}?","updated_at":"2026-07-05T21:01:11.440Z"} {"cache_key":"6d1968468031e8ad06d073a84be49d2edf3be5bea5ce93593585423522ecc48b","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"it","translated":"{count} token di input","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"6dc8bdc40272919b35622aa4f851dd633102fed876fd768211a23e4928c1a1a6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"it","translated":"Server MCP con un clic","updated_at":"2026-07-10T02:26:23.009Z"} {"cache_key":"6dd3de4d4fcd4634b47292090a2247542d29b86abacadec290dcf69514db1f04","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"it","translated":"{count} richieste","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"6dd4c72b312c462a2b7acd131394474d136dde89d8ca61e8d13536a76bc58350","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"it","translated":"{count} log del worker","updated_at":"2026-05-30T15:38:31.723Z"} {"cache_key":"6f1dde23edd101e9558dfce32ef37e8580482e8ed2924c471e9e7f01016f8273","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"it","translated":"Log del worker","updated_at":"2026-06-16T14:15:39.914Z"} +{"cache_key":"700ba61967180176c26c004d21eb2dab9e3576157867e431eb870d79ffad073d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"it","translated":"Nessun plugin installato corrispondente","updated_at":"2026-07-10T02:26:23.009Z"} +{"cache_key":"7099638eda68194ead6f33511c66263aba6bddc2b38425cec79474e725e7847a","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"it","translated":"Control UI e il Gateway connesso creano l'identità.","updated_at":"2026-07-10T09:47:21.399Z"} {"cache_key":"717a8951a3b725f96ca84f352a289db6a45d02c9aa0773f356c5df19b4252f82","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.legendMore","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"More","text_hash":"d47d7cb0e4f8fd2be5ee07826694c18917d83ca77d0a01698582d05f432db996","tgt_lang":"it","translated":"Più","updated_at":"2026-07-09T11:27:54.209Z"} +{"cache_key":"717a9ac54579974473ac8ac12176ba70530c207e915a181c61869f841dd16a8c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"it","translated":"Nessun plugin trovato","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"717f99aae512f7ec667594c2175ce21dfd9825323d1b4fb425fc5a4f1b6105fe","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"it","translated":"Nessuna sessione archiviata su questo host.","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"71ad0c7b7eeaccc1899858e8f482ef7cf64c59818ca50480db4130f870feb851","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"it","translated":"Aggiornato","updated_at":"2026-06-16T14:15:39.914Z"} +{"cache_key":"720ed9ba029f24e7c5554bc01b7a5d4fbb98b1ceba290050775aceeae8855168","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"it","translated":"Funzionalità OpenClaw facoltativa.","updated_at":"2026-07-10T02:26:32.807Z"} {"cache_key":"7223a2e0b1f015cd009f9d76deee71602c446264e0a9f7769399b08dd93cbebf","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadingMore","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"it","translated":"Caricamento…","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"72700538ae974782574c0e90d3756394a7852549e62477fcebd80459db852031","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"it","translated":"Sconosciuto","updated_at":"2026-06-16T14:15:46.111Z"} +{"cache_key":"7356781e458bf1ec614c03db04debcb4b0bd013abc2400da80bb753792469a41","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"it","translated":"Abilitati","updated_at":"2026-07-10T02:26:23.009Z"} {"cache_key":"73ecd3f2c5607a134ae607c040d41ec84f94d7fa8b9fc64f980ad9ce7ab7ca71","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"it","translated":"Ingresso microfono","updated_at":"2026-07-06T17:33:52.462Z"} {"cache_key":"75409b5f409544a17417484106c28907cbada0812a111ab50983d0832683a1af","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"it","translated":"~{percent}% del contesto utilizzato ({used} / {context} token, approssimativo)","updated_at":"2026-07-09T07:40:41.089Z"} {"cache_key":"75e362b01d0b1c14a8cf3547a39b050730700a0eea63e1bd723e99f63af40e90","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"it","translated":"Nessuna scheda corrisponde a questa vista","updated_at":"2026-06-17T14:19:20.279Z"} {"cache_key":"7642382deb54febf6f49fb2ec07e13205652b9c4fc60982d9cf3f3e3dacc942e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"it","translated":"{parent} (mancante)","updated_at":"2026-06-16T14:15:46.111Z"} {"cache_key":"76e28a02b22c2c3e581d0dddb7df06287f807ebc648247ff5518fabe4f5a8040","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changed","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Changed","text_hash":"2a6141e43be0c2125e3b5d9f74b4ff1261a0b320ff927c83d4d9b1b65585bad7","tgt_lang":"it","translated":"Modificati","updated_at":"2026-06-16T14:15:52.375Z"} +{"cache_key":"7706f5e4b357638c273b071540c2b814ac36f01bd5e45daf7ae53152dc66e6cc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"it","translated":"Aggiunta…","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"778c485214ec2fec16bb7ecd7d7751f658a2627ef01814f43dcbfbbf4e59f7cc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"it","translated":"tentativi falliti","updated_at":"2026-06-17T14:19:20.279Z"} {"cache_key":"78227fead03dfd747257d0532da2b89d8d723af14f4eaf349be0763ea8dd1e5b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"it","translated":"Predefinito di sistema","updated_at":"2026-07-06T17:33:52.462Z"} {"cache_key":"784adae2dca29783bd164c14f905f8cbac1dd572638d8370e7a42685f8a28a33","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"it","translated":"Filtro di archiviazione delle sessioni","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"78dc9236c38e4808eddc060951fb7644c37116c4669aa1bbf8b7717bf5c770a2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"it","translated":"15s","updated_at":"2026-06-17T14:19:20.279Z"} +{"cache_key":"7983b8445e45f6af975fa33847d0a3056845ad5e7c036348a6873cc3d70da4dc","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"it","translated":"Identità incorporata quando questo artefatto del browser è stato creato.","updated_at":"2026-07-10T09:47:21.399Z"} +{"cache_key":"79f32475d4d3052a72296722f9e429a947ea69d9b8c027bc6aa913dc76393e40","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"it","translated":"I nomi dei server possono contenere lettere, numeri, punti, trattini o trattini bassi.","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"79f9e5c78626dfd0dd454f307c7f96215ae08ec348240a184599e2ded0f6a92d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"it","translated":"Disattivato","updated_at":"2026-06-17T14:19:01.168Z"} +{"cache_key":"7b39165d494a8820f74d353263a4e78a209a8461d3425e831361658a09906706","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"it","translated":"Pacchetto","updated_at":"2026-07-10T04:28:30.818Z"} {"cache_key":"7bb12a00109aa9d4214d5db7133ef597175d197919d724a7cf019ae07abbb19e","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolRuns","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} runs","text_hash":"627a5f9e7cc0ba0f9bc65c55fb5e6421519e92d24f35dabffabb1eaf16aa750b","tgt_lang":"it","translated":"{count} esecuzioni","updated_at":"2026-07-09T11:27:56.887Z"} {"cache_key":"7c20a7cfed226ac111a5670fae29598394a4a1216c2e1de2d0122e0838f5766d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"it","translated":"Board: {board}","updated_at":"2026-06-16T14:15:39.914Z"} {"cache_key":"7d787e13c42d51c7c3d2b5f0cdb02912d1ae422eb341ab80c43f9576cb0ebd21","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"it","translated":"30s","updated_at":"2026-06-17T14:19:20.279Z"} @@ -182,31 +233,44 @@ {"cache_key":"7e15a4689f14ad7f386d5b0c0d38eed62f705d9ad4cc584ad7e1173a9c9dba73","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"it","translated":"Voce","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"7e5d05f34687c312f6e5d4f86ba48867b91d6211d8ba6d8f1edc77ba6260cd3a","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"it","translated":"Pianificatore","updated_at":"2026-07-09T21:53:25.511Z"} {"cache_key":"7ee895f03fcc77f73a78e84d4ec72e504f0fe206b8472043db2fbaa4ab42bd82","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"it","translated":"Stato","updated_at":"2026-07-05T21:01:11.440Z"} +{"cache_key":"7f8344afb8ea5b20ff19681a970824bd0aad84e193bbd888a71d5385d1cbef8a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"it","translated":"{name} abilitato. È necessario riavviare il Gateway per applicare la modifica.","updated_at":"2026-07-10T02:26:36.600Z"} {"cache_key":"7ff182e6e83fc513668a215232081c0fac717bdccf8d3f5e192fee714f919d44","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"it","translated":"{count} mostrati","updated_at":"2026-06-16T14:15:52.376Z"} {"cache_key":"8040b605c7883ad399661214b93d5cb90c9c8a0ae42f7146fc43cff101c6a0e5","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"it","translated":"Torna all'app","updated_at":"2026-07-09T08:08:02.216Z"} {"cache_key":"80d50a5de379eae625605f084a83bbe88eaa7daf3591ee8ae54f25ac8c4e138e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"it","translated":"Una vista di sola lettura delle sessioni Codex su questo Gateway e su ogni computer connesso che le condivide.","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"81435fccbed10b32567dd2f9d1a96774ee201ea88d8244a9ac65c535575ef840","model":"gpt-5.5","provider":"openai","segment_id":"languages.hi","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"हिन्दी (Hindi)","text_hash":"fab2abfce45382f3031c59477017700a8cb5dfaf8d15379dc24304809b97c7d5","tgt_lang":"it","translated":"हिन्दी (Hindi)","updated_at":"2026-06-26T21:43:33.749Z"} +{"cache_key":"8212d1f5e0165a8e109aeccbed1d35c02cb4b3a94583054c98ae2b2efdd1379d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"it","translated":"Cerca in ClawHub","updated_at":"2026-07-10T02:26:17.828Z"} +{"cache_key":"8265d2f940fd82ef18330df41b695df32f44d850b1080c9ad93a9bd00323ec2a","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"it","translated":"Impossibile copiare l'hash del commit","updated_at":"2026-07-10T09:47:21.399Z"} {"cache_key":"83786f9f02672e4fbf923347f7c1bb3b99f80ca118078025e6396201d315257e","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"it","translated":"Snapshot non riuscito: {error}\n\nEliminare senza uno snapshot?","updated_at":"2026-07-05T21:01:11.440Z"} {"cache_key":"842ba3d3c375d977907cc3a5d17edd6ce08c0080d2132b87736f5c6457515f06","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"it","translated":"L'input vocale in tempo reale richiede l'accesso al microfono del browser.","updated_at":"2026-07-06T22:42:14.409Z"} {"cache_key":"85132489f056e73c204760a92a7fcebba0bc13187acb73da9c1bd32db8c1a9d5","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"it","translated":"Esamina, perfeziona e applica le proposte prima che diventino skill attive.","updated_at":"2026-05-31T21:48:28.496Z"} +{"cache_key":"855a09fd862193f2c75fade56f546d460f7405fd45e8e83c737930cec1178b07","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"it","translated":"Problemi","updated_at":"2026-07-10T02:26:23.009Z"} {"cache_key":"8576d2727af60cfc5e56c526bfcbb042c5f477da8965ea4eb28d0cdc4f0fd2bd","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitDown","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Split down","text_hash":"8730b89df7caaf5b5090f9b7365a0a03e0a13d9682dc6418f556b8a676d9e98f","tgt_lang":"it","translated":"Dividi in basso","updated_at":"2026-07-06T07:23:48.580Z"} +{"cache_key":"85be2fa5a23eb96640b2699040a4771ac883be1fd8eee1084693ff95a31e9b60","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"it","translated":"Disabilitato","updated_at":"2026-07-10T02:26:32.807Z"} +{"cache_key":"8733e5d57fe48f87a173186a08aece0944ac8340e7e798b99c565c7516134353","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"it","translated":"ClawHub","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"87ad360843bc02b960587549096a5a874af27ca1cedf510cfc3f5b165c5fee24","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"it","translated":"Apri chat","updated_at":"2026-07-09T08:27:21.416Z"} {"cache_key":"87f120f1603c353f7ee12d3cd43be719603a2f43420d7a09b40f66d07f46dabb","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"it","translated":"Token dell'ultima esecuzione","updated_at":"2026-07-05T10:16:16.437Z"} +{"cache_key":"88395d3bb6cdb58f66040158c62a5c1640d568e0ec66d4b210f81e61ac4d761a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"it","translated":"Preparazione della ricerca…","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"884842a385989130386b6c4f61f7b6994914b2d9bd2960563a153fe5e8253a9f","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.sessionSelect","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Pane session","text_hash":"0deb0759c3643f2659c0838326276513c119e7923672a118c4ed13c012c4b628","tgt_lang":"it","translated":"Sessione del riquadro","updated_at":"2026-07-06T07:23:48.580Z"} {"cache_key":"8935d56a0159a2e7b03226b8be8e3e7261ae69545357697dc812015e46db76e3","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"it","translated":"Gli ingressi del microfono sono occupati o non disponibili per il browser.","updated_at":"2026-07-06T17:56:50.224Z"} {"cache_key":"8944d6a1392ecfd034b05ac07d6f2205258058f1911ea89314dc4d4065d3b476","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightsTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Activity insights","text_hash":"ba3b52a117285b5aada2567de5773c4141fd7d70a62b9b7afda8db8f9aebb40b","tgt_lang":"it","translated":"Approfondimenti sull'attività","updated_at":"2026-07-09T11:27:54.209Z"} +{"cache_key":"8aa0c384084d2af4b29e6652d7b3989510ee90d1e92c0996668cc77e55a03950","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"it","translated":"Aggiungi server","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"8ae364941577e40a34bbbb97bebe2005a623b0a7c2cdfd93a46439b5c1c42074","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"it","translated":"Stato workboard","updated_at":"2026-06-17T14:19:20.279Z"} {"cache_key":"8b03d20ad1be391725af51f8297a13b882a47795b1e2f27bfff8f833f641f214","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"it","translated":"QR di pairing scaduto","updated_at":"2026-07-01T10:32:45.702Z"} {"cache_key":"8b19323af110612c0379225c237e6d8b5c4840d546c55f7c5835c5e846791c26","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"it","translated":"Host non disponibili: {count}. Gli altri host restano disponibili.","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"8b936ef9cb90a3295136fc78a25d90b3da45b9efccc7b8e8259779e9916f16f1","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.streakDays","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"it","translated":"{count} giorni","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"8bc992c95973ae45bbe50bba495103ec642179b547f3643035e12b23f4e19702","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"it","translated":"Commento","updated_at":"2026-07-01T01:07:32.292Z"} +{"cache_key":"8c3782dd15b9d1e2b0b2da312666a98d286a3a42f108115faa21f29828eaa43e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"it","translated":"Bundle plugin","updated_at":"2026-07-10T02:26:36.599Z"} {"cache_key":"8d794cd32b1d9ab66ea5fb511e1e98427e571f3813aefb9ced9ade071b73285e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"it","translated":"Esegui di nuovo /pair qr per generare un nuovo codice di configurazione.","updated_at":"2026-07-01T10:32:45.702Z"} {"cache_key":"8db15a4bea321a2e0eb110ece0f73064ffe25db62992d10444559d1e0a5b1858","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.sinceChip","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"In the reef since {date}","text_hash":"ded006c6417b781fc23bdac6fab292b69da412484cf516cfe8d6757551960dd7","tgt_lang":"it","translated":"Nella barriera corallina dal {date}","updated_at":"2026-07-09T11:27:54.209Z"} {"cache_key":"8dcdaf0c7f0c5f02a4ecbf2271b20bc87e2d68c1bf337ef96731fd19ac95ce83","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"it","translated":"heartbeat {age}","updated_at":"2026-06-17T14:19:20.279Z"} {"cache_key":"8ea019ae4e670fe0a09e70a5fd660a9425bcfa3755f554e9a790af433ca13c97","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"it","translated":"60s","updated_at":"2026-06-17T14:19:20.279Z"} +{"cache_key":"912cbe0515c0e1d8485ef73192d82c1d4dbf1a39a6e375780786a595d1be4be8","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"it","translated":"Versione del Gateway connesso","updated_at":"2026-07-10T09:47:21.399Z"} +{"cache_key":"917f5ab2cd244a2dcd57847c247e2d2c3cb1c1c09ca18cff820cf72238dabb15","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"it","translated":"Server MCP {name} aggiunto.","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"919f2fc1e1cb9336975df8d8ff3d5a4d38ab70fea92c19ba3e6092513395f974","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"it","translated":"Usa la chat corrente per le richieste di revisione","updated_at":"2026-06-16T14:15:39.914Z"} {"cache_key":"920b31dc98a2a87bb3ab46594222c30f1f67a96adec9f425390c3f1eb9725684","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"it","translated":"Violazione del protocollo","updated_at":"2026-05-30T15:38:31.723Z"} +{"cache_key":"92302cd58e0bc32ad2b5d4f769895c3e1b8e690b5b414b025c15bd179c34c2e1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"it","translated":"Ufficiale","updated_at":"2026-07-10T02:26:32.807Z"} {"cache_key":"94ca61cd30e5b4a8163078c5f3dd718c5ef4109edd2aeaca86fe934ff840720e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"it","translated":"Archiviata","updated_at":"2026-07-09T10:01:43.724Z"} +{"cache_key":"94eac207711118cda169c24dc18b888385d74e856fb8449be5079391f36f3bb8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"it","translated":"Installa {name}","updated_at":"2026-07-10T02:26:36.599Z"} {"cache_key":"96d54701dd5e84767890450eb26e7452721b238930dcc1cd62a1380cca07d553","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"it","translated":"Schede assegnate esplicitamente all'agente predefinito configurato.","updated_at":"2026-06-17T14:19:01.168Z"} {"cache_key":"9768207aff2ad4c0be9a14f0ef2ad806fefaf52437230b327a6a387fc620b9a7","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"it","translated":"Modelli principali","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"9783d39f8fe244d9c73d6ec3458a73918e300d153aecbbbdc2051b9202ad0bc4","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"it","translated":"scollegato","updated_at":"2026-07-04T21:23:58.551Z"} @@ -218,39 +282,58 @@ {"cache_key":"9bb0a7b73fb0089dad5a14092ea8474e35a6e9624efb8cb20daf0cc985b9573d","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.open","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Open split view","text_hash":"51e50f7be73433216ae62f58fdbc586372f5a6063ee9978cec96793ef75fa554","tgt_lang":"it","translated":"Apri vista divisa","updated_at":"2026-07-06T07:23:48.580Z"} {"cache_key":"9c44a78d9689c3ecfff7ad61af1ddea43970276859b106d74fbb94392c56c167","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"it","translated":"Visite dell'aragosta","updated_at":"2026-07-09T20:51:38.844Z"} {"cache_key":"9c846e4f29761f4bb7bf9d3cdfff695db54de3a5093c3358f3844ba42aae9b22","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"it","translated":"Agenti e strumenti","updated_at":"2026-07-09T08:08:02.216Z"} +{"cache_key":"9c84e38c3a38d1f56c9609a4a74c391f5201b45bf7649a53dcf8b38d36a38e57","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"it","translated":"Aggiunto {name}. Autenticati con “{command}”, quindi riavvia il gateway.","updated_at":"2026-07-10T02:26:23.009Z"} {"cache_key":"9cba61c479ffd81f258ddcd7bab8e06b137fe7a62819ccbbfda410d3f03b598c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"it","translated":"Elimina gruppo…","updated_at":"2026-07-06T23:41:05.438Z"} {"cache_key":"9d66a88ab3aea566e971400b6e35e09b4574f1f67778bdc75beb01af502ba5b2","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"it","translated":"Server MCP, autenticazione, strumenti e diagnostica.","updated_at":"2026-05-31T05:36:43.452Z"} +{"cache_key":"9d7b9c60fa186015e334d8a071ae617d43cec3f57399d8dfc4c06e5638fe62d7","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"it","translated":"Installa e gestisci funzionalità opzionali.","updated_at":"2026-07-10T02:26:17.828Z"} +{"cache_key":"9d932bede1bd442ff00a3e748bcfa44cc706fba0ea7698c1fe93ccdf6cd6cc84","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"it","translated":"Memoria","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"9da85ece1ae1ed53b77e7c7fe92ee25b0d848e3813de443fe10e33f3e8433dac","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"it","translated":"{count} letti","updated_at":"2026-06-16T14:15:52.376Z"} -{"cache_key":"9e48559bcbf2039c550fe2119512f7d49aa3b3ea5062be64dac71395e3ab25ea","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"it","translated":"Suoni dell'aragosta","updated_at":"2026-07-10T04:50:23.380Z"} +{"cache_key":"9e0fba114a5517deb6d5e0448311bcc6dd04202945d8f0faf81e7a0866ddd70a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"it","translated":"Ricerca in ClawHub…","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"9ec3c649cae07dd5313ed75e885c9abfbd5851ebdda1d1997f513b52c6ce7b4e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"it","translated":"Nodo","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"9f3eff21998d04aaf3c9e3109e705980fd19431d37018057418c343d9b29397c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"it","translated":"Artefatti","updated_at":"2026-06-16T14:15:52.375Z"} {"cache_key":"9f57809ac22c061c9ea221aa958ecf891dbde27a8a28bd5a1bbc8a082aeccdb3","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"it","translated":"Lavori in background in coda e in esecuzione.","updated_at":"2026-07-09T21:53:25.511Z"} {"cache_key":"9f8e84cb4fe101205ba11057fa60c524992d9b4273be5d4b3f64573acc71902c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"it","translated":"Prova","updated_at":"2026-06-16T14:15:39.914Z"} +{"cache_key":"a0bebbb099a73eff240402d0a5f93a32cb6be0a7a9c864ed7d4385229a74395f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"it","translated":"Caricamento plugin…","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"a1183ada5b2005e5858f6a6338e29b11c2109e057cf1db7227d7f4ff51eae38e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"it","translated":"{count} sessione","updated_at":"2026-07-05T14:39:59.771Z"} {"cache_key":"a25663846ed52baa56a6aff1672aafbadecfb5750ab4a13193e10b386e30e8c1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"it","translated":"Anteprima","updated_at":"2026-06-16T14:15:54.477Z"} +{"cache_key":"a3435792f2a0d04116bac750869743ad53c23b36841b6569a626c9ebb65f1c03","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"it","translated":"{name} rimosso. È necessario riavviare il Gateway per applicare la modifica.","updated_at":"2026-07-10T02:26:32.807Z"} +{"cache_key":"a385643b1a0a4668cccda86e61b9de35ead2918e99e57da0fb730269a10d46d9","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"it","translated":"Creato","updated_at":"2026-07-10T09:47:21.399Z"} {"cache_key":"a3b8a9441f85c9a721de8eeaf920b820f954469e0cecd6bf2cce52436267fec2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"it","translated":"Gruppo","updated_at":"2026-07-05T14:39:59.770Z"} {"cache_key":"a3ccf45b4b8d7da3d97d61e64a9b0bd8de79f2f89ca5d08bf8e3044f55e73f25","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"it","translated":"Uso del contesto della sessione: {used} di {limit} ({pct}%)","updated_at":"2026-07-05T10:16:16.437Z"} {"cache_key":"a3f68978aafcd63d792cc9413c546889620dba867ebef1192718754c87eddbd6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"it","translated":"Aggiorna workspace sessione","updated_at":"2026-06-16T14:15:46.112Z"} {"cache_key":"a4519524e4ec52524f8f667fbb1201e9abefd49235ebb7aa36be1c6ef7b23223","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"it","translated":"Percorso area di lavoro","updated_at":"2026-06-16T14:15:52.375Z"} +{"cache_key":"a50aff8d7dcce9507d147631789393f2fe07fd8564036776862d303d21777195","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"it","translated":"Solo consultazione. Le modifiche ai plugin richiedono l'accesso operator.admin.","updated_at":"2026-07-10T02:26:36.599Z"} {"cache_key":"a575e9b2769d74a285f52311c509f7ec98ac91dd6e69362a98c548a3cd47434a","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightSessions","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Sessions tracked","text_hash":"b1b77d34c51bc94340e818faacf7b2271593f409d75d7be9be7a5a12047775f0","tgt_lang":"it","translated":"Sessioni monitorate","updated_at":"2026-07-09T11:27:56.887Z"} +{"cache_key":"a5bb0596b99ba9fdf415e4c8d034bd78b52ddc534fe2cc7d7277432fed5e0764","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"it","translated":"ClawHub non ha risultati per “{query}”.","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"a6b132f3dda9bc84079c956cfa3a248b8f3a12b76adba9a8494c8761e3221dfd","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"it","translated":"Attiva","updated_at":"2026-07-09T10:01:43.724Z"} +{"cache_key":"a73958e617caf5a454a61f6a33230ba92b64553c48318aa343aa7bb32a222552","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"it","translated":"Gateway offline","updated_at":"2026-07-10T02:26:32.807Z"} {"cache_key":"a73b5fdb3e8b929ea5cc4d1a678270520494ca21cb6126858259fcebe63416f5","model":"gpt-5.5","provider":"openai","segment_id":"connection.offlineHint","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Live updates and actions are paused until the connection returns.","text_hash":"7a60105cdafb6aa95b9081a370308a9ccd495199c9bfb90d3e0f70af68680f26","tgt_lang":"it","translated":"Gli aggiornamenti in tempo reale e le azioni sono in pausa finché la connessione non viene ripristinata.","updated_at":"2026-07-05T21:55:37.627Z"} +{"cache_key":"a783241c19d8250f70f607f92bb0e1ed92b382276f40935d0c9f45f52ae35400","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"it","translated":"Copia dell'hash del commit","updated_at":"2026-07-10T09:47:21.399Z"} +{"cache_key":"a83b8123a7278d7729fde92df11cb29ad26c38f4e0b4153af0583af8a04e39bc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"it","translated":"{name} installato.","updated_at":"2026-07-10T02:26:36.599Z"} {"cache_key":"a8aee7f248098dcaeeaf23a6303ad265847c71d1b40f5d2c073fffacfbde5776","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"it","translated":"Protocollo del worker","updated_at":"2026-06-16T14:15:39.914Z"} {"cache_key":"a8df5dfbf8f35f2ae650d3875a9cb5cc5007b1ed8465875312e675f5a62bc160","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLifetimeTokens","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Lifetime tokens","text_hash":"3d7b0d3aa231e0a255b58b67aa9eeb2b921b19ce9aa983bb867d7b7cf3e16ce9","tgt_lang":"it","translated":"Token totali","updated_at":"2026-07-09T11:27:54.209Z"} +{"cache_key":"a92d69f29b04b13ba9a80e06ca2a0c438918e2548e930d20d5a07ca5c22bdf3b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"it","translated":"Origine","updated_at":"2026-07-10T04:28:30.818Z"} {"cache_key":"a98e164bbd64f8ed714af44be5e33b8f786c77e7bd843a6b911baa3511f97ea0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"it","translated":"online","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"ab79e374f0a101e7ba5ff93515b84173a88cd4f221cf62dcdfd06015df82bd28","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"it","translated":"prova mancante","updated_at":"2026-06-17T14:19:20.279Z"} +{"cache_key":"abd2255719c7dd51314fe6e693bd6ee6ca1fbc0ee71699646a4b1a26757d3cc2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"it","translated":"Aggiungi","updated_at":"2026-07-10T02:26:23.009Z"} {"cache_key":"ac43f66b78edb2a5311d467054cb0898fe7d684a69641a052556462e85258b3e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"it","translated":"Non assegnati (usa {agent})","updated_at":"2026-06-17T14:19:01.168Z"} +{"cache_key":"ad74072e15d8f1c18ba31f594930b03228fe49f64c06393c6bfc2c733c0fa667","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"it","translated":"Connetti i server Model Context Protocol per fornire strumenti aggiuntivi al tuo agent. Le modifiche si applicano alle nuove sessioni dell'agent.","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"ad884beb84385a4dd7c425a0d8bc1fff65acf6d69f66d39ac9e80805996ede7d","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"it","translated":"Impossibile accedere agli ingressi del microfono.","updated_at":"2026-07-06T17:56:50.224Z"} {"cache_key":"adae07979a6ead6880a4c0569c07b11a451b21546529502f3620283f780cf440","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Token activity","text_hash":"05f1f9836e5173d8ab4539357cfa050c3ad480fc049ddc22cb8fb8ea437997e2","tgt_lang":"it","translated":"Attività dei token","updated_at":"2026-07-09T11:27:54.209Z"} {"cache_key":"aeea8ab05f5c94cb9860e6c53afeb55fd19bcf5ab4298c49d7e3feefa65d2f84","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"it","translated":"Usa la chat corrente","updated_at":"2026-06-16T14:15:39.914Z"} +{"cache_key":"aefa48fa405d416fbd225f9e3722a3b9b8d65de73131946462638a31bf082373","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"it","translated":"Installati","updated_at":"2026-07-10T02:26:23.009Z"} +{"cache_key":"af44378c27185e95d351336148b57d8c0b47977885070d335e6e0ecc2d2eb50b","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"it","translated":"Plugin","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"af5aa92002b18fbd083a3da97b6e2abc9ffbee56d45189b8ae15181ea5036a88","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"it","translated":"Azioni del link","updated_at":"2026-07-09T11:02:55.325Z"} {"cache_key":"b10aad109b725b3bba5fff3b1cae99563db014dbe5a830f8823ec93cb8a6c28a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"it","translated":"Data","updated_at":"2026-07-05T14:39:59.770Z"} {"cache_key":"b15d21ee9f86e6d4001ff17b5329d03ef25466f2479f15670577965fb7cbf9b7","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"it","translated":"Tutte le sessioni","updated_at":"2026-07-03T07:39:07.530Z"} +{"cache_key":"b5c6fa2200847ee55f491d52ea657511d6257cdfabcda54d8a9850e2e3b093c5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"it","translated":"Disabilita","updated_at":"2026-07-10T04:28:30.818Z"} {"cache_key":"b617446daa9c532d87c9d204dd9d7397f8f28a6d2408218f9de0878fcb897534","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"it","translated":"Espandi workspace sessione","updated_at":"2026-06-16T14:15:46.111Z"} {"cache_key":"b6324651365e4251fa145b105b2ddf6e7ce593381118e043a957af852525e441","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"it","translated":"Visualizza dettagli","updated_at":"2026-06-16T14:15:39.914Z"} {"cache_key":"b6ec092409482fdbf508429e635b6b2c28bd2fecca128d1fe47f1087bb2b07e8","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.sessionsCapped","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count}+","text_hash":"4af395b8d907e1cc1d3de75eb4644a9ed3a243f5f5a66f93da927d7899844d57","tgt_lang":"it","translated":"{count}+","updated_at":"2026-07-09T11:27:56.887Z"} {"cache_key":"b82e202a79b574aaa224f08d9d756ca28abcf77fe6bc24f6381387908ac29366","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"it","translated":"Sistema","updated_at":"2026-07-09T08:08:02.216Z"} +{"cache_key":"b91513cdf38aa797f92d53a3b6432e2809772e35c2fc50c39dc9d76c842d8602","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"it","translated":"Chiudi","updated_at":"2026-07-10T04:28:30.818Z"} {"cache_key":"bad4daedb1c9fd5e12ef19d8bc0c0b41924b96beb05a5305f00b8f0faa47a1de","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"it","translated":"Tenant: {tenant}","updated_at":"2026-06-16T14:15:39.914Z"} +{"cache_key":"bbc653978277ccc03aa6a4a510d356ba716b4badfb49f427dd50ef583f322693","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"it","translated":"Commit","updated_at":"2026-07-10T09:47:21.399Z"} {"cache_key":"bc409d3067b304f15e54e09c3026d762c59fba9548a03ab058ace8e820a78c22","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"it","translated":"Generale","updated_at":"2026-07-09T08:08:02.216Z"} {"cache_key":"bc799c8479e72b6a5ce27af0b20e86807ea9ce5b9320bd4c97afd3a7d4b6d2bf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"it","translated":"Aggiornamento non riuscito","updated_at":"2026-06-17T14:19:20.279Z"} {"cache_key":"bcb2d850c19232d6ab09bfbede0b4bc137dd7fbcf20ebb39e9cd1c0d2c001d7d","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolsEmpty","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No tool runs recorded yet.","text_hash":"9db22f17f7e8e1c3f86b168cde0d59ef62ea10f4363e51f802a5a06f341dc343","tgt_lang":"it","translated":"Nessuna esecuzione di strumenti registrata finora.","updated_at":"2026-07-09T11:27:56.887Z"} @@ -261,66 +344,103 @@ {"cache_key":"bf2248240c034cf119818f742f41fcb4bc9fc8d0dd8402abc91c3f4e56da8c3d","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"it","translated":"{count} token nella cache","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"bf726892107407f881482ac444b691b447a22d4d44be547c5928d1f026178d7d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"it","translated":"Skills: {skills}","updated_at":"2026-06-16T14:15:39.914Z"} {"cache_key":"bf7cc031039f793669202b043a157dd13528003ede94abd16acffcbb615e0f56","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.title","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Context usage details","text_hash":"0e04e44654b5a2abf769dcd2f82a32e0501a41689d6635d7f718978c160958f0","tgt_lang":"it","translated":"Dettagli sull'uso del contesto","updated_at":"2026-07-05T10:16:16.437Z"} +{"cache_key":"c0297651d4daf7d0376547934a2501ebde8921dbd83dae1af79b20f80e37a3ed","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"it","translated":"Canali","updated_at":"2026-07-10T02:26:28.426Z"} +{"cache_key":"c02f0d824aad7c7f0b52431a3ebb11fac03b1f57bd0bf6844c8461e32c8d8a5b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"it","translated":"Configurazione non disponibile; aggiorna e riprova.","updated_at":"2026-07-10T02:26:32.807Z"} +{"cache_key":"c0cc1a257d6089b73cf79929f7cdeac968d4317e9f09affce607dfbf4feea64f","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"it","translated":"Dettagli della build di Control UI","updated_at":"2026-07-10T09:47:21.399Z"} +{"cache_key":"c11206cd153c11e6c18548d17b1b2e8d704df4ca3e6bfd27897e75c064c7cf3b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"it","translated":"Aggiunto {name}. Aggiorna endpoint e credenziali nelle impostazioni MCP prima dell'uso.","updated_at":"2026-07-10T02:26:23.009Z"} +{"cache_key":"c1fc82c455d11861a0d86b1440496b3285b40f1c6bbd63f349364e35a26a1c2a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"it","translated":"Motori di contesto","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"c2697034609657a4b8917dddc12f8c5d5c77f5bda2a0c04be3bc4568d50a5b75","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"it","translated":"Aggiornamento automatico","updated_at":"2026-06-17T14:19:01.168Z"} {"cache_key":"c2a26b266a63cfbbb923f54cfe5ee45cfff4c4110d7209b8fef474c0d9ebb4ef","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"it","translated":"Errore di sistema","updated_at":"2026-07-09T10:01:43.724Z"} +{"cache_key":"c3b36c079fc4d0eef9b591775725f39c1ec88dad75d3d4467b02eed17854894a","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"it","translated":"Aggiorna","updated_at":"2026-07-09T10:01:43.724Z"} +{"cache_key":"c46c350af045fb9511f6ff5393e08446c71ca13afa10c565315539bef8d58aac","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"it","translated":"Esiste già un server MCP denominato “{name}”.","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"c4a10d9d159151338208b7896725eed677281282aae0fdaa37be48deaa5f1646","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"it","translated":"Invia le richieste di revisione alla sessione di chat corrente invece che alla sessione di workshop della proposta.","updated_at":"2026-06-16T14:15:39.914Z"} +{"cache_key":"c524dbf27a7233de1a33dca338a818715b78f369f4bfe17f73dc9d36fb79ad6f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"it","translated":"Plugin ufficiali","updated_at":"2026-07-10T02:26:23.009Z"} {"cache_key":"c7546eba38e6befaea52525b9173b8c14dc8701800465635881ef42a1e6ebe14","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightToolCalls","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Tool calls","text_hash":"da5122dc0f97b158bfbd27c5bd479322f34e0916a0cd4626d42c03bb0000e4b4","tgt_lang":"it","translated":"Chiamate agli strumenti","updated_at":"2026-07-09T11:27:56.887Z"} {"cache_key":"c7ba8d5092716d787e87d4393b561d5963fc994636c716c82fadc2b35a518aa6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"it","translated":"CWD","updated_at":"2026-06-16T14:15:54.477Z"} {"cache_key":"c7fbfd4c244d997cc9df898716b7584ae134887ee3be5a9e116077b109b77284","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"it","translated":"Connesso","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"c8039dc836c4bf4718d5c6c17173995582fd8b973276f619512b671b6e4e65a4","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"it","translated":"Русский (Russian)","updated_at":"2026-06-26T21:43:33.749Z"} +{"cache_key":"c82c73221fa86d30fa30bb7e0540ef17fe3aee01bacd6a60b589dbae6138b302","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"it","translated":"{name} disabilitato. È necessario riavviare il Gateway per applicare la modifica.","updated_at":"2026-07-10T02:26:36.600Z"} {"cache_key":"c8742ae661dc1fb3e13b331525e41ea355b2495bca25794d3242c154ac23e10c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"it","translated":"5s","updated_at":"2026-06-17T14:19:20.279Z"} +{"cache_key":"c8cb60eb68f5490f355c82bd0cc8268114a48a54679b1a71c4826a3a7e70b0d5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"it","translated":"{name} installato. È necessario riavviare il Gateway per applicare la modifica.","updated_at":"2026-07-10T02:26:36.599Z"} {"cache_key":"c95108a3e4120a9a3477d77a359d3d0aa085e77902c9181eff63c200796035f4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"it","translated":"Alta","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"c9876a8713c0fc961213a09937aea3ddb5ea70549b4554529756ae91ccddc2d1","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"it","translated":"MCP","updated_at":"2026-05-31T05:36:43.452Z"} {"cache_key":"c9c667491b5be37b7056b61faf8226ee38e68c65b20ff12dde386e348eefe31a","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"it","translated":"Gli ingressi del microfono non sono disponibili mentre questa pagina è inattiva.","updated_at":"2026-07-06T17:56:50.224Z"} {"cache_key":"cca68634a2f653e8028abfceba8543ebf11ac10e4d16ad7406f45e19cf1263bb","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"it","translated":"Ultima attività","updated_at":"2026-07-05T21:01:11.440Z"} +{"cache_key":"cdc0e1def16e01342c6f80d9ab3f3921961bb21f7c37b209ef070f19941a3e5c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"it","translated":"Config","updated_at":"2026-07-10T02:26:32.807Z"} +{"cache_key":"cdef5907aa1e311fa46b302dfcec8f777ebf193343701e7af0b404d8d1f271bc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"it","translated":"Connettiti al gateway per modificare i plugin.","updated_at":"2026-07-10T02:26:36.599Z"} {"cache_key":"ce243d6fb78143be8016f6772b5e7cce13d77fdc3f7bc747e5831966b1faa9d8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"it","translated":"Predefinito","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"ce5b539e2f5b53c83199cbbff7bf8b15bfc98ad0e7177546af25734a0cb00412","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"it","translated":"Categorie di costo","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"d00b9266dfd67a69791f627cd04167dcbf06fe594f3d1e378ad7e387e34b23f9","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"it","translated":"Nessun ingresso del microfono trovato.","updated_at":"2026-07-06T17:56:50.224Z"} {"cache_key":"d03cf78717957e2642994a48ca8715ca340a0e649a5c92fb5067bf8a183a57ed","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"it","translated":"Agente predefinito","updated_at":"2026-06-17T14:19:01.168Z"} +{"cache_key":"d08b221e711e67cd445f5bfb53f143fb3e2f8031c61417b1e351ae954862019a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"it","translated":"Server MCP {name} rimosso.","updated_at":"2026-07-10T02:26:28.426Z"} +{"cache_key":"d1df9e671ffdb2bbf0eb6695944991ba2700f90f42dabd82fdbeb30cef0d7608","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"it","translated":"In evidenza","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"d226b14acf57750b619f92427b1c71bdabdf4470e75d9a1aa144e2cbd23388f7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"it","translated":"Nome del nuovo gruppo","updated_at":"2026-07-05T14:39:59.770Z"} {"cache_key":"d24bab00a794f8d7f25eb779c8f348d8af3bd2bb5aa1872be045ef98adff25de","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"it","translated":"Memorizzata","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"d30b3563d6bd3ca3993ad2ac2ca69dba8d97047c99cee996d3de33f92ba5da4b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"it","translated":"Rimuovi sessione fissata","updated_at":"2026-07-02T14:30:25.278Z"} {"cache_key":"d31c4e0229ba14b48219faec4e9f983b7ebbdc20ce05044785169ff8cdf2f9d7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"it","translated":"Canale","updated_at":"2026-07-05T14:39:59.770Z"} +{"cache_key":"d376138dec077abbce26d812e1cc971db34375c94639dfbd5d6a3c346f8f1f46","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"it","translated":"Catalogo plugin","updated_at":"2026-07-10T02:26:17.828Z"} +{"cache_key":"d3819186f08aa04075009c67df2021690cf620d06d9c1b474bd3cef66e5d1230","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"it","translated":"Segnalata dalla connessione Gateway attiva; separata da questa build di Control UI.","updated_at":"2026-07-10T09:47:21.399Z"} {"cache_key":"d598c76fb52791a9409ee5668c72f7bc9443b1ed8579ff075bf4a524851821aa","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"it","translated":"Sessioni su tutti i tuoi computer","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"d6a8a9541f05c7c0b955a4a0bd534889f6c1e96c439721a7d0d76aa4beac4042","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"it","translated":"Esecuzione","updated_at":"2026-06-16T14:15:39.914Z"} {"cache_key":"d77da3b821794cd290567494746273d099c6360e24e203840ee755a457ab0968","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"it","translated":"Pronte","updated_at":"2026-06-17T14:19:01.168Z"} +{"cache_key":"d858ca09af0fb706a69b75251a8cdd19dd875be4f3e43fbcc67423b242408361","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"it","translated":"Nessun plugin opzionale installato","updated_at":"2026-07-10T02:26:23.009Z"} +{"cache_key":"d8bca6bb92de076376f87a03b5244e9921ea4e3bfb96c2c2ac32685b314728cc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"it","translated":"Disponibile","updated_at":"2026-07-10T02:26:32.807Z"} {"cache_key":"d8fa39fba18fda76331cb34223a20b3f1bbeeeddd295924bfc2180a0b9d9dd3c","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightMessages","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Messages exchanged","text_hash":"3e0eaa1c266dfdf2f9799c1f3c574da7533f63057934e0aa003eddabc517cfbe","tgt_lang":"it","translated":"Messaggi scambiati","updated_at":"2026-07-09T11:27:56.886Z"} +{"cache_key":"d925d663fac4c43f5253671cb18fd3e7723f12047a891629e22e1f201bda364b","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"it","translated":"Non disponibile","updated_at":"2026-07-10T02:26:36.599Z"} +{"cache_key":"d944c135d38cc06df0518cabe8f89077be8987184a9a15ccc8bb6981409240d6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"it","translated":"Nessuna corrispondenza da scoprire","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"d9b74fbcf17a75111abe9952885e0c2fc128b6ad2cb16007b6025983c9b1a018","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"it","translated":"Raggruppa per","updated_at":"2026-07-05T14:39:59.770Z"} {"cache_key":"d9c07c3d5ff247ce284aeee81a2dcc7e6bab1d8f1f6b806f38d018d050a2797d","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"it","translated":"Pulisci ora","updated_at":"2026-07-05T21:01:11.440Z"} {"cache_key":"da35aa58ede928d42536eab52c68aeb85a71d3f764a4f7f6b651b8891f73c731","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"it","translated":"Apri nella barra laterale","updated_at":"2026-07-09T11:02:55.325Z"} {"cache_key":"db1e5463f95e00564af990dd0038ca490c7876d98c37d2fd2e65dba136ccc0e5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"it","translated":"Vista workboard","updated_at":"2026-06-17T14:19:01.168Z"} -{"cache_key":"db3d16252390c39eb033c7182ec98e8f70b1ad6fc1566c7af105fb9f9d8ce026","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"it","translated":"Piccoli blub quando viene toccata","updated_at":"2026-07-10T04:50:23.380Z"} +{"cache_key":"dbb443492353430384b0ffee446193b33632dcfd60f5bbb1ec5d7c09ee6af1f2","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"it","translated":"Copia hash completo del commit","updated_at":"2026-07-10T09:47:21.399Z"} +{"cache_key":"dbdd58ab0c66df545cef4273b5601e54d6254c3eec963b4144234ef330e4623a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"it","translated":"Disabilita {name}","updated_at":"2026-07-10T02:26:36.599Z"} {"cache_key":"dbfd2e7bdbdc950a5052cc3efa12ff7d5c6320e0738554fdf47a7d14804b7146","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"it","translated":"sessioni","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"dc619a178b37c615cb2a867131dc82941d84b28d386646d7c8fa88ce207c3ec6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"it","translated":"Nessuna attività","updated_at":"2026-07-05T14:39:59.771Z"} {"cache_key":"dd13f034ed78428f1790e59407891e206c8d99dd124309bbd96ca877f2e49fd1","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolRun","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"{count} run","text_hash":"269b72554d7e530ba9a8a05270baba9af1ea6a9f02bb4889bf75ef0b3bb20c44","tgt_lang":"it","translated":"{count} esecuzione","updated_at":"2026-07-09T11:27:56.887Z"} {"cache_key":"ddafad129b26b94adcfe122752abd86e46b6d13bf28e208c133c17aa5dac24f6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"it","translated":"Nuovo gruppo…","updated_at":"2026-07-05T14:39:59.770Z"} +{"cache_key":"de30b4ef07e81554c01526e1fdff43e31033d63f4307bdf154c312df5ad43b78","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"it","translated":"Sfoglia ClawHub","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"de6697fd2349695a3ef6576d77fd9d3b743faebecfc366d3ff1d5d3367ae18b7","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"it","translated":"Worktree gestiti","updated_at":"2026-07-05T21:01:11.440Z"} +{"cache_key":"de9963c9a2900777933df27a59b589fe835db732a010c55d3c0c4bf2e6e74f13","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"it","translated":"ID plugin","updated_at":"2026-07-10T04:28:30.818Z"} +{"cache_key":"df7ee1dcf0873cb21178ec7587cf22532f8fa3b40ed8fe8a1fb78e048874423c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"it","translated":"Globale","updated_at":"2026-07-10T02:26:32.807Z"} {"cache_key":"dfa741e0b2e5bca52062248c1147afcd446915476f4047f65655c88ae3ab1d5f","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitRight","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Split right","text_hash":"aa9997bb1d8c23d0b88521c4093fc8c3ee01b187f78635ae4d3e16d27e8a8475","tgt_lang":"it","translated":"Dividi a destra","updated_at":"2026-07-06T07:23:48.580Z"} {"cache_key":"dfb2a92486e663dec2716acd4dc7bc94f83983500ca8221a08c54a82785172a5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"it","translated":"Densità schede compatta","updated_at":"2026-06-17T14:19:01.168Z"} {"cache_key":"e00c84cdd19454aa5ff136719ed6bdee9bc9323bd21a452f51f99fd00cf6b176","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"it","translated":"Altro nelle Impostazioni","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"e014b295a85d699336a4ae07165fade374ad770f08014d2d52c423d8cc205fc9","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.loading","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Diving for stats…","text_hash":"81a616d9c5f179db9a23f119bd752b6c0445a3e37bcc28e76eab97fd29da7c74","tgt_lang":"it","translated":"Immersione alla ricerca delle statistiche…","updated_at":"2026-07-09T11:27:54.209Z"} {"cache_key":"e0526360f13695cbb4cd4e34f72530e0be10f9845c4f25bb3d9a2d9325e5c2c0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"it","translated":"Gruppi personalizzati","updated_at":"2026-07-05T14:39:59.770Z"} {"cache_key":"e07fe4644104233a4c3e29c7ad2c23358eae26b86f11644d2fc8053f96750a1f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"it","translated":"Diagnostica","updated_at":"2026-06-16T14:15:39.914Z"} +{"cache_key":"e0f7befa03bfe9d28d4111b5321ecd53792fc170f9516852572fa7fa5dceedba","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"it","translated":"Installati","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"e21e20f7a86a9183fff9939af487b87e63de10b15241dddcbd4770a3c12763fc","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.offline","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Connect to the gateway to meet your agent.","text_hash":"8804d65574fee21ed454bc82cb65b5ac8f0320877b5e4db12230aa665cd86f18","tgt_lang":"it","translated":"Connettiti al gateway per incontrare il tuo agente.","updated_at":"2026-07-09T11:27:54.209Z"} +{"cache_key":"e368e51f64d0f0ace618255277c1de6e1ed4f169056f880a85596ba3854219b6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"it","translated":"Abilitato","updated_at":"2026-07-10T02:26:32.807Z"} {"cache_key":"e36f15c2de34a52abb2f54e4ec193d8e747d3fe9d89f61b01a7afb47ee1e844a","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"it","translated":"Non passa mai","updated_at":"2026-07-09T20:51:38.844Z"} {"cache_key":"e3909ac522519724b41a82f8a5e3e2a4166f100069944748fb1051a5f816627c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"it","translated":"Catalogo delle sessioni non disponibile","updated_at":"2026-07-09T10:01:43.724Z"} +{"cache_key":"e3e695fd6f9a6c0b2934d5d7be8fa9cf64fce8047f178fa9415499c9cf65751d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"it","translated":"Non è ancora configurato alcun server MCP. Aggiungine uno qui oppure scegli un connettore da Discover.","updated_at":"2026-07-10T02:26:28.426Z"} +{"cache_key":"e3ef40aafbff5fa741508c4aaba959955579576581f3af091f97171d012c0ffc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"it","translated":"Cerca in ClawHub","updated_at":"2026-07-10T02:26:17.828Z"} {"cache_key":"e432401ecb612f02b179a4a6854352c01fd78da772297d659dea09701032f7bc","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropOpenHere","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Open here","text_hash":"b08e2fd2e872adcb575b305187b9db8482369325806953ce80190fc2dc1ab9fb","tgt_lang":"it","translated":"Apri qui","updated_at":"2026-07-06T22:56:28.456Z"} {"cache_key":"e46ec9eee700a9a153d4c046b2a558c48108f2a76ebf7968b8f5bbc12329e6b8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"it","translated":"Rinomina sessione","updated_at":"2026-07-02T14:30:25.278Z"} {"cache_key":"e472ffa060374ac1bb242992b43d84b17e341e6bd6df33f5780ac16f453f3c09","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"it","translated":"Repository","updated_at":"2026-07-05T21:01:11.440Z"} +{"cache_key":"e4e7b64f75dfd48f5c2928a54d07754685f8de488997bce20217b404ec0d7f28","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"it","translated":"Nome","updated_at":"2026-07-05T21:01:11.440Z"} {"cache_key":"e71bb63f05f640f5b58d638138a1d20b3c5e44040623ac88230fe4ad50f697a6","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"it","translated":"Passa ogni tanto","updated_at":"2026-07-09T20:51:38.844Z"} {"cache_key":"e73d23872261649106291ad0797021f11272f286362b5cbf4e6488170d056891","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityLow","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Low","text_hash":"f793de205ead5ac302c4a1627829dea41f176b1068b993a32373fc869918374b","tgt_lang":"it","translated":"Bassa","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"e887102385e09e26fc8755331435fc2a656d425e693f37e84df93473aa4bbf2f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"it","translated":"Impostazioni MCP","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"ea97241abad4a20a058f870cb347aac1bbeb3d3e0f08e4ada96441b78e6430e0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"it","translated":"Attive","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"eaf02e5b4ba84a2d6cdda27d28e772c930240ad03bae57f187cc7ee06279bf29","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"it","translated":"Archivia sessione","updated_at":"2026-07-02T14:30:25.278Z"} +{"cache_key":"eba396904493a3663af19deec62310c32767d268c70c1c1444c3f542e1318630","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"it","translated":"Incluso","updated_at":"2026-07-10T02:26:32.807Z"} {"cache_key":"ec16ac5b84adf36e1b6d8f21763b84bc9627036f4cc02afb3d743ee26f0e1f83","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"it","translated":"Vengono mostrati i primi file corrispondenti. Affina la ricerca per restringere i risultati.","updated_at":"2026-06-16T14:15:52.376Z"} -{"cache_key":"ed058c323a9d4fd829036a2ae0352cb374cc64c5a81f4ee8220527952bec5a8f","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"it","translated":"Silenzioso","updated_at":"2026-07-10T04:50:23.380Z"} {"cache_key":"eec4085e026f8165cf1361675ccc38e8adc23863d5e98b12428319d102477844","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"it","translated":"Nessuna sessione su questo host corrisponde alla ricerca.","updated_at":"2026-07-09T10:01:43.724Z"} {"cache_key":"eeced37dc422b08083d1feadf555739866efcf58c91fad61fa5f215851c0a36a","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"it","translated":"Workshop delle Skill","updated_at":"2026-05-31T21:48:28.496Z"} +{"cache_key":"efdfca29c44048e23990cc7673f6dc740544f67dbf8f3fdd7b76e0da5278922e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"it","translated":"Impossibile aggiornare la configurazione di Control UI: {error}","updated_at":"2026-07-10T02:26:36.599Z"} {"cache_key":"f0073fdbbc0395f4a7896f85e4a7e9348a52e38fc322ce119449a230e9df8144","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlockedTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Waiting on dependencies: {parents}.","text_hash":"50fb8f9b1326b69bd67d25583ddb4f70b9d75ae6e3ff8a9056a9361daa4b7d8b","tgt_lang":"it","translated":"In attesa di dipendenze: {parents}.","updated_at":"2026-06-16T14:15:46.111Z"} {"cache_key":"f1409b4d5b60fd4813e43254a88cd2f4367e210d84837eedda332cf60fdf945c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"it","translated":"Le impostazioni avanzate richiedono l'accesso amministratore","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"f2ded1928bd3119966de58edc99855e9c9cce9887c57a4feefe5a7c80164add3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"it","translated":"Plugin di codice","updated_at":"2026-07-10T02:26:32.807Z"} {"cache_key":"f337053b6efc58e0b0b34e4e9ceafce96863cb5116e65b59ec28c2b40a08b359","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"it","translated":"Cerca file","updated_at":"2026-06-16T14:15:52.375Z"} {"cache_key":"f4661d3b2b75bead1fb7bb9de481e92da96a202c6339e838c8b7958918665468","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"it","translated":"Il microfono selezionato non è disponibile. Scegli un altro ingresso o l'impostazione predefinita di sistema.","updated_at":"2026-07-06T17:56:50.224Z"} +{"cache_key":"f4a89ae170beacbd2285e0a88bfb40d7a22794c47997f591ea6c6ea6e4a68e39","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"it","translated":"{name} disabilitato.","updated_at":"2026-07-10T02:26:36.600Z"} +{"cache_key":"f611ead8a48bcca310c6afdffb02be6a22e9b4acfb51c7214072e89a709cf81d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"it","translated":"Rimozione…","updated_at":"2026-07-10T02:26:32.807Z"} +{"cache_key":"f632aeef759266d6ae7ebccf5f51e43d7dd9cb72d1c3e6d7909f69ea794ba2c3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"it","translated":"Abilita","updated_at":"2026-07-10T04:28:30.818Z"} {"cache_key":"f6402d540f1617b8defeb52e5cf84ff42fecf44331334ec4010eef7544474ef8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"it","translated":"Inattiva","updated_at":"2026-07-09T10:01:43.724Z"} +{"cache_key":"f77a4afade6b11d2bacf8b2c28e57b101184cec40309c0b22353cde5d5608a44","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"it","translated":"URL o comando","updated_at":"2026-07-10T02:26:28.426Z"} {"cache_key":"f7eafb8ff2741c1c4b8b96872e5f58bdd454a1765cff0f31d0a1614c64aa135f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"it","translated":"Note dell'operatore","updated_at":"2026-06-16T14:15:39.914Z"} +{"cache_key":"f88b58d567b67e35e0584390a0d89c252d6c6f61b228af92c95abbb1ebdc8e48","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"it","translated":"Da ClawHub","updated_at":"2026-07-10T04:28:30.818Z"} {"cache_key":"f89df9b85d49891bd2d5e2edd082f0b0ce8e9c35216140ac1bc99d006ed99cd5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"it","translated":"Sessione","updated_at":"2026-06-16T14:15:52.376Z"} {"cache_key":"f8ac0cc8b58b8529a5ad9d3769976a6ac01c4d2b8f36377a3ecbf1b7ba542659","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"it","translated":"Apri nel browser predefinito","updated_at":"2026-07-09T11:02:55.325Z"} {"cache_key":"fb474c3c2a2658545c16301ebe03ce16e2c9db7fecb442c181f7e242b675a581","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"it","translated":"Ripristinabile","updated_at":"2026-07-05T21:01:11.440Z"} @@ -328,5 +448,9 @@ {"cache_key":"fd90ff517fe38f8f425f638c15307c2e4e1a23a0915baa0f8e3396e74ef2fc41","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"it","translated":"Completate di recente","updated_at":"2026-06-17T14:19:01.168Z"} {"cache_key":"fdedb51f0df618cd58829d6441986fe05e18a11317d336484f92021fbd7a4400","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"it","translated":"Workspace: {workspace}","updated_at":"2026-06-16T14:15:39.914Z"} {"cache_key":"fe2dd36bd9ffc987d984a2d7bfa18da5e5fff1c20c34d1d6446f9314b42acf36","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"it","translated":"Aggiungi nota","updated_at":"2026-06-16T14:15:46.111Z"} -{"cache_key":"ff494c643bd5a31d3e865c0c8274f075569808eff43a53a3bdb1d4295ebb9ffd","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"it","translated":"Lobsterdex","updated_at":"2026-07-09T23:55:58.457Z"} +{"cache_key":"fec22dc66c3f3a84166869b3643e7ff80a113892d62cc2aac8342cb00a3ddbc6","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"it","translated":"Control UI","updated_at":"2026-07-10T09:47:21.399Z"} +{"cache_key":"fedb2184c6fe335864becca9a3a1696b3a5eb8b7cd7377c8474305345cc90160","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"it","translated":"Provider di modelli","updated_at":"2026-07-10T02:26:28.426Z"} +{"cache_key":"ff5361df9b32a044085e421304c8072571c1c4c24ff816463aa6ff578f7ca723","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"it","translated":"Visualizza dettagli","updated_at":"2026-06-16T14:15:39.914Z"} +{"cache_key":"ff5459ef731cb51a6f55c431085ad1caabfce28ed51ff13db6cc7ef3b1660f8b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"it","translated":"Fonte verificata","updated_at":"2026-07-10T02:26:32.807Z"} +{"cache_key":"ffe087f59476b9351a9c6dd8cfd1ab8481724c6088b688d8d79d10af52a2809a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"it","translated":"Connettori MCP con un clic e ricerche ClawHub selezionate per i servizi più diffusi.","updated_at":"2026-07-10T02:26:23.009Z"} {"cache_key":"fffc775670a9108349067aaad58ea775121d49aa2d3f46dbb921b35ea31f52bc","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statPeakDay","source_path":"ui/src/i18n/locales/it.ts","src_lang":"en","text":"Peak day","text_hash":"c3a0833ac4b7cd06e29368f323fef10520637658605aa35de342df7bac6357f1","tgt_lang":"it","translated":"Giorno di picco","updated_at":"2026-07-09T11:27:54.209Z"} diff --git a/ui/src/i18n/.i18n/ja-JP.meta.json b/ui/src/i18n/.i18n/ja-JP.meta.json index a250cdfb9477..3ae9028b0f41 100644 --- a/ui/src/i18n/.i18n/ja-JP.meta.json +++ b/ui/src/i18n/.i18n/ja-JP.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:26.060Z", + "generatedAt": "2026-07-10T09:46:59.510Z", "locale": "ja-JP", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/ja-JP.tm.jsonl b/ui/src/i18n/.i18n/ja-JP.tm.jsonl index 778b361b22cc..2fbe63133581 100644 --- a/ui/src/i18n/.i18n/ja-JP.tm.jsonl +++ b/ui/src/i18n/.i18n/ja-JP.tm.jsonl @@ -1,29 +1,38 @@ +{"cache_key":"00113658868faac89ea2f1fe2750e1cfabbfba5f626c5067f1e4825bb5dbe092","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"ja-JP","translated":"インストール","updated_at":"2026-07-10T02:24:18.820Z"} {"cache_key":"00173f8073de3a38018ee4f466ed3a55cf17b33678366ef5de8e22466a24e8d1","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortCreated","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"ja-JP","translated":"作成日時","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"006407b5237759e896afaf3d8148871d7d9209df0948f6ec4f9dfa7b81e3855c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"ja-JP","translated":"セッション","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"0081ea8ee7d7e32dc6e881b69c0dcfa32b7b33f30e0afe1d183a565c5711a671","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"ja-JP","translated":"セッション","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"0085d8808eeb05adc17f1991603d424b5de6bba9f02435dd3bf7c5a2e693f05a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnly","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Archived only","text_hash":"da7ebd8c482f38dc2a5b693a0ec25aaa04ea7b5fa3713cce9fa41a28f2201a6b","tgt_lang":"ja-JP","translated":"アーカイブ済みのみ","updated_at":"2026-07-02T14:30:08.823Z"} +{"cache_key":"015337b0f8a475f43871d265cc26c7c2c55867511f6a4956d9791800d9af570a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"ja-JP","translated":"その他","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"0192fed79b8c0890e0dcb98b66341fa1720abaf549aa7713fb6e6dc3e7eedca9","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"ja-JP","translated":"OpenClaw が所有する分離されたリポジトリのチェックアウト。","updated_at":"2026-07-05T21:00:44.514Z"} {"cache_key":"01da09e37e865b4ee7054b246d130d8f2c2bbb9fdf9ae078e5d4b49935fba6f2","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.openUsage","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Open usage dashboard","text_hash":"bae5e40b055c195a780a0dc06042d60353da51ab582610096c5cb0d269484c00","tgt_lang":"ja-JP","translated":"使用状況ダッシュボードを開く","updated_at":"2026-07-09T11:49:17.247Z"} {"cache_key":"01e35e79010ce3bb0b4ec1261d75952f5cbc18eaf6ad9fd832698881853d13b8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"ja-JP","translated":"概要: {summary}","updated_at":"2026-06-16T14:14:04.101Z"} {"cache_key":"021ef74a883eb57eee66395b69faa99471af46b59970a74cea7b03948f6e4312","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"ja-JP","translated":"修正リクエストに現在のチャットを使用","updated_at":"2026-06-16T14:14:04.101Z"} {"cache_key":"026b0c38529e0d7f9f3c4fb0015cf447d0f61d583dac4d372a3380e7e15107fc","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"ja-JP","translated":"最終アクティブ","updated_at":"2026-07-05T21:00:44.514Z"} +{"cache_key":"030c15d52cdb2ffc652b8592b921a269b7a7539b02c94ecac0da9d9392ad21a0","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"ja-JP","translated":"完全なコミットハッシュをコピー","updated_at":"2026-07-10T09:46:59.506Z"} {"cache_key":"03dc64fe4c4fb6ae4a995e426d62fc9e2e60a602d38bf78197b154a34baa22eb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"ja-JP","translated":"コンテキストの約{percent}%を使用({used} / {context} トークン、概算)","updated_at":"2026-07-09T07:40:34.132Z"} {"cache_key":"03e59a190bbdb7e9c06ee25888caac0bc7cf35323703f384ff0f1304b07b76d4","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"ja-JP","translated":"デフォルトブラウザで開く","updated_at":"2026-07-09T11:02:45.719Z"} {"cache_key":"048a3f6be3460115f38a014e6b0836da436a9bfcc7dc2c5ca45af4a50f620535","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"ja-JP","translated":"失敗した試行","updated_at":"2026-06-17T14:14:09.255Z"} {"cache_key":"058aec00682d1490bbde5eb00424fcc20ca0eedac9ae8132fa615b1d0f9bb0bb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"ja-JP","translated":"今日","updated_at":"2026-07-05T14:39:44.116Z"} +{"cache_key":"06e053a46f4e8f85e884c7bd7154e0e7733ca14ffc0229067f8201ee670e77ba","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"ja-JP","translated":"{name} を追加しました。使用する前に MCP 設定でエンドポイントと認証情報を更新してください。","updated_at":"2026-07-10T02:24:06.655Z"} {"cache_key":"06e8bce15cd73bea68d1502512f1c838bd658a7e3bdf0698cab0613673a1f70b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dragSessionHint","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Drag to move between groups","text_hash":"3e8692b1cd1c1f9a606a779f1037aa390c885fde224ddb841df9259e8aab03ae","tgt_lang":"ja-JP","translated":"ドラッグしてグループ間を移動","updated_at":"2026-07-05T14:39:44.116Z"} {"cache_key":"07475f9ec877b92dd20e0fdee833a97a9338761e363b73bade56266b0769f933","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"ja-JP","translated":"設定でさらに表示","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"074b46b271a1d6c09a4360c74e4e5ff0d134e5c7909ec66b5f54f29cf4eb7931","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"ja-JP","translated":"追加のマイクが見つかりません","updated_at":"2026-07-06T17:33:41.956Z"} +{"cache_key":"075b196fa1fe368c89f9b7f8ab078168fef0d57fb4f70be6d4e383f7a659d617","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"ja-JP","translated":"MCP サーバー {name} を削除しました。","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"07e00ac9c90f155d40a62a539c41b033010c913155c4576018cbc9a85943c058","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitFiveHour","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"5-hour limit","text_hash":"26d04fad786b1e3a08fd957ec893b0457b72a2926da0ee63847aea9037951d24","tgt_lang":"ja-JP","translated":"5時間制限","updated_at":"2026-07-09T11:49:17.247Z"} {"cache_key":"09124221295fdeb3724f25d7dcb59d631c6da05808d24986ff758869c4188a49","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"ja-JP","translated":"{count} 件読み取り","updated_at":"2026-06-16T14:14:19.257Z"} {"cache_key":"0a4097692c71f05f346a30fe10c6ec2e7dbc12bfbf8cbeb17e6cbbc629e09f84","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"ja-JP","translated":"{count} 件のセッション","updated_at":"2026-07-05T14:39:44.116Z"} {"cache_key":"0a8a9cdabf5314038b163d124dc468e64c3a1a4e9adeb004acc9c134be364cae","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"ja-JP","translated":"このビューに一致するカードはありません","updated_at":"2026-06-17T14:14:09.255Z"} {"cache_key":"0aa7fc44541de1472246b7f1e236c59f0e559974384100d432785c05809371a7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.restoreSession","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Restore session","text_hash":"35e4dc9befd3b3a29b50938839af0efb41b08051988dde53e1c1e73d1c2a039f","tgt_lang":"ja-JP","translated":"セッションを復元","updated_at":"2026-07-02T14:30:08.823Z"} +{"cache_key":"0af5163cf9a7a24b92942eec9dfc1ad701f5d21f7f187d730697c406a9a209f3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"ja-JP","translated":"あなたの世界を接続","updated_at":"2026-07-10T02:24:06.655Z"} {"cache_key":"0b186c6ce4e7be3cef7a0a7aa338fe0a5f68a091cfbd24eeb2b359a59177c907","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"ja-JP","translated":"自動更新","updated_at":"2026-06-17T14:14:04.173Z"} +{"cache_key":"0b746e95d2f66592153a3f8863bff7cdc78d87115a2b863f3497e74f7e0544c2","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"ja-JP","translated":"コミットハッシュをコピー中","updated_at":"2026-07-10T09:46:59.506Z"} {"cache_key":"0c339bfc53e689eed40156901e72fc95dbb4d18778ff3dd6202e330ede914479","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"ja-JP","translated":"サイドバーで開く","updated_at":"2026-07-09T11:02:45.719Z"} {"cache_key":"110a4c6f11a42e9bb51c50516642278b92107efe4f71868f8b93e790b1eb3665","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"ja-JP","translated":"さらに読み込む","updated_at":"2026-07-09T10:01:43.715Z"} +{"cache_key":"1163ced7f8fc0cac4498f3bca563f22c13fc253e6acd7aa622b698e39638a4d9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"ja-JP","translated":"ツール","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"11a891277b97903cbca169aebb523895b61151412e09a88cc5530ffb1dbf0d67","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"ja-JP","translated":"実行中","updated_at":"2026-06-17T14:14:04.173Z"} {"cache_key":"11bb6a13a8975fe1d7f54eb10b28f1b7aa70f087395b5d1d02ae40bebede8dd0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"ja-JP","translated":"カスタムグループ","updated_at":"2026-07-05T14:39:44.116Z"} +{"cache_key":"12ac31f4ed97c11082018ac2e49d8ea374d4901cbac381c0692adf7ace1f66e3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"ja-JP","translated":"ワークスペース","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"130a12035aed62707b508a46e200295409fc1211f5efa9e4546b322ad191f30e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"ja-JP","translated":"{count} 件の依存関係が完了しました。","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"138ec9c304e201adad179b6a7bbe3f12ed5166db6b56df3a9ad82773190fa9f9","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"ja-JP","translated":"すべてのセッション","updated_at":"2026-07-03T07:37:27.363Z"} {"cache_key":"140af54becac1cfc2465aaae072f5bf08674a596f71757c48b65ccb96b4ea858","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlockedTitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Waiting on dependencies: {parents}.","text_hash":"50fb8f9b1326b69bd67d25583ddb4f70b9d75ae6e3ff8a9056a9361daa4b7d8b","tgt_lang":"ja-JP","translated":"依存関係を待機中: {parents}。","updated_at":"2026-06-16T14:14:13.256Z"} @@ -31,68 +40,96 @@ {"cache_key":"15b9f8eec10eb8ed08808b744780e6396c49b2c110b1809c8b5821983eec7943","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"ja-JP","translated":"Gateway タスク","updated_at":"2026-06-16T14:14:04.101Z"} {"cache_key":"15e086d509e20e9b28ceb12d49eaa42d9c5477802a7adcb2487b3f5ebfa3b2c7","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"ja-JP","translated":"コストカテゴリ","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"16757bf20d7a41510a5861d138751ebb316365a58d123b955f02151a4ed5faf2","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"ja-JP","translated":"利用できないホストが {count} 台あります。他のホストは引き続き利用できます。","updated_at":"2026-07-09T10:01:43.715Z"} +{"cache_key":"16cec4afe52c1d8e190fce85bad2c2ad5bd5066c07d5891565ef1f2bc9fcb1eb","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"ja-JP","translated":"任意の機能をインストールして管理します。","updated_at":"2026-07-10T02:24:02.443Z"} {"cache_key":"1788ba2f1f11278a75e3c0e6042ce975409322123ae5f26975ba89361ebc6ce3","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"ja-JP","translated":"カラーモード: {mode}","updated_at":"2026-07-07T08:47:27.645Z"} {"cache_key":"182496f60a286f88ca26c4680edae71ea1a094823f969afce57c60e58cb4147a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"ja-JP","translated":"ディスパッチャーを促す","updated_at":"2026-05-30T15:38:16.645Z"} +{"cache_key":"1b150bc1a14201ddbfc65859c63ffabcd846114aba4a8759a2844f41fb417ba5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"ja-JP","translated":"日常生活","updated_at":"2026-07-10T05:22:06.929Z"} {"cache_key":"1bd65f3a23b91a1b67835b8a834fa03b42efacc97a384d79b8733c3e15d385e8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"ja-JP","translated":"グループ名を変更…","updated_at":"2026-07-06T23:40:52.793Z"} {"cache_key":"1be139bb86abe5a5a40b6b315f9fe6daf8ff11ebaf031aae78939bfd063625db","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"ja-JP","translated":"ペアリングQRの有効期限が切れました","updated_at":"2026-07-01T10:31:53.015Z"} +{"cache_key":"1db73b40098192cbfa564aa298e2b4afee85c2a21629c070243ef093948d066d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"ja-JP","translated":"公式","updated_at":"2026-07-10T02:24:14.816Z"} {"cache_key":"1e2d56f6ba91fc74466c7e9a9c851ad649b634c07d27a7e43eb85b93a9525bc8","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"ja-JP","translated":"ときどき立ち寄る","updated_at":"2026-07-09T20:51:29.164Z"} {"cache_key":"1e9655ae471fe5e7e0b1408890194c2b24509d214c0ada1d323a273e02512c7e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewBlocked","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Blocked","text_hash":"18f2a0947f9d6523991b29b450307f22773f57d65f7efb98d48a167df04d6b1d","tgt_lang":"ja-JP","translated":"ブロック中","updated_at":"2026-06-17T14:14:04.173Z"} +{"cache_key":"215ff02cd5151b4221852de382edadfeaccb1920b829e22bf6032911ec2e5bbe","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"ja-JP","translated":"追加中…","updated_at":"2026-07-10T02:24:10.841Z"} +{"cache_key":"21708f4299dc8059037d12a8f9cc8bf1b0c0f1a5600ff8472772ee1fc46415a2","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"ja-JP","translated":"プラグイン","updated_at":"2026-07-10T02:24:02.443Z"} +{"cache_key":"2186362dcff0b6586a5cc3255481425836e8cb9ae35cdfe796d6eac25bdc61e4","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"ja-JP","translated":"利用不可","updated_at":"2026-07-10T02:24:18.820Z"} {"cache_key":"22c790e4cbdd38e336d6f0d4fca0795201954ef48ea260cf579a6312bf507e5c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"ja-JP","translated":"証跡なし","updated_at":"2026-06-17T14:14:04.173Z"} {"cache_key":"22cbed28c23782afa54a3a70551dc4e1383e2e40b72a61b068a5576cb0400a0c","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"ja-JP","translated":"ワークツリー","updated_at":"2026-07-05T21:00:44.514Z"} +{"cache_key":"2394ab9eb8b8324047ba535f66515b79073cefc59d9f07cff6f96d445d7f9148","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"ja-JP","translated":"アクティブな Gateway 接続によって報告されます。この Control UI ビルドとは別です。","updated_at":"2026-07-10T09:46:59.506Z"} {"cache_key":"23994b3af3061969536f5d01a4e0f781cde552463c41006bd9640ff7976f2e86","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"ja-JP","translated":"今週","updated_at":"2026-07-05T14:39:44.116Z"} {"cache_key":"24181cfc3d26cc7c69de90affa83c637eedd57bfdb14288734360b9cf7fdaed8","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"ja-JP","translated":"{name} のスナップショットを作成して削除しますか?","updated_at":"2026-07-05T21:00:44.514Z"} {"cache_key":"24c2266bd81373bec3ebcdd0754cd94b88b8a686a1ced867c534b70c3bfd577f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"ja-JP","translated":"ボード: {board}","updated_at":"2026-06-16T14:14:04.101Z"} +{"cache_key":"25625a3ae7f6c355749cf07320ac8474df6636dc30b9332afd04866a2cda160d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"ja-JP","translated":"チャンネル","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"258c97d278c9fd176c4d840b895130f5acef25cbe087147aa9b00a587d593d1f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"ja-JP","translated":"{count} 件表示","updated_at":"2026-06-16T14:14:19.257Z"} +{"cache_key":"269180f0ab1f190464feb8aa2641d4d2311ae9efade11e3db4c1786b0ece4d44","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"ja-JP","translated":"{name} を有効化しました。変更を適用するには Gateway の再起動が必要です。","updated_at":"2026-07-10T02:24:18.820Z"} {"cache_key":"27ad1eb7b08340fd6cefce719be659056165a444ebf3fe95acef0e31f2ad008d","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"ja-JP","translated":"マイクへのアクセスがブロックされています。入力を一覧表示するには、ブラウザのサイト設定で許可してください。","updated_at":"2026-07-06T17:56:23.525Z"} +{"cache_key":"28e34534d7d04d03f76fc2d208652a3b398f6d77b89c36b7a00a052ce6356b11","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"ja-JP","translated":"MCP サーバー","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"294c8673a1ef63863a9bf8ec8ce01fd2014a0cfde6bbe593b32fb6ba56ae9d52","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"ja-JP","translated":"CWD","updated_at":"2026-06-16T14:14:21.377Z"} +{"cache_key":"29ead02ee279504589483f2152dc0dfe8af989a14372a9cb71e7b702827b0d79","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"ja-JP","translated":"コミットハッシュをコピーできませんでした","updated_at":"2026-07-10T09:46:59.506Z"} {"cache_key":"29f36d39cb763f5d51353a9918ea244af6f949f68f0b59ac4382f4bd12f9db76","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"ja-JP","translated":"以前","updated_at":"2026-07-05T14:39:44.116Z"} {"cache_key":"2ae652f50a840f2ccdb93804e388794e872e3b1e3a80886a6a527e50c72721c5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"ja-JP","translated":"プレビュー","updated_at":"2026-06-16T14:14:21.377Z"} {"cache_key":"2c2afb25daf4c4143a11841fef30bd4c822e61e8b3d4fff46ef90bef91a80a25","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"ja-JP","translated":"このホストにアーカイブ済みのセッションはありません。","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"2c6b47456f6d05c3efd10d5ef8ae6c8a3e05795537aaffab18fb76cfddf92760","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"ja-JP","translated":"現在のチャットを使用","updated_at":"2026-06-16T14:14:04.101Z"} -{"cache_key":"2cae9a4e47c2cc04769b4037496c1a37c93e9ad9f79f498f2b8492e393554ce4","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"ja-JP","translated":"検索","updated_at":"2026-07-10T06:08:03.302Z"} +{"cache_key":"2d12ea3e61c3a519bb87f7fdc72c760a38dc612be92fe36a4510d47e7f8b9281","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"ja-JP","translated":"インストール済み","updated_at":"2026-07-10T02:24:02.443Z"} +{"cache_key":"2d43daa195987caabc8bfc301813280e4f037e636506fce5007520e337c680aa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"ja-JP","translated":"問題","updated_at":"2026-07-10T02:24:06.655Z"} {"cache_key":"2d921ac4d2faedf4d99fa1b4fe7d23966015541b6e03e1ceaa373a9780502a67","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"ja-JP","translated":"管理対象のワークツリーはありません。","updated_at":"2026-07-05T21:00:44.514Z"} {"cache_key":"2ddb5a80f38d8627f3c42b93e02deb77df239f2ad75e90ac4563bae2a15392cf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"ja-JP","translated":"Talkエラーを閉じる","updated_at":"2026-06-16T14:14:13.256Z"} +{"cache_key":"2de79d2046e0508dcc41e2539e59ee31e3f081188d93313da5f959160325fffd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"ja-JP","translated":"一致するインストール済みプラグインはありません","updated_at":"2026-07-10T02:24:06.655Z"} {"cache_key":"2e363ed079f21b18443d88e6ab1a911df1ad0e9f7b98e0008d1ad431c71351d6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"ja-JP","translated":"アクティビティなし","updated_at":"2026-07-05T14:39:44.116Z"} +{"cache_key":"2eda35242198bced7a5e8df6d32caa0001b242f56dbb24077783d39641280db0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"ja-JP","translated":"ClawHubには「{query}」の結果がありません。","updated_at":"2026-07-10T02:24:02.443Z"} {"cache_key":"2ef47ce75ae0c1c79f5c317cf628b6ea77c5324ef1b6506af78452b90d61ea7e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"ja-JP","translated":"証跡なし","updated_at":"2026-06-17T14:14:09.255Z"} {"cache_key":"2fede496effd6edea79bd344957e87fd5946e5b52db002ecdc942bf021436f94","model":"gpt-5.5","provider":"openai","segment_id":"connection.retryNow","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Retry now","text_hash":"5148c3e20576923b589bd801ea84dc376213b82fbf8694f64437b621f1690615","tgt_lang":"ja-JP","translated":"今すぐ再試行","updated_at":"2026-07-05T21:55:21.364Z"} {"cache_key":"3001c86201dd2786efd8f6b7f0068df0d1d2e3c3781ae077fbb76da20270f64e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"ja-JP","translated":"セッション名を変更","updated_at":"2026-07-02T14:30:08.823Z"} {"cache_key":"303725e92d877ea0b1ef6863d1a87a7260109fc9708247299a5d68bc16ff2fb8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"ja-JP","translated":"システムエラー","updated_at":"2026-07-09T10:01:43.715Z"} +{"cache_key":"30972b8557ac1057dff2df1b72798a099baedf2367c8761e1fb01d1ea55efb37","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"ja-JP","translated":"すべて","updated_at":"2026-07-10T02:24:06.655Z"} {"cache_key":"32b3a20f5911a4a74cacabf75172fb5e77d3058e6a4f8b569c1b8922468727ba","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"ja-JP","translated":"選択したマイクは利用できません。別の入力またはシステムデフォルトを選択してください。","updated_at":"2026-07-06T17:56:23.525Z"} {"cache_key":"33cd36f29c42652907a01263a96545c7a77c607ff259873873688e1628233e74","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"ja-JP","translated":"デタッチ済み","updated_at":"2026-07-04T21:23:52.047Z"} +{"cache_key":"33f89e158556755ab59b3a7ed3f68ba6b74a2074f7585c44010622203fb0e851","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"ja-JP","translated":"メモリ","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"3452c228a51e4eb032dd07ebdefcbc573de94584a51771d63bc35e75a8b39e0e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"ja-JP","translated":"30秒","updated_at":"2026-06-17T14:14:09.255Z"} +{"cache_key":"34ef97812c58eb535773c4a621a6becbb98a666fc5837271539d4758c23162c2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"ja-JP","translated":"無効にする","updated_at":"2026-07-10T04:28:18.712Z"} {"cache_key":"351407cf9a2dc3b2e70edd7baaffa64e50c9498e3a5a09d606be2b8fee2290e8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"ja-JP","translated":"ワーカープロトコル","updated_at":"2026-06-16T14:14:04.101Z"} {"cache_key":"357ebf12dd34cc70c3868d7f2a72437bfab10c4916a1b9ebd04c623d5d2fccc4","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"ja-JP","translated":"{group} のグループオプション","updated_at":"2026-07-06T23:40:52.793Z"} {"cache_key":"3745d01306d1b95f1be9706bfa16e0b22b0dbc37ee49817e41d8a3e0ce3a3d2c","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"ja-JP","translated":"名前","updated_at":"2026-07-05T21:00:44.514Z"} {"cache_key":"380552f07abbae628925c7ce24bd72c723db8d806bb54811213719ef54aa841a","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"ja-JP","translated":"最新実行のトークン","updated_at":"2026-07-05T10:16:05.198Z"} {"cache_key":"385cee2f0cb4a83b0e53424167bef43a488ba00da62ea56753a393ec6b6960b2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goal","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Goal","text_hash":"cdbf6975e8a35b0d03558be6822dfae166482c24fb86b0433f60e8167f5c91e4","tgt_lang":"ja-JP","translated":"目標","updated_at":"2026-05-29T21:00:25.945Z"} {"cache_key":"3866d6fe833dd0a39bea788940dd5a29c8a3fc5be06434254440ee77432b1234","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"ja-JP","translated":"未割り当て({agent} を使用)","updated_at":"2026-06-17T14:14:04.172Z"} +{"cache_key":"398437c1dccf857b421aadfe0cdb249c59556c0ac2e4dc5ab56cad9730c5138e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"ja-JP","translated":"MCP 設定","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"39bc70de0b19457cf2339dffa3e97ef6f4d62518a1874947f21e015293d72f56","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.runDuration","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Run duration","text_hash":"b5e9698b25697ec71f0947df28e6b08438033fe73b1b87ac7362766d77b45b97","tgt_lang":"ja-JP","translated":"実行時間","updated_at":"2026-07-09T10:13:19.227Z"} {"cache_key":"3a32acb03e3f560a295faf9bb4263efe589e5355b602f9b9db8746387facc8ef","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"ja-JP","translated":"復元可能","updated_at":"2026-07-05T21:00:44.514Z"} +{"cache_key":"3b70e34e299935aee8fb2e6ed9a867f42d22cbf2fcc3c5c66509160d823c3cb8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"ja-JP","translated":"注目","updated_at":"2026-07-10T02:24:02.443Z"} {"cache_key":"3b9ab9b0ee0e50fd5dc801f82f5a2afeba36c5eb5957b91be8a3bf4d1f5bb4fa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"ja-JP","translated":"ビュー、検索、優先度、エージェント、またはアーカイブのフィルターを変更してください。","updated_at":"2026-06-17T14:14:09.255Z"} {"cache_key":"3ba7c63622637fc98c9e0622e85a2bd442937462fd2e5710876642f6a7c630b5","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"ja-JP","translated":"オンライン","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"3bc368fb375458b8dad3c0497e819c7a670d4e2f82be9ea2dbcaca621aca375f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"ja-JP","translated":"レビュー","updated_at":"2026-06-17T14:14:04.173Z"} {"cache_key":"3c2703f6232bdc969dd22013a614ba4d1cf979e6d2f406b039d7f97823b6dd07","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"ja-JP","translated":"アクティブ","updated_at":"2026-07-09T10:01:43.715Z"} +{"cache_key":"3cde8bb5d78b3d5fb1f414609df84702b1fba93f94f26b9d0186b532b0ce453c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"ja-JP","translated":"カテゴリ","updated_at":"2026-07-10T04:28:18.712Z"} {"cache_key":"3ce3b0e0236c2154bbf50cb7b7a756f54288fa115c4c2a3f407b3b3f52fad90a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"ja-JP","translated":"セッションワークスペース","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"3f447024a24678f806bb734ad4784c0242ce4cbac643e19cd4a125e7c02aa6b8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"ja-JP","translated":"{count} 件のカード","updated_at":"2026-06-17T14:14:04.173Z"} {"cache_key":"4035a5d1377429b643e0f4153368805c2af73ba57e012d454327569c98aa6ff7","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"ja-JP","translated":"管理対象ワークツリー","updated_at":"2026-07-05T21:00:44.514Z"} {"cache_key":"41a15e00d2e964013abe26256a9b08318c1ee5c603ce5a2f807f6954efea40f2","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"ja-JP","translated":"キューに入っているバックグラウンド作業と実行中のバックグラウンド作業。","updated_at":"2026-07-09T21:53:13.637Z"} +{"cache_key":"41e593d2a61a36d91612cb55b5072e91041ea4ab7f9834077da92a4224163335","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"ja-JP","translated":"コンテキストエンジン","updated_at":"2026-07-10T02:24:10.841Z"} +{"cache_key":"42443eb46017580013fed08fc519753665e4fdb2e01de080c7c37201744fa41f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"ja-JP","translated":"プラグインを読み込み中…","updated_at":"2026-07-10T02:24:02.443Z"} {"cache_key":"42656cf6d0970411645d0a3ef670b8d51c783555e56673f90aa45ffb279bd84a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"ja-JP","translated":"保存済み","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"431e4b6cc91a03c9f15763d2093765e1354887594c092d15f1b31e7e78b0c728","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"ja-JP","translated":"復元","updated_at":"2026-07-05T21:00:44.514Z"} {"cache_key":"432128a92ae53f46390b5e3136ba2b83dabd39da3589eff1e689d7a823a17638","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"ja-JP","translated":"欠落","updated_at":"2026-06-16T14:14:13.256Z"} +{"cache_key":"4404dd4a5443cc1b79a6b41440db13a21ed5125b9884450379451ea8e29e3e18","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"ja-JP","translated":"コミット","updated_at":"2026-07-10T09:46:59.506Z"} {"cache_key":"442e876e3bcb7fb73140de10b7e97da17a2a1d2d9925d051420fd9865910e41c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"ja-JP","translated":"更新日時: {time}","updated_at":"2026-06-16T14:14:04.101Z"} -{"cache_key":"444be872d1eef40135b64434bee0e48888b3b2b131a042ce4d77485506ea8553","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"ja-JP","translated":"Lobsterdex","updated_at":"2026-07-09T23:55:49.956Z"} {"cache_key":"44d36377156e7303f294cf830dfbc0fda357ffca3cfb769b1264f3910239ef9f","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"ja-JP","translated":"訪問しない","updated_at":"2026-07-09T20:51:29.164Z"} {"cache_key":"45083ac17338cb85deb3e03c82bbdc9a71de818d3dac6df255ee986e6c2ae73d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"ja-JP","translated":"未グループ化","updated_at":"2026-07-05T14:39:44.116Z"} {"cache_key":"451c491c155e2515f4b5c006f0adf57277e75b61eebb044b9d70380d26480bd5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"ja-JP","translated":"パスをコピー","updated_at":"2026-06-16T14:14:21.377Z"} +{"cache_key":"4631fc215807ad537bcd13576e0e52db66934f6d2744c6c511ac70dbe9787101","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"ja-JP","translated":"{name} を追加しました。“{command}” で認証してから、gateway を再起動してください。","updated_at":"2026-07-10T02:24:06.655Z"} {"cache_key":"4745bf360c0f2318649511e1494cf0ca801f76d5d9a71ee906325170c1466598","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"ja-JP","translated":"マイク入力","updated_at":"2026-07-06T17:33:41.956Z"} +{"cache_key":"4760045c26a2c3c3a0482ce8d8331ae4328ec125cd2109c1fd75c597570fc5ab","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"ja-JP","translated":"要確認","updated_at":"2026-07-10T02:24:06.655Z"} {"cache_key":"47ae58fcddc0a2dadf4cfb8d7718eb8c885feb72f446ea1b3e07c4e1a967448a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"ja-JP","translated":"プロトコル違反","updated_at":"2026-05-30T15:38:16.645Z"} {"cache_key":"47b55ba247e43bf3c162efd857495c0021a77ad2d5bac9bd7e75b7c3fd024516","model":"gpt-5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"ja-JP","translated":"更新","updated_at":"2026-07-09T10:01:43.715Z"} +{"cache_key":"4869ced19bd5e2d041197e733f20003b2c117ae140bf806d0d8e36fe075e9768","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"ja-JP","translated":"{name} を有効化","updated_at":"2026-07-10T02:24:18.820Z"} +{"cache_key":"48b38309058d77b79f0c73afd1fba6fbd0fedb9855c054da0843488e378f9389","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"ja-JP","translated":"追加","updated_at":"2026-07-10T02:24:06.655Z"} {"cache_key":"48c020b55ea4a311056b41a6535bc5bd84adfed938e8c638cd585722547aa37d","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"ja-JP","translated":"リンクをコピー","updated_at":"2026-07-09T11:02:45.719Z"} {"cache_key":"4931bdeb7f39a459dd823de674faaceda40791e33990faae16742d666065e7bb","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"ja-JP","translated":"ノード","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"4a3eed0709b06b5adad40b032d763c5347ad0af5627f1ee8c60b127876305373","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"ja-JP","translated":"グループを削除…","updated_at":"2026-07-06T23:40:52.793Z"} {"cache_key":"4b1454c6f3271b60bdda9bde85991bdf46cd987024c7f45364ec57f9052290e1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"ja-JP","translated":"詳細設定には管理者権限が必要です","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"4b8b0943e2af5c82d73480f00576490ad6d057ac536e55134d6a97f01332d6f1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"ja-JP","translated":"Codex セッションを検索","updated_at":"2026-07-09T10:01:43.715Z"} +{"cache_key":"4b9a886a6d68f1e14202b61ceee3db37c5a92d7ce9a527d37e35e35afcf57628","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"ja-JP","translated":"閉じる","updated_at":"2026-07-10T04:28:18.712Z"} {"cache_key":"4ba33f2a905e8034904b25ab30572c5c4507db695f47418789aacffb05fab70f","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"ja-JP","translated":"ブランチ","updated_at":"2026-07-05T21:00:44.514Z"} +{"cache_key":"4cf553cbbab4239354e1fce83ed6f06bd227addcb20be9aaa0e49529cb5f7251","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"ja-JP","translated":"{name} を有効化しました。","updated_at":"2026-07-10T02:24:18.820Z"} {"cache_key":"4d80fe4679170b8925079a81a06764f716990ca60feb8a42733c3d36bca4c182","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"ja-JP","translated":"更新済み {time}","updated_at":"2026-06-17T14:14:09.255Z"} {"cache_key":"4dab7c420f96d7d99f81ed15732d8b36ac0994aef66a1db81e38272e3622408c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"ja-JP","translated":"準備完了・未割り当て","updated_at":"2026-06-17T14:14:09.255Z"} {"cache_key":"4def846093b490848382e6094fa2d5da0c58784acb19f9e1f79210acd2f97044","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"ja-JP","translated":"高","updated_at":"2026-07-06T20:20:02.809Z"} @@ -101,72 +138,112 @@ {"cache_key":"4f0aa58136e8af655092d668b85f40ec49949813d16d2d981787196053ff9a1c","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"ja-JP","translated":"ワーカー {state}","updated_at":"2026-05-30T15:38:16.645Z"} {"cache_key":"4f295cdb3ec9efe9e5064bc1152bd95357d5ce7ce3e9786a65a5a2c1b730cc5b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"ja-JP","translated":"メモを追加","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"4f5afe4ddf96173141de11e2c200f97053e5dd034e65c081b7c376ae92a30d2e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"ja-JP","translated":"グループ化","updated_at":"2026-07-05T14:39:44.116Z"} +{"cache_key":"4f5c111ec2b13c360dfba9806bb705b17feb2e3127340d185f3493143bb9be07","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"ja-JP","translated":"{name} のアクション","updated_at":"2026-07-10T04:28:18.712Z"} {"cache_key":"4f9c2e4ef1b771bcf5ff1a301873a435a44f8f5ee4bf77dd795fb8c1d3e56623","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"ja-JP","translated":"新しいセットアップコードを生成するには、もう一度 /pair qr を実行してください。","updated_at":"2026-07-01T10:31:53.015Z"} {"cache_key":"5039a52f335418fe2dad22aa0b75f09b2bb6733756bd332667b4b2a188b24446","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"ja-JP","translated":"デフォルトエージェント","updated_at":"2026-06-17T14:14:04.173Z"} +{"cache_key":"50bc1d54cc9de89e31d3ced56405d09ec19fe962d29e97f3c00c025c4fb08267","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"ja-JP","translated":"プラグインカタログ","updated_at":"2026-07-10T02:24:02.443Z"} {"cache_key":"50f99a9e97cf33cb62df9944b2633ef3285bdddbaa1fb3ef69b4a2d0a9a9fa8c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"ja-JP","translated":"自動","updated_at":"2026-07-06T20:20:02.809Z"} -{"cache_key":"52de8128b7218f1ee060b487d85cdfbadd02b42258f5e826bf217b23f23d446b","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"ja-JP","translated":"下部にドッキング","updated_at":"2026-07-10T06:08:03.302Z"} +{"cache_key":"52fef0ea6d98ad6ae75a91258447bea3bfaabf4435ac8ecf349e74f861e93c36","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"ja-JP","translated":"MCP サーバー","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"545d08dba0c3653898c11033efce74a28cd0c48b380760cbbb5b774e76163af3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"ja-JP","translated":"見つかりません","updated_at":"2026-06-16T14:14:19.257Z"} {"cache_key":"54a63c5fb555dcc688fed7c79b86afd2b6a25611d88017c4c7d2825431ee941a","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"ja-JP","translated":"Skill Workshop","updated_at":"2026-05-31T21:48:21.745Z"} {"cache_key":"55ac19834db57e4cfcdaef2cab55692592acd72896a6d33e49f6d58f4243aadc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"ja-JP","translated":"親フォルダー","updated_at":"2026-06-16T14:14:19.257Z"} +{"cache_key":"55f8ffe5c917246024d3a91ea82b972c234b0e71390bd6c87660ba63faa03159","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"ja-JP","translated":"有効にする","updated_at":"2026-07-10T04:28:18.712Z"} {"cache_key":"563d0fa1ab6421d1083a34628dc0eb6e2dafc9472e9f756ea820827a44467cf5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"ja-JP","translated":"ワークスペースのパス","updated_at":"2026-06-16T14:14:19.257Z"} {"cache_key":"56daeb15daa274bef30a8d0d0eaa9be14cad6448f3ac7ff6e6480aeecd888730","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"ja-JP","translated":"コンテキスト使用量の詳細を開く","updated_at":"2026-07-05T10:16:05.198Z"} +{"cache_key":"56f8e769c0c68d2bf7331e400f796192106b0e8ad9aa9d60d48a07eb2c5e88fe","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"ja-JP","translated":"処理中…","updated_at":"2026-07-10T04:28:18.712Z"} +{"cache_key":"57226e8376e92853e561490356d867aae5a50616a90289f58b66af82a38c714d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"ja-JP","translated":"検索を準備中…","updated_at":"2026-07-10T02:24:02.443Z"} +{"cache_key":"574820fbcc532585ae3a5b998ecb581e4bbd13433c1507ba0a3c7b070b60c13d","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"ja-JP","translated":"コミットハッシュをコピーしました","updated_at":"2026-07-10T09:46:59.506Z"} +{"cache_key":"5758dc99ea3c7d342340e8e4a9bcd518eb72bd65336545c83c926846955213bb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"ja-JP","translated":"{name} をインストールしました。変更を適用するには Gateway の再起動が必要です。","updated_at":"2026-07-10T02:24:18.820Z"} +{"cache_key":"57696ac2f76b15b2787f0eee509a4f04d07a4a58713926f565d16556d850776f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"ja-JP","translated":"インストール済みプラグインをフィルター","updated_at":"2026-07-10T02:24:06.655Z"} +{"cache_key":"580728ff5256bb39edb8324873b16fca217ef3debb44fd859081b86436c9be73","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"ja-JP","translated":"ClawHub のコミュニティプラグイン","updated_at":"2026-07-10T02:24:06.655Z"} +{"cache_key":"585a1cdf45631af296adadb135b56a31bf04d584c98d017eb58cfefccc3ada9d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"ja-JP","translated":"再試行","updated_at":"2026-07-10T02:24:02.443Z"} {"cache_key":"5883212d520cbff2ba22d14caad71d03161eae5a579b129a2e6996bf670ef640","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"ja-JP","translated":"Codex セッションを読み込み中…","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"58b7c84d8aeecfa734a390f36ec3bc508d2a6c88d781b47fbd61f772f9e5660d","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"ja-JP","translated":"スナップショットに失敗しました: {error}\n\nスナップショットなしで削除しますか?","updated_at":"2026-07-05T21:00:44.514Z"} +{"cache_key":"58c5be525b8524823d3cc70acb35f8ad7ed7f97d5e44c30ed344bdef1e992826","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"ja-JP","translated":"ClawHubを検索","updated_at":"2026-07-10T02:24:02.443Z"} {"cache_key":"594e1f4ca2cae7d4b90b5498d877dc21d9572e88b38310c1e28f9e2a89a90ae3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityLow","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Low","text_hash":"f793de205ead5ac302c4a1627829dea41f176b1068b993a32373fc869918374b","tgt_lang":"ja-JP","translated":"低","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"59ccbd444e326ac0a30af907d541eb0690c55f3d8f34091fee9a05a99a3ad32d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"ja-JP","translated":"テナント: {tenant}","updated_at":"2026-06-16T14:14:04.101Z"} +{"cache_key":"5a9d17974f5a92959b17ff016a7dcea06cc499aa439b408088c20d370d1cc72e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"ja-JP","translated":"{name} を無効化","updated_at":"2026-07-10T02:24:18.820Z"} {"cache_key":"5aa1a14f5288355053a3ebaf193ec378a8572e5027827ec766e9be9c8b2ad201","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadingMore","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"ja-JP","translated":"読み込み中…","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"5ca636d4f0429ee8d6c30835ce7709a209e51e45c78cfa15947a0bdd78efca01","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"ja-JP","translated":"Codex セッションを更新するには、Gateway に再接続してください。","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"5d230290d37d369d23fea1000d0b6833a043aded3265e0376b15885385e7d10b","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"ja-JP","translated":"ステータス","updated_at":"2026-07-05T21:00:44.514Z"} {"cache_key":"5d368f265cfdc90f089769414514f2ed1331fe7daa48c609235f13b6e7f171a6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"ja-JP","translated":"Codex ホストが見つかりません","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"5e55b04188534e8f4b34286e6a219a1b0e139a5b9c736493ef93472843f73681","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"ja-JP","translated":"{count} 件ブロック中","updated_at":"2026-06-16T14:14:13.256Z"} +{"cache_key":"5ead2f2fe9690fe179d81c876f2ecff8f50e32f6727b10202cdbede8f6a55c29","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"ja-JP","translated":"プラグインが見つかりません","updated_at":"2026-07-10T02:24:02.443Z"} {"cache_key":"603262ecc6d47b82918c35c4c70d1c86fec0b832705fdb6ab76625a718dcca51","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"ja-JP","translated":"検索結果","updated_at":"2026-06-16T14:14:19.257Z"} {"cache_key":"622b0cca1bd9d5f6fbeeafec605997f61558f68862637d5f530ed59dbc206a7b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"ja-JP","translated":"セッションのコンテキスト使用量: {used}/{limit} ({pct}%)","updated_at":"2026-07-05T10:16:05.198Z"} {"cache_key":"622eb4bcb09951444c7efeb8813f81e8282404c463fbe188482c1fb6d8febef8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"ja-JP","translated":"感度","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"6315e42fafcaac0cb19cf6040ad56679d3b50924d4cc775c259ba89414a6e455","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"ja-JP","translated":"プラグイン","updated_at":"2026-07-10T02:24:18.820Z"} +{"cache_key":"631ba34c16bf0571b924e927627c5ba210292074a49ee1c9822567d6dd52a7e7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"ja-JP","translated":"ClawHub","updated_at":"2026-07-10T02:24:02.443Z"} +{"cache_key":"6490f5f3733999372d5545213f1169140970a023b5a31ec3dba605068e057fbc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"ja-JP","translated":"サーバーを追加","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"64e32f15dd91d9c1630bb202ffeb765e39ed8bb7f53d6184bb1a0860fb9ca636","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"ja-JP","translated":"セッションをピン留め","updated_at":"2026-07-02T14:30:08.823Z"} {"cache_key":"6538d7661d4744c83c2387c9e808dd8d50d2ca5a8b5033e26906e380e0577c22","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"ja-JP","translated":"ワークボードビュー","updated_at":"2026-06-17T14:14:04.173Z"} +{"cache_key":"654a95aa0fd4f920be32e2598ab6b7211c5c4c3a1ecbef8ca9a0ff44a8eb920e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"ja-JP","translated":"閲覧のみ可能です。プラグインの変更には operator.admin アクセスが必要です。","updated_at":"2026-07-10T02:24:18.820Z"} +{"cache_key":"65b8841480e13fb1c1cf60f76be5a5d74ab21330274ad0b04b01c6be950bbddc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"ja-JP","translated":"ClawHub で検索","updated_at":"2026-07-10T02:24:06.655Z"} {"cache_key":"66262505b4869d3cf1a29dfb590f0ea1dcdf47b6ab45d6a35fba50fc143b8dcb","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.title","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Context usage details","text_hash":"0e04e44654b5a2abf769dcd2f82a32e0501a41689d6635d7f718978c160958f0","tgt_lang":"ja-JP","translated":"コンテキスト使用量の詳細","updated_at":"2026-07-05T10:16:05.198Z"} {"cache_key":"666163b90dc4f46f8db133e2d20fccabb1c52c173db28a6f77adcfb25665bb08","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"ja-JP","translated":"明示的なエージェントがないカード。","updated_at":"2026-06-17T14:14:04.173Z"} {"cache_key":"6681524c010d38eba5d0788edbf44ec246ca46d756698c602fd0f7a5bdeb9dc1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"ja-JP","translated":"音声","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"66eab4d4ed09f189f44a0813d4e385cd985e4a8df428337082aed7b991259c49","model":"gpt-5.5","provider":"openai","segment_id":"languages.hi","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"हिन्दी (Hindi)","text_hash":"fab2abfce45382f3031c59477017700a8cb5dfaf8d15379dc24304809b97c7d5","tgt_lang":"ja-JP","translated":"हिन्दी (ヒンディー語)","updated_at":"2026-06-26T21:43:27.880Z"} {"cache_key":"670e670cb8ce29eacdbceaab66cd69e0f1dffb50e81981f1f86d5e135d0ffea7","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"ja-JP","translated":"マイクを読み込み中…","updated_at":"2026-07-06T17:33:41.956Z"} +{"cache_key":"679cae156bf882795a18e149aee149038de0dec8969df0906845f87a2646aa03","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"ja-JP","translated":"ClawHub から","updated_at":"2026-07-10T04:28:18.712Z"} +{"cache_key":"67bbc9dceba7f1d83fe18e6a21ed745fde7bbd146b6e1fc057fc6ee73e51e836","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"ja-JP","translated":"このブラウザーアーティファクトのビルド時に埋め込まれた ID。","updated_at":"2026-07-10T09:46:59.506Z"} +{"cache_key":"6803e888e18abe51174b2dc91192ede6e3702319dc0c65f61aa4f563bf6bab31","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"ja-JP","translated":"名前","updated_at":"2026-07-05T21:00:44.514Z"} {"cache_key":"680d8cfcc46f5bf79ff5ea1b57b5f7fed47326f0aff56b5e3709fa088fd1bb2c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"ja-JP","translated":"準備完了","updated_at":"2026-06-17T14:14:04.173Z"} -{"cache_key":"68907fc9142d52e007bd63f7938efff6b8330e90f3048c5f2b13e0df203cb71d","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"ja-JP","translated":"右側または下部にドラッグしてドッキング","updated_at":"2026-07-10T06:08:03.302Z"} +{"cache_key":"68604ee2b08f95cfb147abad6c3b045ff4e5378f8d3aac639f186bbf2b8452bb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"ja-JP","translated":"{name} を追加しました。新しいエージェントセッションですぐに使用できます。","updated_at":"2026-07-10T05:22:06.929Z"} {"cache_key":"6b711c539f0b4ce2c514744260c62dc22ce17d14cc18529d40c1d1af5ff2f4c5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"ja-JP","translated":"新しいグループ…","updated_at":"2026-07-05T14:39:44.116Z"} +{"cache_key":"6c8af1b654915812a1590743b228c8b7551d92a4dff02722b26c50314dccb629","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"ja-JP","translated":"コードプラグイン","updated_at":"2026-07-10T02:24:14.816Z"} {"cache_key":"6dcca3b4c171d37fba32b5c359c51c96ac79643612c1aceda8eadc9093e81b27","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"ja-JP","translated":"{count} 件のセッション","updated_at":"2026-07-05T14:39:44.116Z"} {"cache_key":"6e4f79ebbfb53c3f4eb49db29420c9d78cc6ebf467b17a2862e68da80bf66197","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"ja-JP","translated":"コンテキストの {percent}% を使用中({used} / {context} トークン)","updated_at":"2026-07-09T07:06:17.887Z"} {"cache_key":"6e97dbe68af401d3c59bd5ab97cf295a1aa5a0584b20f19bf841eb9be3d54866","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"ja-JP","translated":"{count} 件の成果物","updated_at":"2026-06-16T14:14:19.257Z"} +{"cache_key":"6f08e4a42dcf2d1f57802610820f620fda6780d5d1fda91813145f934c78edf4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"ja-JP","translated":"http(s) URL またはコマンドラインを入力してください。","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"6fd643605be97b117d68111ea4ed6d6da05c0ce7f2880df9b15e63d79be3411d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"ja-JP","translated":"このフォルダーにファイルはありません。","updated_at":"2026-06-16T14:14:19.257Z"} {"cache_key":"6fd82965e1b9919018ec76c9379372b26fc4e633cab0f1c72647895a671fdf45","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"ja-JP","translated":"コメント","updated_at":"2026-07-01T01:06:53.045Z"} {"cache_key":"7032ea193e157bd2e91c64f3fc49a6f9711b68e0495bb57c71b650f95bbcc194","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"ja-JP","translated":"ワークボードの状態","updated_at":"2026-06-17T14:14:09.255Z"} {"cache_key":"709f4a84f1058ccbf934465d9a6f05d84f89a4d2c7e3e812fdbdd3c16398c7a1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"ja-JP","translated":"無題の Codex セッション","updated_at":"2026-07-09T10:01:43.715Z"} +{"cache_key":"72897270ce2f7156509298daa11b2d2d03550b166df400c7f200816be598b3c2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"ja-JP","translated":"任意のOpenClaw機能です。","updated_at":"2026-07-10T02:24:14.816Z"} {"cache_key":"72c184ed5db446880bf6d56893c5f172b86ebd075fac9a236af5af6e86d2e941","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"ja-JP","translated":"Русский (ロシア語)","updated_at":"2026-06-26T21:43:27.880Z"} {"cache_key":"735bfed72bdf080b0cfec7018cff618eb5b84cde206d7cc309ba10a4351ab467","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"ja-JP","translated":"一般","updated_at":"2026-07-09T08:07:52.803Z"} +{"cache_key":"73eff87d369ad1976ced9f6bb86a0e64b86544c13cf52190dbed582112b0335c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"ja-JP","translated":"追加済み","updated_at":"2026-07-10T02:24:06.655Z"} +{"cache_key":"74b0b42847e92fd0e6d9e131ca54759bce56a8c7d639c9a741f37086cc1d36c1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"ja-JP","translated":"リスクを確認してインストール","updated_at":"2026-07-10T02:24:18.820Z"} {"cache_key":"75682e1767f63d191ad8fc15fca7ed6bef12d6b1dec3eb6a4f2684d3ed05febd","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"ja-JP","translated":"並べ替え","updated_at":"2026-07-06T23:40:52.793Z"} +{"cache_key":"75707f8b5a03c4f922e789384cb5d6b4ffb88805dd411568f1ca65cf1899c4db","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"ja-JP","translated":"プラグインをバンドル","updated_at":"2026-07-10T02:24:18.820Z"} {"cache_key":"776974fa30249e86f5fdcd23557646de8af10155c3210e4c6cb8bf55c4d8d714","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"ja-JP","translated":"セッションをグループに移動","updated_at":"2026-07-05T14:39:44.116Z"} {"cache_key":"777ec9c31265f665368b5e75d2ab4f53c3fd5874b79530d56a8ee4ff7efba192","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.usageCredits","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Usage credits","text_hash":"fbc841b791a14110e06a9913d3d69153b9cc4cf9542b856821b357a09a7c08a4","tgt_lang":"ja-JP","translated":"使用クレジット","updated_at":"2026-07-09T11:49:17.247Z"} +{"cache_key":"784a8557d9c67f8839527b873cddb51c44a70c0e1934892b44591bda98662724","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"ja-JP","translated":"プラグインを検索","updated_at":"2026-07-10T02:24:02.443Z"} +{"cache_key":"7a0ce776639c4969a02b01d4cdea35d2de41071dcb71e33c489c685c84e9c92a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"ja-JP","translated":"“{name}” という名前の MCP サーバーはすでに存在します。","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"7a805e49dd5b20f9b92d98c5001a31aa3eb357c6eaee8a9819e881abb4999e9a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"ja-JP","translated":"5秒","updated_at":"2026-06-17T14:14:09.255Z"} +{"cache_key":"7b1ba441a969371d20cb1d9686446ea0fd9b0e919bb4893060e5baff271bb22f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"ja-JP","translated":"有効","updated_at":"2026-07-10T02:24:14.816Z"} {"cache_key":"7bb05575fca6bd71d81a7f765b29bf12727a860bc43487431194d0cda4f51209","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"ja-JP","translated":"添付ファイルが追加されました","updated_at":"2026-05-30T15:38:16.645Z"} {"cache_key":"7e0fafe9210a70cd3b7aeed4be6a6432ea3fd5787d235d42e27b89eb1ae0a7dc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"ja-JP","translated":"セッション","updated_at":"2026-06-16T14:14:19.257Z"} {"cache_key":"7e421b9e40710ea6c957b86850e81b387cf5b6716d89d174ec6a9c1f24611905","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"ja-JP","translated":"不明","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"7f38bbded7ed760bb71e2d08fcb5861692b8c695643187b90931f2bbd991e1f5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"ja-JP","translated":"セッションのピン留めを解除","updated_at":"2026-07-02T14:30:08.823Z"} +{"cache_key":"7f4db9bb61809aacce14da6d95fbd20f34e9f60bc5ae3b68668c1db06787208f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"ja-JP","translated":"プラグインを検索","updated_at":"2026-07-10T02:24:02.443Z"} +{"cache_key":"80dcbaadbc3e7fe97d805edd523bc3334e58ad1e80ef122a2b4159efcf1f76a1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"ja-JP","translated":"設定を利用できません。更新してもう一度お試しください。","updated_at":"2026-07-10T02:24:14.816Z"} +{"cache_key":"8121e1f45a17c2033eb447221f77989f8dfebcebd007f241c5a9dc0d84271f9d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"ja-JP","translated":"{name} をインストールしました。","updated_at":"2026-07-10T02:24:18.820Z"} {"cache_key":"8172e1304e88dda17ec594097cbf130f7953b19dc1429d4f61aec8fe5482e3e9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"ja-JP","translated":"なし","updated_at":"2026-07-05T14:39:44.116Z"} +{"cache_key":"81b5162141fc9703c96f7c393e13aff426bae6c1477cf21ae6639a9a9c357886","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"ja-JP","translated":"Control UI のビルド詳細","updated_at":"2026-07-10T09:46:59.506Z"} {"cache_key":"83e3008ef062ae16a460f2574f19c677ab084f34c1a47062b66af61a4bf4fc49","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"ja-JP","translated":"オーケストレーション","updated_at":"2026-05-30T15:38:16.645Z"} -{"cache_key":"844cc43084715570fc948672d851b36f84eb148498167686c5a5214c1dcbaa27","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"ja-JP","translated":"セッションファイルを表示","updated_at":"2026-07-10T06:08:03.302Z"} +{"cache_key":"84344873adbd6c5936ef369aabecc958da2284afff45933e57663a070888cd7f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"ja-JP","translated":"削除中…","updated_at":"2026-07-10T02:24:14.816Z"} {"cache_key":"84aef0146791963f3b8e38ca57d502c58609eab48c2df66f58816b68f5881f08","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewAll","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"All cards","text_hash":"2306120917506b5998ec702f3661068b102dac538ba4c9e4634d65fe33eea98a","tgt_lang":"ja-JP","translated":"すべてのカード","updated_at":"2026-06-17T14:14:04.173Z"} {"cache_key":"84d9378e9eb6129bd39934ca77c9cb5da53b51fa37e116bc776dd48c6f4ec325","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"ja-JP","translated":"最初に一致したファイルを表示しています。検索条件を絞り込んで結果を絞ってください。","updated_at":"2026-06-16T14:14:19.257Z"} +{"cache_key":"856a4d9bd1e3c6699aef5a0e2a24e17a9537f87a02796ac49af7d733c28c3d81","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"ja-JP","translated":"ビルド日時","updated_at":"2026-07-10T09:46:59.506Z"} +{"cache_key":"85b89e950123368d5ed04a11fb52295873a601944eafb7bc578ecc31e9ef3f79","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"ja-JP","translated":"{name} を無効化しました。変更を適用するには Gateway の再起動が必要です。","updated_at":"2026-07-10T02:24:18.820Z"} {"cache_key":"8608a45a479ff39aeff4d2b1617026d0ab46f40fdab64e62e0ea3634fc9f70a7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"ja-JP","translated":"このホストに検索条件と一致するセッションはありません。","updated_at":"2026-07-09T10:01:43.715Z"} +{"cache_key":"874789b4422d870836278b24c08b98d821b2e2a20bbae7f388e05c3bcda1e5c3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"ja-JP","translated":"閲覧のみ可能です。この Gateway ではプラグインの変更は許可されていません。","updated_at":"2026-07-10T02:24:18.820Z"} +{"cache_key":"8751fa75f6febf0b068bb37ca969e8e23b171f4572dd1ee27e3f9f2817c9cebf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"ja-JP","translated":"インストール中…","updated_at":"2026-07-10T02:24:18.820Z"} {"cache_key":"87ca2fa0a9f73dc6e63a03fcc6ecb4f329d4c35d16bfb100d3efb90ee9d5f6c5","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"ja-JP","translated":"接続","updated_at":"2026-07-09T08:07:52.803Z"} {"cache_key":"8809775a43d491eb956485f4b8e8033be545eda1b7e858f064b2c1cfb6ba2229","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"ja-JP","translated":"更新日時","updated_at":"2026-06-16T14:14:04.101Z"} {"cache_key":"8840a5168409760eea9ef33ccf154f697349a29ad6e16da6af6a8f24372a3227","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"ja-JP","translated":"オペレーターのメモはまだありません。","updated_at":"2026-06-16T14:14:13.256Z"} -{"cache_key":"89c5a2cd9fea6966cd97e405e594db396c0a4091ebf05521b41bac32d76fd67a","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"ja-JP","translated":"サイレント","updated_at":"2026-07-10T04:50:03.921Z"} +{"cache_key":"88ccd6792a71d3481cea18d4ddff93d2d550da30075fd0826641415cc475829e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"ja-JP","translated":"有効","updated_at":"2026-07-10T02:24:06.655Z"} {"cache_key":"89d31da23e996e7aee3758118a9bbdc56dc5aa3a68557ea1f9024689d5b0eae3","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"ja-JP","translated":"マイク {number}","updated_at":"2026-07-06T17:56:23.525Z"} {"cache_key":"89db2213a71276a41d20aaee60f4d351887fc997aeee2a7a3b10895aa424267c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"ja-JP","translated":"依存関係","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"89e2fad22ed939437d982b29e2000ff60a4ed9356ec509dc13a2657fb4a4c3f8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"ja-JP","translated":"設定済みのデフォルトエージェントに明示的に割り当てられたカード。","updated_at":"2026-06-17T14:14:04.173Z"} {"cache_key":"8acf2a817f4d697dc13f748f8dce5ce9dd50aae6fe8481e65dbabbec23708d1e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"ja-JP","translated":"セッションカタログを利用できません","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"8ccfbd67b038beb504411a4aad18dabf77d1c9aef64db7f85528256739135dc2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"ja-JP","translated":"Skills: {skills}","updated_at":"2026-06-16T14:14:04.101Z"} -{"cache_key":"8d2a8acb92e9dfbe30e019e1b8d788f6eb37454f960ad3de4b99ec386cdedaba","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"ja-JP","translated":"触れると小さなブクブク音","updated_at":"2026-07-10T04:50:03.921Z"} +{"cache_key":"8d488a9b88d12866189a63a248fbcbf488ace038d94dd0f29c64f7983e461ab8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"ja-JP","translated":"仕事と生産性","updated_at":"2026-07-10T05:22:06.928Z"} {"cache_key":"8d75b9eac731c471aa0de82a9dc712e5b0ed48c5fc3bec1fae434eab3d8e4114","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"ja-JP","translated":"エージェントとツール","updated_at":"2026-07-09T08:07:52.803Z"} +{"cache_key":"8da833b759f97ad9a06f70f0ca21db925a0194d81c5a0d633dc94df1496fcb45","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"ja-JP","translated":"モデルプロバイダー","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"8dfc5efe84dea73600d09ebc9284881470867cc6bf5a9ab9846ee4614af3f69f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"ja-JP","translated":"ワークスペース: {workspace}","updated_at":"2026-06-16T14:14:04.101Z"} +{"cache_key":"8dfd2c1cff54523ddc770f35b1360bd8bba62b6a536a441d098bc9a62fc77912","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"ja-JP","translated":"対応が必要","updated_at":"2026-07-10T02:24:14.816Z"} {"cache_key":"8eac8d1a747e5383dd355763fa881ef8fb59fdf4082d89f41f60cf6a31ca5e74","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"ja-JP","translated":"リポジトリ","updated_at":"2026-07-05T21:00:44.514Z"} {"cache_key":"8f13222e40ef70c72d03d866d5802e71b1b9901160007d84669961432e0d2681","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"ja-JP","translated":"{parent}(欠落)","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"8f476d843eea30212bf7c4716708859102026217f18bd5a8d69dfdb8e6c6db8f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"ja-JP","translated":"ピン留め済み","updated_at":"2026-07-02T14:30:08.823Z"} @@ -174,19 +251,24 @@ {"cache_key":"8fb588b6b5e3c2da65abd9016c94517733e86b4a3286dfed1b05bc71a89637f3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"ja-JP","translated":"最終回答の後にコメントを残す","updated_at":"2026-07-01T01:06:53.045Z"} {"cache_key":"8fc12c1c70a06c3a12afa5ae2521ba58a98bbf2dd9147a047deffc31df076c86","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"ja-JP","translated":"今日","updated_at":"2026-07-05T14:39:44.116Z"} {"cache_key":"9182bd9f8c396e9816aeac9e137bd8bae0d451e4ec8fb9139032491c4e5d5354","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"ja-JP","translated":"古い","updated_at":"2026-06-17T14:14:09.255Z"} +{"cache_key":"93172260a1f7c4dc8156ece52ec663b8bbbc0e87386819982a59e3e62b5c71ed","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"ja-JP","translated":"ClawHubを検索","updated_at":"2026-07-10T02:24:02.443Z"} {"cache_key":"93309fb097ac6115ffa01bb8a34c155ed43cae5a9c78fc137d45bb1d1bd13c0a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"ja-JP","translated":"修正リクエストを提案のワークショップセッションではなく現在のチャットセッションに送信します。","updated_at":"2026-06-16T14:14:04.101Z"} {"cache_key":"93aa12fedaab987305f07af92bc0269591826006609125f17a2dc90afd7e6db8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"ja-JP","translated":"決定事項、ブロッカー、証跡メモを追加...","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"93d1bb3b893f58356b77e6e1e48dc8266ca4f80688ff35387e8cb9e8afbd6cc6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"ja-JP","translated":"セッションワークスペースを読み込み中…","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"943ba9c30dcc49fd253c076b97b0364ee0567c06d22fce11e9ecd1ff860a8cf5","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"ja-JP","translated":"7日間","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"94b9648de6fa793aab53e485028daf1057b60edfdc727cb3d2f9a36ee3d3ed8e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"ja-JP","translated":"Talk の詳細設定には operator.admin 権限が必要です。","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"94ed5d6d85f61ed150b5791d017b6e16f6eaaa0841e2af922edd0b2d1d8f8a81","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"ja-JP","translated":"オプションのプラグインはインストールされていません","updated_at":"2026-07-10T02:24:06.655Z"} {"cache_key":"964b14cedd2528bc13806dc35c59966a447965f10979208914d447b99cdc0a83","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"ja-JP","translated":"デフォルト","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"97cf6e3bdad51a9db7b7e4d14c835200a40476283762eb8c576e9a024e0fbf1d","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"ja-JP","translated":"アクション","updated_at":"2026-07-05T21:00:44.514Z"} {"cache_key":"981eb2b99dbe6751c5f97c44dfbf950d8c08f3fbd369cfb9f3f468a401f9fee2","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"ja-JP","translated":"アクティブ","updated_at":"2026-07-09T10:01:43.715Z"} +{"cache_key":"995cfce367a57a0957199f25481ad74a7a27b2642086163ab2cf94a60d90569c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"ja-JP","translated":"人気サービス向けのワンクリック MCP コネクタと厳選された ClawHub 検索。","updated_at":"2026-07-10T02:24:06.655Z"} {"cache_key":"99c131312d7962e53e2437a2971f7af3f38c50410a29390d5bdc716f8cb6868f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"ja-JP","translated":"アーカイブ済みのセッションのみを表示します。","updated_at":"2026-07-02T14:30:08.823Z"} +{"cache_key":"99eb5dfd1e691d6f6df622a9d9a34b0523bb79c1fa579d38e76221a81bb20c50","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"ja-JP","translated":"公式プラグイン","updated_at":"2026-07-10T02:24:06.655Z"} +{"cache_key":"9a2d1fe6d3dd298f159f9fb7310afc2eec3d3d6d8d6c10a41f75cef57ab319b8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"ja-JP","translated":"別の検索を試してください。","updated_at":"2026-07-10T02:24:06.655Z"} +{"cache_key":"9a9e4edf34c00fead35d2e9f034e3b1d120311281be495570ac62a7bf251df9c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"ja-JP","translated":"{name} をインストール","updated_at":"2026-07-10T02:24:18.820Z"} {"cache_key":"9ae707474f244e728e4281b7cdc5c1f9503119f35a249e92700aa1a2abe7f7a3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"ja-JP","translated":"ゆったりしたカード密度","updated_at":"2026-06-17T14:14:04.173Z"} {"cache_key":"9c8d0f60d5a4cca22d255f85560c314863a67bd8c4d02d52d2fda7cfee974613","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"ja-JP","translated":"種類","updated_at":"2026-07-05T14:39:44.116Z"} {"cache_key":"9cad2aac24d0737b1e93049f26ca186862d0ea7710c075ee2686887d71ab4aca","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"ja-JP","translated":"プロジェクトファイル","updated_at":"2026-06-16T14:14:19.257Z"} -{"cache_key":"9deecab369e032a246629ea11b75d36e8d7d0cdd77a10e3df4442f65eacdac1b","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"ja-JP","translated":"右側にドッキング","updated_at":"2026-07-10T06:08:03.302Z"} {"cache_key":"9e00c50c0f63e20858e2376d9a700c08bbdb0cd6eb484fb4d133d7ac4ac96a97","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"ja-JP","translated":"ワークツリーで新しいチャット","updated_at":"2026-07-06T04:56:03.939Z"} {"cache_key":"9e147a5881aa3833d6bbd9836193336239ac2ed44be9efd4bc61fa816709fd19","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"ja-JP","translated":"アーカイブ済み","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"9fdf95b104957c175145171b94d6a20288b647b04cc47b8bf004e10ccdf2a0c5","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"ja-JP","translated":"この Gateway と、接続済みでセッション共有を有効にしているすべてのコンピューター上の Codex セッションを読み取り専用で表示します。","updated_at":"2026-07-09T10:01:43.715Z"} @@ -199,13 +281,20 @@ {"cache_key":"a72b724cfff7baa658e637564b6dfc1fe42496628f3b376d12cb57d1cc68eff4","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"ja-JP","translated":"セッションタイトルを検索","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"a7805b31b0f98500c92c71e8382402f3289e3ee8280ecf8229f5ae7f24dc40e1","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"ja-JP","translated":"{count}日間","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"ac3b2e583623039a3990a982b7bf0d5a7afc0c7e44521518d466e6e530cde28f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"ja-JP","translated":"ブロック中","updated_at":"2026-06-17T14:14:09.255Z"} +{"cache_key":"ac6422ee4327d5ce40e2d21f9946a75a1dbeeb526a297a5592d081d7ca0d4a3e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"ja-JP","translated":"プラグインを変更するには Gateway に接続してください。","updated_at":"2026-07-10T02:24:18.820Z"} {"cache_key":"ac9c5e386fd7b44b6220bc38a87ccd0584b5fd8b6a8841157cb25b0bccdc472b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"ja-JP","translated":"グループ名を変更","updated_at":"2026-07-06T23:40:52.793Z"} +{"cache_key":"ad14ee1c538c3706419f4fb822da24e2bbd646b4bc6e339656358e8371cda121","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"ja-JP","translated":"MCP サーバー {name} を追加しました。","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"ad587aac57ecf89dc3440a75192ad536e55e91c91313dfde119fda5624a79f24","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"ja-JP","translated":"MCP","updated_at":"2026-05-31T05:36:37.677Z"} +{"cache_key":"ade015842f2c749513e0f6beb46e9acfbb7a6c0e7259a4e042bc476d41fe2e8f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"ja-JP","translated":"{name} を無効化しました。","updated_at":"2026-07-10T02:24:18.820Z"} {"cache_key":"ae01058a8b3400423fa86d187aba35a4a1872cc1264ba8d82667f798abe8d849","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"ja-JP","translated":"ハートビート {age}","updated_at":"2026-06-17T14:14:09.255Z"} {"cache_key":"ae5da90a4769e7006bb4e19908c99b26fb516df1844195f74b6fb2ecd56960d4","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"ja-JP","translated":"最終更新","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"aea7e364aea6b528af7568f8325c3c651e979129c47c01b48ef20cbe62201c2a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"ja-JP","translated":"スレッド","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"b0a4cf599373061f793cf5a1dc29a49d429727dc843ed28c0927ad15256b61a0","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.resets","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Resets {time}","text_hash":"5a0f8c1b2755ee505e02e19fadc7377ad48df63cc7d3399c20228fe3edc37cb1","tgt_lang":"ja-JP","translated":"{time}にリセット","updated_at":"2026-07-09T11:49:17.247Z"} +{"cache_key":"b0f021e0ee4d785c8b453b36c40e2ef1a081f516c6a8f690e682628875599d5a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"ja-JP","translated":"利用可能","updated_at":"2026-07-10T02:24:14.816Z"} {"cache_key":"b11292c6f62f41a9920279fa6d03abee682b5ee4aaf71a451534a701d16a23a9","model":"gpt-5.5","provider":"openai","segment_id":"connection.reconnecting","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Reconnecting…","text_hash":"27b80374e1151af6df7824a358606c77502548bff4d467e4ae2e146801f601ce","tgt_lang":"ja-JP","translated":"再接続中…","updated_at":"2026-07-05T21:55:21.364Z"} +{"cache_key":"b12dff86c7e9caeaf8c77c660f60c08ef4b4df27d7fab58e1d5f380a8c6aa776","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"ja-JP","translated":"接続中の Gateway バージョン","updated_at":"2026-07-10T09:46:59.506Z"} +{"cache_key":"b13de98a7ac1bb6ed307a6b6e5fb30af38bfe9292f869ad0a07982884a1202ae","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"ja-JP","translated":"インストール済み","updated_at":"2026-07-10T02:24:06.655Z"} +{"cache_key":"b168445510ced538d26ebf72cbd0c9412a475b8441add0cc01d4dda76aa9f645","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"ja-JP","translated":"設定","updated_at":"2026-07-10T02:24:14.816Z"} {"cache_key":"b2726a577da1eb6db36c759bdd2cec75437597229a66a19d642ecfea1e80584e","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"ja-JP","translated":"このページが非アクティブな間は、マイク入力を利用できません。","updated_at":"2026-07-06T17:56:23.525Z"} {"cache_key":"b2dc9d621db88db44d7206960889314f33a753087845344c3e36dcd58c4cdcba","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"ja-JP","translated":"カードの詳細","updated_at":"2026-06-16T14:14:04.101Z"} {"cache_key":"b3072d01c33a39ff3f7aa269bd6d835b5ec57f05016def728caa2eff07444153","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"ja-JP","translated":"セッションワークスペースの概要","updated_at":"2026-06-16T14:14:19.257Z"} @@ -214,32 +303,40 @@ {"cache_key":"b43ab66ae49bbf8796c0e9b1ffb62fd2a7e3a23b01326c673a410254a2843be0","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"ja-JP","translated":"MCP サーバー、認証、ツール、診断。","updated_at":"2026-05-31T05:36:37.677Z"} {"cache_key":"b46b2acc862d0948e844784517f3be207ada2bc1c3d57be75e5ab22abc54e47c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"ja-JP","translated":"証跡","updated_at":"2026-06-16T14:14:04.101Z"} {"cache_key":"b48cdfa2b31c7ba33aa225a2ec2267aadd978996af05094c34813360367a3988","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"ja-JP","translated":"モデル","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"b52f3ecc94317e8c0e0e553bbe9e713dd83bd8279df2eb505c1bcb83282e3233","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"ja-JP","translated":"探す","updated_at":"2026-07-10T02:24:02.443Z"} {"cache_key":"b5da5df9f05841310e48272ac3b3a7010f1fbc69cb9f6eec02824640751960f7","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitWeekly","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Weekly · all models","text_hash":"144f0e5ca031e40c0cba8a53a9dcb4d9534c74edd976587231da2cd14b4944df","tgt_lang":"ja-JP","translated":"週次 · すべてのモデル","updated_at":"2026-07-09T11:49:17.247Z"} {"cache_key":"b5da6546178ab3f19c2c262a7935d841b4823835bd11468f524ae11c50c20a21","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"ja-JP","translated":"Codex セッションの概要","updated_at":"2026-07-09T10:01:43.715Z"} +{"cache_key":"b68e7cb3a336557ab3fde1a8645835b1101d0e5cfbd1751642f57b35d9ee7596","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"ja-JP","translated":"このプラグインをインストールする前に、ClawHub の警告を確認してください。","updated_at":"2026-07-10T02:24:18.820Z"} +{"cache_key":"b77dc6837f72f0fb23dafc8f49f7923607985eed1ea0e504a5417ea80734854c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"ja-JP","translated":"パッケージ","updated_at":"2026-07-10T04:28:18.712Z"} {"cache_key":"b87bc6805d1174940ff2f06ebc4e5561e91020c0c1917103cd5884cd7425cadd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"ja-JP","translated":"ワーカーログ","updated_at":"2026-06-16T14:14:04.101Z"} -{"cache_key":"b8b1a4b2c5661822d40bb94bbd534736db0ba7347a95b5d5819abe21a3ef00ff","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"ja-JP","translated":"ロブスターのサウンド","updated_at":"2026-07-10T04:50:03.921Z"} +{"cache_key":"ba28689047e7856cdd5f5de0345a1d89c0b1dbd2b38989c52dc688ecd75922da","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"ja-JP","translated":"グローバル","updated_at":"2026-07-10T02:24:14.816Z"} {"cache_key":"ba4829fd39076cb6778b49cd1c44bc3f9e850fcc8e5a06734278623daf7903ca","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"ja-JP","translated":"接続済み","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"ba6687f22ffdf7a0fa77916bb0c504fb7f71ebcef40e296713de1d08f75ea195","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"ja-JP","translated":"{count}キャッシュトークン","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"bb4a85c331eb1c9d3417a80ff3a2b27655f38e25fa6a4cabb4aa5f43a98e74f0","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"ja-JP","translated":"更新","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"bb4e5249d7aa408ce77d51416261b6051be5cac6803ca571e7eef77c6b774f9f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"ja-JP","translated":"ルート","updated_at":"2026-06-16T14:14:19.257Z"} {"cache_key":"bb4f3597b8d51e5e861760f9f9fce05ad3e34a4e1eabf18ef155538f5e45aa4e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"ja-JP","translated":"詳細を表示","updated_at":"2026-06-16T14:14:04.101Z"} {"cache_key":"bc3d8c08bac3f10bfbe7eee6ce96a1bfd973be61b286e034b5a20b4c3c4f8d18","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"ja-JP","translated":"15秒","updated_at":"2026-06-17T14:14:09.255Z"} -{"cache_key":"bc739b9369884316832d36b3dfd80d4ffb667c0ea0ec8df43f244abab302e879","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"ja-JP","translated":"{name} · 初回訪問日 {date}","updated_at":"2026-07-10T04:20:29.450Z"} {"cache_key":"bc8d2d1c98381010b8f0369c62800367ffac02bfa17c9c246b0ac3f5e43ae6a7","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"ja-JP","translated":"セッションを並べ替え","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"bd533386ccb54c294f2a564fa4f01e738fffd9153668cec0c247029789b038b8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"ja-JP","translated":"{count} 件準備完了","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"bde797b9366e7259834f728e4dfcdafaeb7d01e15c6ef50361669dbbc6aaccb8","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"ja-JP","translated":"{count} 件のワーカーログ","updated_at":"2026-05-30T15:38:16.645Z"} +{"cache_key":"bf20c1e14448139459915fde633567c3dcd822efaa1131d0b3fe56c347fb50fc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"ja-JP","translated":"有効 {enabled} 件、無効 {disabled} 件、問題あり {issues} 件","updated_at":"2026-07-10T06:08:43.113Z"} {"cache_key":"bf2a6c4d75130dc7532c712c94fa8603b7e523473c4528e8a973e010b70536bf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"ja-JP","translated":"成果物","updated_at":"2026-06-16T14:14:19.257Z"} {"cache_key":"bf59f1b1672d6d2ee524a1f2eda7bcfb4cecb01e924557f5281472923c05850a","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.estimatedCost","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Est. cost","text_hash":"3199f14286736527bfc6ad9165629415a5aa087517acd2c0e9b1ae8bb5d26766","tgt_lang":"ja-JP","translated":"推定コスト","updated_at":"2026-07-05T16:00:11.493Z"} {"cache_key":"bf72f9352c07342b018ca3b72dcb4acef0cae4a4be184b2a0f931446314ed0f4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"ja-JP","translated":"オペレーターのメモ","updated_at":"2026-06-16T14:14:04.101Z"} +{"cache_key":"c0d064774fa7e0664c691378de435cb2ec8306bb0b21a990fb50a6848adcdd1e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"ja-JP","translated":"詳細を表示","updated_at":"2026-06-16T14:14:04.101Z"} {"cache_key":"c12d2a93ae155a734bc1259fc69f4b88845fff55da33ccf15656076e17237ab8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"ja-JP","translated":"アイドル","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"c15909db12158eb4c5351169855bedcc938dba7d38ce130f5e8a87295e6b0dd3","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"ja-JP","translated":"メッセージを送信するには、このセッションを復元してください。","updated_at":"2026-07-02T14:30:08.823Z"} {"cache_key":"c294370ec0b489b6c7d8c2c1ccff11ab6316c95d82ebb05b74348cb1c0af7fed","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"ja-JP","translated":"アプリに戻る","updated_at":"2026-07-09T08:07:52.803Z"} {"cache_key":"c2fa046e01d021a68296ee10bee004f84b326d6027bc292b864208aa376eab9b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"ja-JP","translated":"このブラウザではマイク入力を一覧表示できません。","updated_at":"2026-07-06T17:56:23.525Z"} +{"cache_key":"c35759f6981bce05c252886b68eb8f082610a201e3109b70a3485e29bc4a9054","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"ja-JP","translated":"ホームとメディア","updated_at":"2026-07-10T05:22:06.929Z"} +{"cache_key":"c3829ab5bfbeec337d04c9092046b04724cae272c6b099fb2a1a9c752aa3d7b6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"ja-JP","translated":"Model Context Protocol サーバーに接続して、エージェントに追加のツールを提供します。変更は新しいエージェントセッションに適用されます。","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"c3e71f222e93a637050638c6b26a43958c8dc80b50591b93151bdf9710e66881","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.actions","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Workspace file actions","text_hash":"461817d921bc7672e95fe4a3b23f4ac2a4a20e35b3d6eef3f02e8f5ba4201050","tgt_lang":"ja-JP","translated":"ワークスペースファイルの操作","updated_at":"2026-06-16T14:14:19.257Z"} {"cache_key":"c45641c791a5e2d0765939afcfafe948f153e792c35cb2cbe4501113240c93f7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"ja-JP","translated":"{agent}(未設定)","updated_at":"2026-06-17T14:14:04.173Z"} {"cache_key":"c531f0f5c42b8a7f6e9d8713361ccd668cea4cd855c16a02fa6f35545966d58c","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"ja-JP","translated":"ツールエラー","updated_at":"2026-05-31T06:43:53.079Z"} {"cache_key":"c573f78ef3eb24d02167e100daaa87ca29223c56df0ca6f94e7099b4cef0b52f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"ja-JP","translated":"ホスト","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"c581463816f2d81e6aae828ab02d202ff5ef9216a378ee373ec820e1033ed410","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"ja-JP","translated":"ワークスペース","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"c5e844db2e53ccc48a9c8697460535d3d0deead2a95bb3dde54f4a5f5064343d","model":"gpt-5.5","provider":"openai","segment_id":"connection.offlineHint","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Live updates and actions are paused until the connection returns.","text_hash":"7a60105cdafb6aa95b9081a370308a9ccd495199c9bfb90d3e0f70af68680f26","tgt_lang":"ja-JP","translated":"接続が復旧するまで、ライブ更新と操作は一時停止されます。","updated_at":"2026-07-05T21:55:21.364Z"} +{"cache_key":"c6dc95db2639305e6cb3c99cd04d537cf26791ce026eff7a56dab141bb4ca846","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"ja-JP","translated":"Control UI と接続された Gateway のビルド ID。","updated_at":"2026-07-10T09:46:59.506Z"} {"cache_key":"c787c618efe581b07b09bc18999af9d57c72278e50574b83fe84dcd4c76c5273","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"ja-JP","translated":"昨日","updated_at":"2026-07-05T14:39:44.116Z"} {"cache_key":"c7ebc4d24d4cee6398d6bef0555f2ffac32000881a177cc0ac3721c693cf1de9","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"ja-JP","translated":"{count}出力トークン","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"c837517d2e9a46718b504718125579b6f4f1beddb0cdd69978d0119ac7ef55e1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"ja-JP","translated":"Codex フリート","updated_at":"2026-07-09T10:01:43.715Z"} @@ -247,21 +344,35 @@ {"cache_key":"c8de084bb4003077f0b08a50921e6dc35d22f05886b414d621b8ddcd475f40c5","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"ja-JP","translated":"{count}件のリクエスト","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"c98465af54ab41bdc11b8f3fa3895968a8af7ce8c82a8386a85628116db3f4ee","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"ja-JP","translated":"マイク入力にアクセスできません。","updated_at":"2026-07-06T17:56:23.525Z"} {"cache_key":"c9b61d4ce932187fb5328b5226cc1a818038bf531735ca2dac187347e0b376c2","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"ja-JP","translated":"スケジューラー","updated_at":"2026-07-09T21:53:13.637Z"} +{"cache_key":"ca156820edb8352249a5d0e1f679f8dd7f968b11cc66af3a135576a9694abf08","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"ja-JP","translated":"Control UI","updated_at":"2026-07-10T09:46:59.506Z"} +{"cache_key":"caee4511bc2cb3d212f993430be0cecaa13ff501707877698fe13e6136afac23","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"ja-JP","translated":"{name}を削除しました。変更を適用するにはGatewayの再起動が必要です。","updated_at":"2026-07-10T02:24:14.816Z"} +{"cache_key":"cb22d2d3c4bb7d5954bb8b08331d795e36bcbbe70e981b111da7ea7b44c89b26","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"ja-JP","translated":"バージョン","updated_at":"2026-07-10T09:46:59.506Z"} +{"cache_key":"cbe39307ae5cee71d34b9227edd531f427663612c7105b9d63fbac71a5db6d6a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"ja-JP","translated":"一致する項目はありません","updated_at":"2026-07-10T02:24:02.443Z"} {"cache_key":"cce97507d9460ccf77f8f5aec55537a8eb97e8176cab912f98ed694cf142ec9d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"ja-JP","translated":"オフ","updated_at":"2026-06-17T14:14:04.173Z"} {"cache_key":"ccea54fe13bd4c7bef2c59e4cdf45cc5cabc9f68e0c96309a6068b6c4fcf15ca","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"ja-JP","translated":"分離されたエージェントタスクのチェックアウトと復旧スナップショット。","updated_at":"2026-07-05T21:00:44.514Z"} {"cache_key":"cd0d813d43d7b61d13e0ccf95ad3a2ae3b80f3f80964596324d5e5b86fac360e","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"ja-JP","translated":"{count} 件の添付ファイル","updated_at":"2026-05-30T15:38:16.645Z"} {"cache_key":"cd6caa1e1b37847f1a6d0faa44f6f60821d2a451b66077f335c4bf6e7601481b","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"ja-JP","translated":"リンクのアクション","updated_at":"2026-07-09T11:02:45.719Z"} +{"cache_key":"cf642110123d45708bb0354b3e15abaccd595cde9064a2275bc9e3a04fdf4d67","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"ja-JP","translated":"Control UI 設定を更新できませんでした: {error}","updated_at":"2026-07-10T02:24:18.820Z"} +{"cache_key":"d0ab2220ebfb95651861e0eb579ed26a665b1a9829f4a2f5bbd05b6b4cdd61cc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"ja-JP","translated":"サーバー名には、文字、数字、ドット、ダッシュ、アンダースコアを使用できます。","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"d0b56050176fa6d32b3e216097f41856a87dd23aedce798f0ece4013f3dfb26e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"ja-JP","translated":"ファイルを検索","updated_at":"2026-06-16T14:14:19.257Z"} {"cache_key":"d148b5dfa71ec4d55e3803d78bc187910523ff02810d7f71286ad4d07356b96b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.budgetValue","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{used} of {limit}","text_hash":"e191398f92416f35cb6279f7206d2b67cdee04ce46932a1ece17c8c18ca3636e","tgt_lang":"ja-JP","translated":"{limit}中{used}","updated_at":"2026-07-09T11:49:17.247Z"} {"cache_key":"d18570791fe4a33cac91265fb875e2e15cb4c0172d17e4ba14bd8208a1df3401","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"ja-JP","translated":"目標メモ","updated_at":"2026-05-29T21:00:25.945Z"} +{"cache_key":"d2b0fa0c27a7f82d5c636f42a1173cea6761d21cb40d4edb7dddf3a78b29677d","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"ja-JP","translated":"概要","updated_at":"2026-07-10T09:46:59.506Z"} +{"cache_key":"d2f682b051955c2ce9444d51f90353e115f9622e946e7f119d6254b8c7b7b63c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"ja-JP","translated":"MCP サーバーはまだ設定されていません。ここで追加するか、Discover からコネクタを選択してください。","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"d3f51a005ad211f5ed6854805c9f3c353fc594a7627978897fa93914be8319b4","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"ja-JP","translated":"Realtime Talk にはブラウザのマイクアクセスが必要です。","updated_at":"2026-07-06T17:56:23.525Z"} +{"cache_key":"d40527529a04d28e9059ccd544f501a9caf289835d0b9e9b8fc2e641138b901a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"ja-JP","translated":"MCP サーバー “{name}” が設定内に見つかりませんでした。","updated_at":"2026-07-10T02:24:10.841Z"} +{"cache_key":"d4472b239a6dac1e79a11d3bb8ab00477ec4fc65ca0961b802bc9ff22f359507","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"ja-JP","translated":"利用不可","updated_at":"2026-07-10T02:24:18.820Z"} +{"cache_key":"d52ecd46f16e07458f20ce270015e6f2347abe6b2cb4f456baa631fdd94da129","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"ja-JP","translated":"注目のプラグインを見つけるか、ClawHub を検索して OpenClaw を拡張しましょう。","updated_at":"2026-07-10T02:24:06.655Z"} {"cache_key":"d5ac4b6430074b9e7b7250c0a9057ccc8f44bebd743b3459fec634d0ee8a7a78","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"ja-JP","translated":"古い","updated_at":"2026-06-17T14:14:04.173Z"} {"cache_key":"d684fb5e8f11d62cd6854445cf51a9467fed72c95fdf21f4ff4b97888bcfa5c4","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"ja-JP","translated":"グループ","updated_at":"2026-07-05T14:39:44.116Z"} +{"cache_key":"d6bf3dc7d9e32fc0fe877d23c1ccbaf69fc1064e1bfd93c9c5bebde4d6116c2f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"ja-JP","translated":"無効","updated_at":"2026-07-10T02:24:14.816Z"} +{"cache_key":"d6f3c29ff02cb0f2941c6444929a8d12150130d6af5aeae58ea38d1cace23f8a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"ja-JP","translated":"キャンセル","updated_at":"2026-07-10T02:24:14.816Z"} {"cache_key":"d7a67a2e0d7fdeaf6ad48f84e6529d81105e485667f8b29eebbdff8fbc2daed1","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"ja-JP","translated":"上位モデル","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"d7f22b44d8f84e279607662c50981f3242de87854cb22278c8acfcceb36a9311","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"ja-JP","translated":"{count}入力トークン","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"d8c19102b00c646caab31b434895f8cecd64b4e3b2d8a031042dc2330ae8d9ec","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"ja-JP","translated":"セッションワークスペースを折りたたむ","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"d9665101b7b64b5f1570085fa55e27ce906249d82e18b5c9b57c10d3f23fe2f5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"ja-JP","translated":"不明","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"db87f2b9a66a0ac278041bfacd9a5e83bc64dec907d75c20ee6eabcf6fc52833","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"ja-JP","translated":"チャットを開く","updated_at":"2026-07-09T08:27:15.508Z"} +{"cache_key":"dc6742607b2b7e1dd85ec6fae8e1f381c2b8260156c924f23ce6ebf19c0c70a5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"ja-JP","translated":"{name}を削除","updated_at":"2026-07-10T02:24:14.816Z"} {"cache_key":"dd71654873ab8832fd1538ad11fd43f16fc3e4df5fc5ee543387cdc39cf772f9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"ja-JP","translated":"コマンド","updated_at":"2026-06-16T14:14:21.377Z"} {"cache_key":"dd93eff4f74e0e927d70d2fb1842a7df7420785ed1a66ca1c55a61c462eeaeb3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"ja-JP","translated":"読み取り","updated_at":"2026-06-16T14:14:19.257Z"} {"cache_key":"de101c9ecc8d876cd19cf8446c8c5b0b8b82a30c39b2967cc5b310abbee3f2ea","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"ja-JP","translated":"実行中","updated_at":"2026-06-17T14:14:09.255Z"} @@ -269,18 +380,27 @@ {"cache_key":"df1d1fa4c746a4060c48f6be7015279ad79fb30f46953038521cf39f82bc8868","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"ja-JP","translated":"セッションをアーカイブ","updated_at":"2026-07-02T14:30:08.823Z"} {"cache_key":"e00f4bd34b7fe65bd22810cd49d3a9b97372bf788c549ac0dbe397508cd911f1","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"ja-JP","translated":"完了、失敗、キャンセルされた最新のタスク。","updated_at":"2026-07-09T21:53:13.637Z"} {"cache_key":"e08e79f316a4fd82f22f2bd3c654b9c58d5668efa50a0e664ee48e3c1e4a8db2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"ja-JP","translated":"中","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"e139e6cc8e626036a442e7e923a3db8fdc983e24d9c6c04ceeb47930f1610382","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"ja-JP","translated":"このプラグインを削除しますか?","updated_at":"2026-07-10T02:24:14.816Z"} +{"cache_key":"e1e0d8647719d384cdd54f6bd48665638e56f17e9e82dad9b4a6ff173cd32bdc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"ja-JP","translated":"Gatewayがオフラインです","updated_at":"2026-07-10T02:24:14.816Z"} {"cache_key":"e262d4df8dd57e1a46568fea5ff14777657a0f37808ef9cf8a40095beed20964","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"ja-JP","translated":"すべてのコンピューター上のセッション","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"e27719267bae39448ac82ff0c3373d72f9b6546188286386c2cc151d41c803de","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitHours","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{hours}-hour limit","text_hash":"c9091350c3c5c4e3c54dae43eec58cd35555724276a0acc388b98239a573f9df","tgt_lang":"ja-JP","translated":"{hours}時間制限","updated_at":"2026-07-09T11:49:17.247Z"} +{"cache_key":"e31db4c5dddceb7be171176b04448142ce99204a8dbddf118da767252d4ad936","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"ja-JP","translated":"含まれています","updated_at":"2026-07-10T02:24:14.816Z"} +{"cache_key":"e3c1499058988c630d7af340cf7ec40a05f74bd3e99778fdc6bb6625aaa9aa6f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"ja-JP","translated":"ClawHubを参照","updated_at":"2026-07-10T02:24:02.443Z"} +{"cache_key":"e3f61ab7b79b89826589d3addfb72e6b315b0f5336a6a608b646ac56d8365a94","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"ja-JP","translated":"ワンクリック MCP サーバー","updated_at":"2026-07-10T02:24:06.655Z"} {"cache_key":"e3f73b9e2011ce63da0fe336072b6647e3a83c0dbe732a802303833b251046d0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"ja-JP","translated":"新しいグループ名","updated_at":"2026-07-05T14:39:44.116Z"} {"cache_key":"e555cff9d58775fd59213d3b007940d366b501c4e4e25e3fadcb60710466d027","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"ja-JP","translated":"セッションワークスペースを更新","updated_at":"2026-06-16T14:14:13.256Z"} +{"cache_key":"e6363a9ecf78ed9ee555f085fdda5e00428278d79b9244d3876d0effd7006b4b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"ja-JP","translated":"削除","updated_at":"2026-07-10T02:24:14.816Z"} {"cache_key":"e761ee7c38a3aa47f0cf98166b464d8513746cdb5dbb5cd20ca0824275cf4a12","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"ja-JP","translated":"ロブスターの訪問","updated_at":"2026-07-09T20:51:29.164Z"} {"cache_key":"e7a4c4b64c803f4f6be208599748d8e9e438b741fd85301436b596fd58bba136","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"ja-JP","translated":"一致するファイルはありません。","updated_at":"2026-06-16T14:14:19.257Z"} +{"cache_key":"ea3cc3a5e626bf578967d75af308bd784f85af9e58af2a879e04a2fd3ffce80e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"ja-JP","translated":"ソース","updated_at":"2026-07-10T04:28:18.712Z"} {"cache_key":"eba3b0f8128b91b14850c25d626a6997c16d0ebee07b899c49d6cf898d8f1f5f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"ja-JP","translated":"最近完了","updated_at":"2026-06-17T14:14:04.173Z"} {"cache_key":"ebd2b9b069d6ab24d9af78df6097ae83bd2d68daeb2915116240d43d3e30345a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"ja-JP","translated":"エージェント","updated_at":"2026-07-05T14:39:44.116Z"} {"cache_key":"ebe740f62c8f9f9597c901d3dc2b2234b2d7d90b432e6e90b7f439eb31607080","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"ja-JP","translated":"セッションのアーカイブフィルター","updated_at":"2026-07-09T10:01:43.715Z"} +{"cache_key":"ec6cb39662e123b13aa9d44f8f87c510dbea2f5a75edffeb7587fa0567a1c5ed","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"ja-JP","translated":"ClawHubを検索中…","updated_at":"2026-07-10T02:24:02.443Z"} {"cache_key":"ecb26f47167b8c350c4216385ab1d82786cae5927e763775c563e25dc362e8a8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"ja-JP","translated":"日付","updated_at":"2026-07-05T14:39:44.116Z"} -{"cache_key":"edef0407c13154f4841c0d18f2786ffb80f2111b7e46bcab30c9af183c10778b","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"ja-JP","translated":"{seen}/{total} 訪問済み","updated_at":"2026-07-09T23:55:49.956Z"} {"cache_key":"edfbb268ab07c538e62983edc59ff03d46ab390c2829f8f31f4bfd18d6462b30","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"ja-JP","translated":"マイク入力が見つかりませんでした。","updated_at":"2026-07-06T17:56:23.525Z"} +{"cache_key":"ef3624b414590ba18d916a989d50c42eccc5f6285c4bc756617936d789b7b008","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"ja-JP","translated":"接続して、インストール済みおよびおすすめのプラグインを閲覧してください。","updated_at":"2026-07-10T02:24:14.816Z"} +{"cache_key":"efb8c03581554fd8b240e7278e0795dd86164f46a6c57c6951cf295ce84069b6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"ja-JP","translated":"プラグイン ID","updated_at":"2026-07-10T04:28:18.712Z"} {"cache_key":"f019f3d37d3af8aa1e960ce6f523acbb0ad17fb78644a8920f23b77e959c053a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"ja-JP","translated":"診断","updated_at":"2026-06-16T14:14:04.101Z"} {"cache_key":"f09f36d698609441c589c7a19094c9bd2e944448c872b1a744e84bb64c83bf8c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"ja-JP","translated":"このホストにアクティブなセッションはありません。","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"f0d183feb2e9a1d27960b98a12f8312fe7e49a0a5663bcdcfceb5722cc303b3d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"ja-JP","translated":"Gateway またはペアリング済みのコンピューターで Codex セッション共有を有効にしてから、このビューを更新してください。","updated_at":"2026-07-09T10:01:43.715Z"} @@ -291,12 +411,16 @@ {"cache_key":"f6db4db51f902e337c87e46c35596d920b934fce9fa224609e75759cb795eec0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"ja-JP","translated":"実行","updated_at":"2026-06-16T14:14:04.101Z"} {"cache_key":"f7c1cce2d611ef71bedb1f435ae1902359aa977fea9f86df1bf432189d5c8b6d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"ja-JP","translated":"Gateway","updated_at":"2026-07-09T10:01:43.715Z"} {"cache_key":"f83b3b7383c1f8a28372f6483c7774aa2c015d3457aa08da27c16903e608b47b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"ja-JP","translated":"グループ「{group}」を削除しますか?そのセッションは未グループに移動します。","updated_at":"2026-07-06T23:40:52.793Z"} +{"cache_key":"f89559d59401e29e3f1ed64a5442a577621231ec61ea9827f0aeb6130093bff7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"ja-JP","translated":"コーディングとインフラストラクチャ","updated_at":"2026-07-10T05:22:06.928Z"} {"cache_key":"f95044c980838962b3906d3c32a51b2a6eedddc45f6af08d78213de57e0fe653","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"ja-JP","translated":"プロバイダーの日次コスト","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"fb7b9b3429c6927f1923ab946a58fbf03bfe48ca1b3c8fe48fc49dbc3409471a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"ja-JP","translated":"60秒","updated_at":"2026-06-17T14:14:09.255Z"} +{"cache_key":"fbcfaf1901d3d52ab68b0c0340eb66663ca157ad739c7941672a85ee772252b6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"ja-JP","translated":"確認済みのソース","updated_at":"2026-07-10T02:24:14.816Z"} {"cache_key":"fc09795792a7bc44e2ca2ce53e42721e663b6ea3d255359b6e1572d0763be16d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"ja-JP","translated":"セッション名を変更","updated_at":"2026-07-02T14:30:08.823Z"} {"cache_key":"fc7a478180d16315c014db8b4e0a659c02acfdb00403e7c1098b937f7a924acc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"ja-JP","translated":"コンパクトなカード密度","updated_at":"2026-06-17T14:14:04.173Z"} {"cache_key":"fcada3cf1f76407188ce20d99fc0bd332083f0417f28089ea067d09b383e62af","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"ja-JP","translated":"{agent}(デフォルト)","updated_at":"2026-06-17T14:14:04.173Z"} {"cache_key":"fd6f497dbb9e1c61f45ba825ce80dc5287aeadbc3444639e9a6efb5cfb5f63db","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"ja-JP","translated":"システム","updated_at":"2026-07-09T08:07:52.803Z"} {"cache_key":"fd765beb94ce21d79c7702c77c14674126518b3200c166dfc2457430cc3bcd2e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"ja-JP","translated":"このセッションではまだ操作されたファイルがありません","updated_at":"2026-06-16T14:14:13.256Z"} {"cache_key":"fe5a76fd68cc58d6b5f95710a5c4e609bdce20c7e37139a4a1819bf62037d683","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"ja-JP","translated":"システムデフォルト","updated_at":"2026-07-06T17:33:41.956Z"} +{"cache_key":"feec4de3dab05f3d397f9499b8e3fad757741e540814a63d9eb57e84e3327d74","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"ja-JP","translated":"コードとバンドルプラグインを探すには、2文字以上入力してください。","updated_at":"2026-07-10T02:24:02.443Z"} +{"cache_key":"ff9919908726b135e889fa7b088632f96e430c37745db333f5baab9bea2bfbaf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"ja-JP","translated":"URL またはコマンド","updated_at":"2026-07-10T02:24:10.841Z"} {"cache_key":"ffa34fb2a6fad47e48fccd120c135bd3abdfd4eb05f42b5da641a3f420eb4d7b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/ja-JP.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"ja-JP","translated":"{count} 件変更","updated_at":"2026-06-16T14:14:19.257Z"} diff --git a/ui/src/i18n/.i18n/ko.meta.json b/ui/src/i18n/.i18n/ko.meta.json index ed2286720fb1..b2b9c94e86e8 100644 --- a/ui/src/i18n/.i18n/ko.meta.json +++ b/ui/src/i18n/.i18n/ko.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:26.177Z", + "generatedAt": "2026-07-10T09:47:02.739Z", "locale": "ko", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/ko.tm.jsonl b/ui/src/i18n/.i18n/ko.tm.jsonl index ca032eed7988..881006ba696d 100644 --- a/ui/src/i18n/.i18n/ko.tm.jsonl +++ b/ui/src/i18n/.i18n/ko.tm.jsonl @@ -1,34 +1,53 @@ {"cache_key":"01b71c27bed60aa5a42e4fb51a0679095d9ed707326f010f2160780ceaff2670","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"ko","translated":"CWD","updated_at":"2026-06-16T14:14:37.028Z"} +{"cache_key":"02f7d2aeaa5405c7001b4036a92806510e16ab1210b5e1ab336cbea6a28b7da8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"ko","translated":"플러그인 검색","updated_at":"2026-07-10T02:24:22.436Z"} +{"cache_key":"03f83c34d0439822f329d494726dd24a4aa863ef8463785bd961885cd1c91687","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"ko","translated":"활성화됨","updated_at":"2026-07-10T02:24:26.351Z"} {"cache_key":"040d5b73b1cb07c76d910dcde7fb3a60ff2086a799c51f69fd5d1b7e5793cc25","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"ko","translated":"세션 이름 변경","updated_at":"2026-07-02T14:30:10.945Z"} {"cache_key":"048f0efd597ce6b603a0a66cca52e07578f5b16ea8625087c2d0e331c6117578","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"ko","translated":"디스패처 넛지","updated_at":"2026-05-30T15:38:20.918Z"} -{"cache_key":"0491bb8fff6c0c4ec5eac44ed606ce714682e29e678a0639cc7c2d1f8d108243","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"ko","translated":"세션 파일 표시","updated_at":"2026-07-10T06:08:07.604Z"} {"cache_key":"04a70a6c2acfe18b4598d5b9d5b1309bc46063bec44a16bdd61601e48f86f41e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"ko","translated":"날짜","updated_at":"2026-07-05T14:39:46.951Z"} +{"cache_key":"05333a2ea84a9490de0b67b0dbb5b9203bdfa077f2ebac23ae4d4f2e3ec61317","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"ko","translated":"사용 중지됨","updated_at":"2026-07-10T02:24:33.710Z"} {"cache_key":"059f8d220822244193450a02baf0ade7de8f2f8afcabc51dc010780e7578bbb1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"ko","translated":"자동","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"05c8a6d94b76839551c9b8943c0eb1ed0ff778148f867f1468c1c8aa59b6768e","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"ko","translated":"연결","updated_at":"2026-07-09T08:07:54.348Z"} +{"cache_key":"074a3ce81472ca37277b53af313b80fe2e94b9eb8c20e1cbfa6dd8a4a9f7e5d9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"ko","translated":"세부 정보 보기","updated_at":"2026-06-16T14:14:21.259Z"} {"cache_key":"0770a04dcf3bb445f9a096a5e83216fc030f69328702dd58e88a7d75755cb797","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"ko","translated":"정렬 기준","updated_at":"2026-07-06T23:40:54.646Z"} {"cache_key":"07953a597f6300b1920472c01f242c65562c0067e7791c7be9cf11cd1cea4863","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"ko","translated":"5초","updated_at":"2026-06-17T14:14:20.553Z"} {"cache_key":"0849d78831fd5dfbca1ac7147b15acefe44eed960bd56220a88c7cd736ce0c00","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"ko","translated":"보관된 세션만 표시합니다.","updated_at":"2026-07-02T14:30:10.945Z"} +{"cache_key":"09ee0fee5c84d8473e8d2b55c3a6ea28f4ae7e4fb596e7c01e219bd1737c0ed0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"ko","translated":"ClawHub 검색 중…","updated_at":"2026-07-10T02:24:22.436Z"} {"cache_key":"0a5161b3294e3010726b2862d4814bd3f5452b991dbe04395c9224fef6f4ce69","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"ko","translated":"MCP 서버, 인증, 도구 및 진단.","updated_at":"2026-05-31T05:36:39.349Z"} +{"cache_key":"0a74c3138569607c381f8b9b3bd333e9d44979554c9808bc0ad21fef70d2ee3f","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"ko","translated":"커밋 해시를 복사할 수 없음","updated_at":"2026-07-10T09:47:02.735Z"} {"cache_key":"0a9023f1436bb9047112b842c4bc25daf12b4aeec67a3d0bc68f4b249a1b7dd3","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"ko","translated":"시스템 기본값","updated_at":"2026-07-06T17:33:43.488Z"} {"cache_key":"0ab27f4cb55751880aa7b1a7ab223a89e23206e14edb81f0f69132322c2476ba","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"ko","translated":"세션 작업 공간 새로고침","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"0ae83dbb2fe77bce89777cfbd10e3959cb08410884cc88473d2034710bcdbe1b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"ko","translated":"워크보드 보기","updated_at":"2026-06-17T14:14:15.283Z"} {"cache_key":"0b35a6c1d6620fd761ecf89dfd0ce5eaddbbb34059b5870139f2b1f2089014b6","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"ko","translated":"마지막 활성","updated_at":"2026-07-05T21:00:52.598Z"} +{"cache_key":"0b90f203792fe0a5f83511b3b3a82e9ae1a9fcf93d8273dab4168ddb61d86265","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"ko","translated":"비활성화","updated_at":"2026-07-10T04:28:20.683Z"} +{"cache_key":"0d6d1153e9d005a874de1f8f0f8331ff80a15ee5b03cf4adaa975719077a785e","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"ko","translated":"이 브라우저 아티팩트가 빌드될 때 포함된 ID입니다.","updated_at":"2026-07-10T09:47:02.734Z"} {"cache_key":"0dbd78719eb9b7046bcbc74c322f7e6a36a22a0fb5eb0ad393df590753446ba5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"ko","translated":"여유로운 카드 밀도","updated_at":"2026-06-17T14:14:15.283Z"} {"cache_key":"0e9dd47d57051f49ee33a708cac13afe64a1b6eb451e928b228900c50b0f3fb2","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"ko","translated":"이 Gateway와 세션 공유를 활성화한 모든 연결된 컴퓨터의 Codex 세션을 읽기 전용으로 표시합니다.","updated_at":"2026-07-09T10:01:43.732Z"} +{"cache_key":"0f2ac554ddee946d07242b6076eb922fc9eed475645b11d0e0997eca787512c7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"ko","translated":"ClawHub의 커뮤니티 플러그인","updated_at":"2026-07-10T02:24:26.351Z"} {"cache_key":"0f98dcf0c762240a2f91e2c7c0d88c0c0d473851caed77941b1c4678b0d9df62","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.badge","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Expired","text_hash":"424a2551d356754c882d04ac16c63e6b50b80b159549d23231001f629455756e","tgt_lang":"ko","translated":"만료됨","updated_at":"2026-07-01T10:32:01.566Z"} +{"cache_key":"102e3fd1d5cfa46485be8c3165b76f0c65551ac99c80482649e5abbd66a636cb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"ko","translated":"플러그인을 찾을 수 없음","updated_at":"2026-07-10T02:24:22.436Z"} {"cache_key":"1035a75f48534ff3fb65ab0e987453cafaa7ca4f2db2c5d090c60060f1d91ad6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"ko","translated":"더 보기","updated_at":"2026-07-09T10:01:43.732Z"} +{"cache_key":"10a72527d2d0303c38defbd694827f736cc3e42dc242eb349e4188eed5c257f0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"ko","translated":"ClawHub 둘러보기","updated_at":"2026-07-10T02:24:22.436Z"} +{"cache_key":"1108b9e55dbadb63575e272e421fd6976a9bf84bf71a31d9012ddebbab0e3506","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"ko","translated":"커밋 해시가 복사됨","updated_at":"2026-07-10T09:47:02.735Z"} +{"cache_key":"1230c292a4006ff682a9713918d451526f6cb9f5c5f74f4b716ece4083bd1a5c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"ko","translated":"취소","updated_at":"2026-07-10T02:24:33.710Z"} +{"cache_key":"129a7f2fcc557a10f8e7bb0eda87464da49d4f992abb8cdf944609cb090545c1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"ko","translated":"ClawHub 검색","updated_at":"2026-07-10T02:24:22.436Z"} +{"cache_key":"12a39364340cca6ff5d0d4551f2e6e5c9c90fc76049d3230703768c21de364d4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"ko","translated":"http(s) URL 또는 명령줄을 입력하세요.","updated_at":"2026-07-10T02:24:30.377Z"} +{"cache_key":"12ea7c7386072a11480bf994466e951b23bdd28b4e577685bc3f194976db8859","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"ko","translated":"{name} 비활성화","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"1322f5238bfbef986e37572f81762440020602804d828a37376e934110090dd0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"ko","translated":"{count}개 세션","updated_at":"2026-07-05T14:39:46.951Z"} {"cache_key":"13966fa4ec838f4dd51da1c9b8bc0d422ffed54126c8330bd863a1ccffb673f3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"ko","translated":"처음 일치하는 파일을 표시합니다. 검색을 구체화하여 결과 범위를 좁히세요.","updated_at":"2026-06-16T14:14:34.760Z"} {"cache_key":"13aef62aeea5979d2e641fa5090106ac61fca4cf3fb1575454a310568e2fd380","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"ko","translated":"컨텍스트의 ~{percent}% 사용됨({used} / {context} 토큰, 근사치)","updated_at":"2026-07-09T07:40:35.533Z"} {"cache_key":"143471e3c84e6bcbddeb38e41d6a6deca0e1a0d9db92254c4b2313d366927f10","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"ko","translated":"세션 보관 상태 필터","updated_at":"2026-07-09T10:01:43.732Z"} +{"cache_key":"143e752d08e6962b7783030a7bf759cd5fa9044cf4a09f90cdecfcb01321ea7a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"ko","translated":"컨텍스트 엔진","updated_at":"2026-07-10T02:24:30.377Z"} {"cache_key":"14c4e7ec0505609f54af1c7d7e8d617094e1c4ecd82ee7f7f299ead3cf5a70d9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"ko","translated":"{agent} (기본값)","updated_at":"2026-06-17T14:14:15.283Z"} {"cache_key":"1514da5908fa67b69b781c34cb35975d70e90b4e6697f58b6253436e3ba0b97b","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"ko","translated":"첨부 파일 {count}개","updated_at":"2026-05-30T15:38:20.918Z"} {"cache_key":"15a1a28cc221e67c7c82c527b637e88c963c165e22c3b15883c5f23040c12529","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"ko","translated":"{count}일","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"174bd83d617f55a479f1d6b34cc244df66a87ff293bb0e819d33131d77672d02","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"ko","translated":"일상생활","updated_at":"2026-07-10T05:22:09.580Z"} {"cache_key":"178a5e39c46ba6ca216e32605db66c2dff5ca0ac0d6868b714cc6a030a862bb5","model":"gpt-5.5","provider":"openai","segment_id":"connection.lostTitle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Gateway connection lost","text_hash":"ec6cd265976239ff6fc4f227bb25e8e6286fe38c3d1c64326dcdbb76c28b515e","tgt_lang":"ko","translated":"Gateway 연결이 끊어졌습니다","updated_at":"2026-07-05T21:55:24.398Z"} {"cache_key":"17965e94984aa8797fd23fa39e0ba34faee052b6588d1e82e318a087cf28f606","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"ko","translated":"아티팩트","updated_at":"2026-06-16T14:14:34.760Z"} {"cache_key":"181ff6a15e1676d21e148372922792c4493064c21ccf083c5d85f38423374adc","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"ko","translated":"시스템 오류","updated_at":"2026-07-09T10:01:43.732Z"} +{"cache_key":"18f4ef2fd7b622cf14c0aca2a9aa9c30b5c1e9d5433c49406ddf56ad4bd58390","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"ko","translated":"Control UI 구성을 새로 고칠 수 없습니다: {error}","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"19c5b75fede91589ecec47a1bbf447c671b5497812d769b1d7e9bf016409261f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"ko","translated":"선택한 마이크를 사용할 수 없습니다. 다른 입력 또는 시스템 기본값을 선택하세요.","updated_at":"2026-07-06T17:56:26.773Z"} {"cache_key":"1a2a0d2d28a1ee8782baa9950932c85a54cd09fbe21d95273abd149625604594","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"ko","translated":"없음","updated_at":"2026-06-16T14:14:34.760Z"} +{"cache_key":"1a3fbb72a0ef52aeaa7ff8366d3a4677912e3bf046ba0af798abbec9274a84e3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"ko","translated":"{name}을(를) 설치했습니다.","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"1b8241e69ecbb38c83a1d9386f5019193e71dea011ed65c6fad5c834dd38d147","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"ko","translated":"프로토콜 위반","updated_at":"2026-05-30T15:38:20.918Z"} {"cache_key":"1b9f972b067d63837d47365f433add2f1f18da87b22dc8539be9d51d34c0a4dd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"ko","translated":"알 수 없음","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"1bd6aef2cfe2fff6d030b8ce19ed5093eab1a2fc55f9278e61dbbc25b24de5f2","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"ko","translated":"컨텍스트 창","updated_at":"2026-07-05T10:16:07.195Z"} @@ -41,37 +60,52 @@ {"cache_key":"1f8427a3216fef1fc3e482fb33ea952dead5c388a59273911484170ec390379e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"ko","translated":"검색 결과","updated_at":"2026-06-16T14:14:34.760Z"} {"cache_key":"209c98959f562e30a6e25a87c5631c6a5d0eb4469f11f21cade537809406c5cb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"ko","translated":"알 수 없음","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"20b82e2293505fc448dbe3a2425cbeb996900fd73c8653f0046559d358d6e5e0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"ko","translated":"활성","updated_at":"2026-07-09T10:01:43.732Z"} +{"cache_key":"20c6cc8552e45c80da0ebb5e8f64287a2afbc5ed78f063e1e6e63cd25a3eb579","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"ko","translated":"포함됨","updated_at":"2026-07-10T02:24:33.710Z"} +{"cache_key":"2147ffbe0968b30724a8433f7c2b659bc3dc5d9cce9dc2a91320a0c8796f790f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"ko","translated":"선택적 OpenClaw 기능입니다.","updated_at":"2026-07-10T02:24:33.710Z"} {"cache_key":"21fcea80ba79dba2a1054e4d2567aa536dfd6831687c1f8b26d1d3ad05f0f598","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"ko","translated":"유휴","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"22819af10750ef19169fe36a8407009f05cf6dd1fe192f47bba051e86bd2c1a9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"ko","translated":"\"{group}\" 그룹을 삭제하시겠습니까? 해당 세션은 그룹 없음으로 이동됩니다.","updated_at":"2026-07-06T23:40:54.646Z"} {"cache_key":"235d296175b4e7017813de465c22ed458957c8763f76e3b73a73deb34d5e5231","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"ko","translated":"세션 고정","updated_at":"2026-07-02T14:30:10.945Z"} -{"cache_key":"2479f2c3105df0157f3c22869fb245c0ec5b7072f23d79984e8e47a2b72b295e","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"ko","translated":"무음","updated_at":"2026-07-10T04:50:07.131Z"} +{"cache_key":"25da90a16327361bce321411181650b283e5d0351b055bca8a355152728a2cf1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"ko","translated":"{name}을(를) 활성화했습니다.","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"260bf5722c36b88c2abeeb1aa858e4008aaebd131572e8f71f1f8e7605eb13eb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"ko","translated":"오래됨","updated_at":"2026-06-17T14:14:15.283Z"} {"cache_key":"287c4a628650a78241412eeb369060aa4f8513ef2ae39a5a7ee2ee4e69e0f824","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"ko","translated":"준비됨 미할당","updated_at":"2026-06-17T14:14:20.553Z"} {"cache_key":"28ea4bde125ff4ed8c34c327f7887a175a0d6501160bfddf72d11d807087100a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"ko","translated":"그룹 없음","updated_at":"2026-07-05T14:39:46.951Z"} {"cache_key":"298ab7ffd43b3584deec362b1492ed5ee0287f9a3d1f1ee4e566883c2d2809b0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"ko","translated":"Codex 세션 요약","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"29d619da3a3117c2414ee474c54a0d92a6a6364d6c95a68294adf430cad97d88","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"ko","translated":"명령","updated_at":"2026-06-16T14:14:37.028Z"} {"cache_key":"2a6c598886904a42fb0c9e2d720ed550c2d722aead6fca26f54732013f9c12b6","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"ko","translated":"작업자 로그 {count}개","updated_at":"2026-05-30T15:38:20.918Z"} +{"cache_key":"2b68063e1c5da6e8cffd72e70f57dd3b7398df9226703c4e30210ceeb3384d8a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"ko","translated":"ClawHub에 “{query}”에 대한 결과가 없습니다.","updated_at":"2026-07-10T02:24:22.436Z"} {"cache_key":"2bcc1d9376048a3653ad27b6cfffecc3fc9cc7b3b9d10fe2f19076d36552c23e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"ko","translated":"세션 고정 해제","updated_at":"2026-07-02T14:30:10.945Z"} +{"cache_key":"2c3ea870dbfade5c491b6318971dc880fc0adc3ac4c06e5cc55277433c59da4d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"ko","translated":"에이전트에 추가 도구를 제공하려면 Model Context Protocol 서버를 연결하세요. 변경 사항은 새 에이전트 세션에 적용됩니다.","updated_at":"2026-07-10T02:24:30.377Z"} {"cache_key":"2cf3abe1ad6e16350d51fc43bf2919251fbed4aec44728527606d487ed1becb7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"ko","translated":"연결됨","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"2cf44483a3d8f51f3bf2cb871f88962df848eaebf9fce3f5a0d0c23cb97f633c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changed","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Changed","text_hash":"2a6141e43be0c2125e3b5d9f74b4ff1261a0b320ff927c83d4d9b1b65585bad7","tgt_lang":"ko","translated":"변경됨","updated_at":"2026-06-16T14:14:34.760Z"} {"cache_key":"2d2d2e19db269caeca65f2fb38d9b3bad6470cb78bc28ad8f3044ea1e02dc119","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"ko","translated":"Gateway 작업","updated_at":"2026-06-16T14:14:21.259Z"} +{"cache_key":"2d398935d81e81d92981f3e81662b33a823d7ec121bc49aa42af761042d77901","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"ko","translated":"설치된 플러그인 필터링","updated_at":"2026-07-10T02:24:26.351Z"} {"cache_key":"2d50f5d9b44d9abf6dc925e4af0d1212acb9f84a5052fb6e2b80978c1d47183e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"ko","translated":"{count}개 차단됨","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"2d7237d44831dff3698d2a1fd23359711ff127a9311fa156411831c9ecb7f5e0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"ko","translated":"워커 프로토콜","updated_at":"2026-06-16T14:14:21.259Z"} {"cache_key":"2d9034353b9ca09fdca8f1c7b7e5ac0b811ca90e07a857e11ebbd125c9c84fb4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"ko","translated":"세션","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"2da9991bea3757c75853e385852e7148cc55e60a474763aafab9b32d9eb3d8c4","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"ko","translated":"노드","updated_at":"2026-07-09T10:01:43.732Z"} +{"cache_key":"2e0951d3e46bd50a36dbee471addc695a479c453f6a3583f7c951bb57b3705e6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"ko","translated":"구성","updated_at":"2026-07-10T02:24:33.710Z"} +{"cache_key":"2e2e6f94341714f90b6739abd0f02f3b059d93c4784650e4410b9218f924e678","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"ko","translated":"정보","updated_at":"2026-07-10T09:47:02.734Z"} {"cache_key":"2e9120864871002ecd97c52e567ae68a4ac853832c4cf5e9afe60541ea26ec38","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"ko","translated":"최종 답변 후에도 해설 유지","updated_at":"2026-07-01T01:07:03.490Z"} +{"cache_key":"2eb8c5fd1c81676163855cb79afe753415952a0268201ec257aecf3e4f19533f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"ko","translated":"카테고리","updated_at":"2026-07-10T04:28:20.683Z"} {"cache_key":"2ebc9ec7f5279cb88fefee4ac4ed40d4e8443ac52f685d25798f9ff7b87866bf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"ko","translated":"조밀한 카드 밀도","updated_at":"2026-06-17T14:14:15.283Z"} +{"cache_key":"30ac01350b2880c826cd7a34065674bb77901a2b59458b9e653a897703455a3e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"ko","translated":"ClawHub에서","updated_at":"2026-07-10T04:28:20.683Z"} {"cache_key":"30f06eab41f8027eb5af2240933564f7569ea9101368a362aa8dd49043fa0e20","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewAll","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"All cards","text_hash":"2306120917506b5998ec702f3661068b102dac538ba4c9e4634d65fe33eea98a","tgt_lang":"ko","translated":"모든 카드","updated_at":"2026-06-17T14:14:15.283Z"} {"cache_key":"3185b58d9c305e7ea8830933f98dc679a5185831c373f5aa2410e806df460021","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"ko","translated":"워크보드 상태","updated_at":"2026-06-17T14:14:20.553Z"} {"cache_key":"31a345599a5a65a5586c922f6b51605bb3c79b04f33540e76898b13603bbc12e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"ko","translated":"카드 {count}개","updated_at":"2026-06-17T14:14:15.283Z"} +{"cache_key":"332f43227325eb375fb4546f1b7bcb5879d6fc1d1a72b121f8be3cf8d0e28fc6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"ko","translated":"업무 및 생산성","updated_at":"2026-07-10T05:22:09.580Z"} {"cache_key":"34893830cdf56a030ddd81e8125c32c65ed2390fcab828bff11cb294d0bef595","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"ko","translated":"보드: {board}","updated_at":"2026-06-16T14:14:21.259Z"} {"cache_key":"352128f281b72d2b4244ff426df9b51ff7422a78a6a5ff27edbb0973ce6dbaeb","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"ko","translated":"Codex 호스트","updated_at":"2026-07-09T10:01:43.732Z"} +{"cache_key":"35b138d89372d78ebfb6a37990102be8dbbc4aaf03f9eb0d688397e1188acb68","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"ko","translated":"이 플러그인을 제거하시겠습니까?","updated_at":"2026-07-10T02:24:33.710Z"} {"cache_key":"36642fea435e8cb9e2594aa3cd3c646b6a4b8383af03d24abf83794e0f52315f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"ko","translated":"메모 추가","updated_at":"2026-06-16T14:14:28.718Z"} +{"cache_key":"36775e687abe74fc24499ea10820fb6fc2e2f4988450468defd9b3645f57d01e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"ko","translated":"다시 시도","updated_at":"2026-07-10T02:24:22.436Z"} {"cache_key":"3680070c176a8f91d7c8fe75dc388520afd67cb27f280951174cd4e15f935858","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"ko","translated":"에이전트 및 도구","updated_at":"2026-07-09T08:07:54.348Z"} {"cache_key":"36cffb66fd3cc70c0abdb1c9de43e4e304cf45b81c8ea7bec8ba51e470fc0b99","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"ko","translated":"세션을 그룹으로 이동","updated_at":"2026-07-05T14:39:46.951Z"} {"cache_key":"36fd0e098497172021154a474807c291a190d2fc4589f446422d3c03fd3d785c","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"ko","translated":"대기 중이거나 실행 중인 백그라운드 작업입니다.","updated_at":"2026-07-09T21:53:16.037Z"} +{"cache_key":"373d36e08cf9ff7f2334cec841ac41c0e0b6108d4b8bea91ab2825d41e45b248","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"ko","translated":"탐색 전용입니다. 이 Gateway에서는 플러그인 변경을 허용하지 않습니다.","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"384e339bf019781b259b8c8d095d50d8b32aee09a9605b761f7fef5a84ef064f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"ko","translated":"구성된 기본 에이전트에 명시적으로 할당된 카드입니다.","updated_at":"2026-06-17T14:14:15.283Z"} {"cache_key":"388f902a7292cbe553797fcff228230dbb8bed2141a773f0a3d32fa22996be7a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"ko","translated":"준비됨","updated_at":"2026-06-17T14:14:15.283Z"} +{"cache_key":"38a832acf7b6ebf6898677df5f16fd5c1ce8f44c9219fc08700da866349d3c51","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"ko","translated":"인기 서비스에 대한 원클릭 MCP 커넥터와 엄선된 ClawHub 검색입니다.","updated_at":"2026-07-10T02:24:26.351Z"} +{"cache_key":"39372806274931caa07111c2a1bd7b446655f9c337e0ad708cd061ae990b3acd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"ko","translated":"작업 공간","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"3a27828044338a04e1df34114f27a9350aa0d7e85395feba8a8468c033063f97","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"ko","translated":"모든 세션","updated_at":"2026-07-03T07:37:26.106Z"} {"cache_key":"3ae490b3cd8ba5c2b802ba168c5c0a4ecbf9e0a8253da30e582ff03d6aabf5de","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"ko","translated":"사용할 수 없는 호스트: {count}개. 다른 호스트는 계속 사용할 수 있습니다.","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"3c1c1c072138642c04783944ed4b2fbcdb4485fa59fcabf7f56e38fc427d9cab","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"ko","translated":"아직 운영자 메모가 없습니다.","updated_at":"2026-06-16T14:14:28.718Z"} @@ -80,22 +114,32 @@ {"cache_key":"3df9834b655d8276c3575841d83e4a0cbad6467339f5e7145508c2ac1b01f686","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"ko","translated":"없음","updated_at":"2026-07-05T14:39:46.951Z"} {"cache_key":"3e440e5751a0fefd4340ffeaf74e157a95842c4cc2f8b7629f6a66b83c75d5f9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"ko","translated":"Gateway나 페어링된 컴퓨터에서 Codex 세션 공유를 활성화한 후 이 화면을 새로고침하세요.","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"3ef4c06424d7999f3bb9ca28ae4c20323a63450291f4ec036f6b1ff53839245f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"ko","translated":"증빙 없음","updated_at":"2026-06-17T14:14:15.283Z"} -{"cache_key":"3ef8c4389f738a5527632abafd796ef1102abb46c338de72e5e05f9c503b08da","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"ko","translated":"아래쪽에 고정","updated_at":"2026-07-10T06:08:07.604Z"} {"cache_key":"3fb5cb054f5bfd534401226548dd95a844bd8d8a727333e3c97cbd95b80b9e7e","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"ko","translated":"입력 토큰 {count}개","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"40cf00dbe8acbf47ed51ca38f75ecb2f0ff2c778d58aebbb841d9a6372f08739","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"ko","translated":"마이크 입력이 사용 중이거나 브라우저에서 사용할 수 없습니다.","updated_at":"2026-07-06T17:56:26.773Z"} +{"cache_key":"410f588d81f318925fea28a11b1fb1768ea2dae6807a70e936a6ff6664e0b6c0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"ko","translated":"제거 중…","updated_at":"2026-07-10T02:24:33.710Z"} {"cache_key":"41a3eac32995c64dbf9d41bd42fcc4d98569e569f43d9e1d7be0becbf32a0bb1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"ko","translated":"하트비트 {age}","updated_at":"2026-06-17T14:14:20.553Z"} {"cache_key":"439247c83d8c50efd0e59dc9e69543ae5fe45e374a4adeb2f67b0383d11454f9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"ko","translated":"실행 중","updated_at":"2026-06-17T14:14:15.283Z"} {"cache_key":"43ebbefd80f1dae10f4d9602e1c477b9da360b14d86bf4b2f0cc973c8371c398","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"ko","translated":"실행","updated_at":"2026-06-16T14:14:21.259Z"} +{"cache_key":"452263f1563f783bce10d18b0e70fb3a5c697feb665c5c1dd4a7e0f031e34602","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"ko","translated":"탐색 전용입니다. 플러그인 변경에는 operator.admin 액세스 권한이 필요합니다.","updated_at":"2026-07-10T02:24:37.635Z"} +{"cache_key":"4527f074f13178ea11ee8a61a839a55c98b5bccceefa90cfb7456e968f066a78","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"ko","translated":"원클릭 MCP 서버","updated_at":"2026-07-10T02:24:26.351Z"} {"cache_key":"4598528b9d9c0ab628fadf4a3e0a78896739f3049622db4c114fdcc4009c5732","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"ko","translated":"경로 복사","updated_at":"2026-06-16T14:14:37.028Z"} +{"cache_key":"45c7f0494f4879c709c1d956f2227daa18888e450ac8e3aea03666e9075b29d4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"ko","translated":"소스","updated_at":"2026-07-10T04:28:20.683Z"} {"cache_key":"47d7c4ecb4dcb51a880bd1f661a7cef487d55fd548ba90226659e5f3a6367a2f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"ko","translated":"마이크 {number}","updated_at":"2026-07-06T17:56:26.773Z"} {"cache_key":"48753d340f47626b66f16527b9d2460b7cd2c7d0b20cb70f314911eef5258cd9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"ko","translated":"Gateway","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"48ad35e1ecbe73c6deefa04d1a63900b4c84e38911484fccb62bcd65dd94dfe7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"ko","translated":"{agent} (구성되지 않음)","updated_at":"2026-06-17T14:14:15.283Z"} {"cache_key":"49005243a4083ee1235799c36184140be056210258e2742a500c9a66eb955f26","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"ko","translated":"마이크 입력","updated_at":"2026-07-06T17:33:43.488Z"} +{"cache_key":"499633d78a3c628e6b74d470a5c26dca4e50278f3d6d543b81701a2f261cb09e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"ko","translated":"플러그인 카탈로그","updated_at":"2026-07-10T02:24:22.436Z"} +{"cache_key":"49ea8c3d94607526f500919923001713a80f4b51ad2638699095f661c63ed0bd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"ko","translated":"MCP 서버 {name}을(를) 제거했습니다.","updated_at":"2026-07-10T02:24:30.377Z"} +{"cache_key":"4a796e0b8bbefe8b238dbc14cae25eb90e87e5ccc995e8d14436fbde82466ba5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"ko","translated":"채널","updated_at":"2026-07-10T02:24:30.377Z"} {"cache_key":"4ad7ddc02ec8662de8751d24ec18dad2696d0fa347a00f44e7c10008799bd7c2","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"ko","translated":"최근 완료, 실패 및 취소된 작업입니다.","updated_at":"2026-07-09T21:53:16.037Z"} {"cache_key":"4b02935566746ccc236ea89134b31a018609e0fb2ca2985c83892c3551583fdd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"ko","translated":"오래됨","updated_at":"2026-06-17T14:14:20.553Z"} {"cache_key":"4b30c5c56acb25c6cd29b3540a30f50d2c2c9da779a799e0a3b5bd962f9e9b15","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"ko","translated":"격리된 에이전트 작업 체크아웃 및 복구 스냅샷입니다.","updated_at":"2026-07-05T21:00:52.598Z"} {"cache_key":"4b56136acb38f1cf85f5df9d7f9fb9702c78387a383efd0a6c487f7030917248","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"ko","translated":"비용 카테고리","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"4c7f5e90bbbf8744bda4f12e0b52a1e8573b958dff06ebe9be8122aa5d1379f6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"ko","translated":"사용 설정됨","updated_at":"2026-07-10T02:24:33.710Z"} {"cache_key":"4c915e4d6b0f0b2f5da607a301bba3e12fe20a097f3061003fa0c3a88eda140b","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"ko","translated":"세션 정렬","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"4c9b06bdd7ed7ddd6c50d34e42a34ccdd70be1faee6bc42d9f2f7a68a4e79a51","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"ko","translated":"홈 및 미디어","updated_at":"2026-07-10T05:22:09.580Z"} +{"cache_key":"4d588eba2e6be614ae773b1b1bee8f74363c676aaa0076bde1b7a609a155fefc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"ko","translated":"{name}을(를) 추가했습니다. “{command}”로 인증한 다음 gateway를 다시 시작하세요.","updated_at":"2026-07-10T02:24:26.351Z"} +{"cache_key":"4d628f9ae54d742e55b29e74b3a0e05b7a356e0daac76e0678e94cc9530121f7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"ko","translated":"코딩 및 인프라","updated_at":"2026-07-10T05:22:09.580Z"} {"cache_key":"4f09f1e54bd818f714436414260500d61352861a8d2c0455ae57bdd9b4c73c15","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"ko","translated":"마이크를 불러오는 중…","updated_at":"2026-07-06T17:33:43.488Z"} {"cache_key":"4f71b57192e3769166ee8e5e70d9e041e08de98ff0583319ba645ff755486224","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"ko","translated":"기본 에이전트","updated_at":"2026-06-17T14:14:15.283Z"} {"cache_key":"50cdc24b1d53cce7d0bd83246728b371b91de9dc4f2291a8655f7ece66a36aa7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"ko","translated":"상위 폴더","updated_at":"2026-06-16T14:14:34.760Z"} @@ -107,16 +151,19 @@ {"cache_key":"537780f08d7b50c843c55e01e211ea8bdef2dd06078cfc262ee3642f0391b5ac","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"ko","translated":"수정 요청을 제안의 워크숍 세션 대신 현재 채팅 세션으로 보냅니다.","updated_at":"2026-06-16T14:14:21.259Z"} {"cache_key":"5421cb10943d8f506dae7f617c0f3880ae8162748de416ba11b1f1e47712c628","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"ko","translated":"오케스트레이션","updated_at":"2026-05-30T15:38:20.918Z"} {"cache_key":"54818dc34079ed462b210eeee12432a57b9a4f3c2492dcb8d147a30a21f66801","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"ko","translated":"고급 Talk 설정에는 operator.admin 권한이 필요합니다.","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"54b01dd4a93781323d571287d1578c4226a58d3a7d460ad37958270b4e3bd306","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"ko","translated":"추천","updated_at":"2026-07-10T02:24:22.436Z"} {"cache_key":"55366f3c8534b9ddc6cefd9f4a30e88b462354dad87aca143189a999cab62be3","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"ko","translated":"{name}의 스냅샷을 만들고 삭제할까요?","updated_at":"2026-07-05T21:00:52.598Z"} {"cache_key":"57d459d75aeddd6184e294be80cbb152766edac0fa70931964d03abad9a2fbd2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"ko","translated":"높음","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"596ba1f4740ff211af7f1f65132e1cca55b99e45cf46c3a355f0324a0d80ca7d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"ko","translated":"Skills: {skills}","updated_at":"2026-06-16T14:14:21.259Z"} +{"cache_key":"598035e7b7f77545c9f7344f6035b30019ba4478529ce3b88f517a5bb2d1bcd6","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"ko","translated":"플러그인","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"59a1ad27142a6fa498d4447c2f552ea94a61de6e8cfb9a9b5a5b2e02d86b1a29","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"ko","translated":"이름","updated_at":"2026-07-05T21:00:52.598Z"} -{"cache_key":"59dfc0db50edec2df8f7d08aea91cdef9b4de0332be3933ae45167dd98ad1fd0","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"ko","translated":"바닷가재 소리","updated_at":"2026-07-10T04:50:07.131Z"} {"cache_key":"5af86a1de55c58d1ccd083396ee5e267bbfe6b859c1a8a02bc1ab59cbaddd91d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityLow","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Low","text_hash":"f793de205ead5ac302c4a1627829dea41f176b1068b993a32373fc869918374b","tgt_lang":"ko","translated":"낮음","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"5c921f6cd7c85c8c7f5dc097a38e884e8c18926d0c1334ebbf6c26c21cf40601","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"ko","translated":"{count}개의 종속성이 완료되었습니다.","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"5d30d6da661549f8cd7bce299eb4d6a724a005621e3f606975cab5a4e17d6a97","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"ko","translated":"이 페이지가 비활성 상태인 동안에는 마이크 입력을 사용할 수 없습니다.","updated_at":"2026-07-06T17:56:26.773Z"} {"cache_key":"5d938a86e9f88b2ce3c8029aba8596b837f0321efd17f9574da37836c108e9fb","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"ko","translated":"호스트","updated_at":"2026-07-09T10:01:43.732Z"} +{"cache_key":"5eec7ee1c6938026f2fafd3bf2c8d1304a7e45d380af41b6d3c440c1aebd1284","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"ko","translated":"확인 필요","updated_at":"2026-07-10T02:24:26.351Z"} {"cache_key":"5fae57cc0a889debcaa6162bd3a15d410e5085db0931c2c9adcd2709633a0bc0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"ko","translated":"세션 작업 공간","updated_at":"2026-06-16T14:14:28.718Z"} +{"cache_key":"61e41373a7d1e82d345b8d724167e0bc21b9f6d6908cf4066808cc99db67d698","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"ko","translated":"아직 구성된 MCP 서버가 없습니다. 여기에서 추가하거나 Discover에서 커넥터를 선택하세요.","updated_at":"2026-07-10T02:24:30.377Z"} {"cache_key":"61ec0bc0cfab27d4f52c9cfd23752496a4d90f6d870ae3c708468f33e5c8c71c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"ko","translated":"세션 작업 공간 로드 중…","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"640dab66691a337cf858fd541bce6e0bbe462d7ef72206157571943ee8c42d3b","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"ko","translated":"시스템","updated_at":"2026-07-09T08:07:54.348Z"} {"cache_key":"654a4fbf6a33ed0c988ae0f0a7d856cdcd12ad4786c27305aefb0f802a4783ba","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"ko","translated":"작업 공간","updated_at":"2026-06-16T14:14:28.718Z"} @@ -128,13 +175,18 @@ {"cache_key":"6661a8580f033e530995fca7fa9a21141d4c43f499c3bac4b5bcde8e4f085a50","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"ko","translated":"목표 메모","updated_at":"2026-05-29T21:00:36.520Z"} {"cache_key":"6719ecb96c12dc8c13a5d1ca977c7d5cb5d5951617052df9c9d6e5197fc95ad1","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropOpenHere","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Open here","text_hash":"b08e2fd2e872adcb575b305187b9db8482369325806953ce80190fc2dc1ab9fb","tgt_lang":"ko","translated":"여기에서 열기","updated_at":"2026-07-06T22:56:22.479Z"} {"cache_key":"674d4a8c53b674add3ec037f25599f1f6d9447de20dae0ad5c46309f2bb1d801","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"ko","translated":"사이드바에서 열기","updated_at":"2026-07-09T11:02:47.260Z"} +{"cache_key":"69144e4eac59ff66dbc4e09ec7fab293e454de0025c1e380a4b5dfc702c07a05","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"ko","translated":"이름","updated_at":"2026-07-05T21:00:52.598Z"} {"cache_key":"696d861bfac8358a9de4a213c457761ac32ab99f42e6f44dd1b2f40f6390174a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"ko","translated":"세부 정보 보기","updated_at":"2026-06-16T14:14:21.259Z"} {"cache_key":"6a193ce4ec600f885129c71387c5f620191e131ec3538e642cfc954cfe9ba867","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"ko","translated":"세션 제목 검색","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"6a3e291885d700c68ed23e57b1d77a80ebe7034566fc083eec30668c58a69f23","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"ko","translated":"오프라인","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"6aa0c48e467ffeeeb2f4c2c5ebde0c38d70f49d779a73c2e0b8b72b74b7d87c2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"ko","translated":"사용자 지정 그룹","updated_at":"2026-07-05T14:39:46.951Z"} +{"cache_key":"6b3709b83b25064aecff68ebc6f26a0376aaf256e6068b502f40ae9a54ae5704","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"ko","translated":"코드 플러그인","updated_at":"2026-07-10T02:24:33.710Z"} +{"cache_key":"6c180df6e731785541dd710679f6c1386f0666db33f3ea44a6a099280d104384","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"ko","translated":"{name}을(를) 활성화했습니다. 변경 사항을 적용하려면 Gateway를 다시 시작해야 합니다.","updated_at":"2026-07-10T02:24:37.635Z"} +{"cache_key":"6c1f4bdf3b9e73c3feeef15db68abd4fc18f2e8bdcebacf310c2b3f4a98529c5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"ko","translated":"사용 가능","updated_at":"2026-07-10T02:24:33.710Z"} {"cache_key":"6c2c490ea3016befc0d5e801018f9149b0fe3b7e32e4016b60c0d3b6d3858b94","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"ko","translated":"새로 고침 실패","updated_at":"2026-06-17T14:14:20.553Z"} {"cache_key":"6c3dad2e8e5c699a70510fbe20f8ffe95e9be31e1aaa4a5c6fafdf5bc744cf2e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"ko","translated":"활동 없음","updated_at":"2026-07-05T14:39:46.951Z"} {"cache_key":"6c62aedf9dd62ed196939ed6e378abcf9ae48d3b0c93ba6f4d6e4b51d3c360b8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"ko","translated":"{group}의 그룹 옵션","updated_at":"2026-07-06T23:40:54.646Z"} +{"cache_key":"6d8d70c562a96612368d4d22250d91d83a467d932077c7d2e2b02e91a81fb3dd","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"ko","translated":"버전","updated_at":"2026-07-10T09:47:02.734Z"} {"cache_key":"6f693f0f565677639f0d9ee2d890fdc3fa6b8bf362856e467054bdd89326d023","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"ko","translated":"고급 설정에는 관리자 권한이 필요합니다","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"700959a290ccc2935eb2574af4b772e98dc8276a0d57d4a0261bebde2b48654d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"ko","translated":"음성","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"7040c46ba452a9c4dc32ea59c9a5c7732e6b47923e105b18a8e97581ab1cf47b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"ko","translated":"활성","updated_at":"2026-07-09T10:01:43.732Z"} @@ -142,14 +194,21 @@ {"cache_key":"70c73aa2eb02fb0dce3c3e15cc57e7f4bab18baddbf5f2ea8423028aa5d2a115","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"ko","translated":"도구 오류","updated_at":"2026-05-31T06:43:54.853Z"} {"cache_key":"73504bfee80142c1038762a536714e38c2278a217cebdd5933837bb13d689126","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"ko","translated":"테넌트: {tenant}","updated_at":"2026-06-16T14:14:21.259Z"} {"cache_key":"73d00eb3dff756cd121973420f44ed1f2884d1e978baed906d97b29bfa21c12d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"ko","translated":"채팅 열기","updated_at":"2026-07-09T08:27:16.824Z"} +{"cache_key":"74659363890c4140bbd3fed4d7cf936d64aa17b2e682bc541d1b456167c1d9bc","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"ko","translated":"전체 커밋 해시 복사","updated_at":"2026-07-10T09:47:02.734Z"} +{"cache_key":"764ca837c758643e3a76ee27cea3af4009f965a3b29bbe903f55f866e374a99a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"ko","translated":"추천 플러그인을 살펴보거나 ClawHub를 검색해 OpenClaw를 확장하세요.","updated_at":"2026-07-10T02:24:26.351Z"} {"cache_key":"76ac3074a0c4f3bfad8af10027638e4c8b1f41c75736588a26a48e8009a77a69","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"ko","translated":"{count}개 아티팩트","updated_at":"2026-06-16T14:14:34.761Z"} +{"cache_key":"787daf20fa19bb5b319281b3cc3b60bcbe2c0399b7a2a829072811c1ec98767d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"ko","translated":"MCP 설정","updated_at":"2026-07-10T02:24:30.377Z"} +{"cache_key":"788786b732b639c9b2a0c6de1e38664693da4942448948f8153f818da66d9ded","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"ko","translated":"추가","updated_at":"2026-07-10T02:24:26.351Z"} +{"cache_key":"78e3486854778b5171e5b2ff93066100a28ac66c3abfd2f0b00a2c30fbe92246","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"ko","translated":"서버 추가","updated_at":"2026-07-10T02:24:30.377Z"} +{"cache_key":"790b085b9a8d62b11f48eadca3ad0994a62fcba543be9baca39f0f21c7098490","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"ko","translated":"{name}을(를) 추가했습니다. 사용하기 전에 MCP 설정에서 엔드포인트와 자격 증명을 업데이트하세요.","updated_at":"2026-07-10T02:24:26.351Z"} {"cache_key":"794e82ed255c6f138594d38d7285d32caad740374150303b0cc55f1a06aa236f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"ko","translated":"컨텍스트 사용량 세부 정보 열기","updated_at":"2026-07-05T10:16:07.195Z"} {"cache_key":"7a5bb77efc011117a68833483bf8ab7f8e6e0989859803ffbd27d6fdf5b171a5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"ko","translated":"고정됨","updated_at":"2026-07-02T14:30:10.945Z"} {"cache_key":"7c0c95addbc7d588230dceb07e672e22eb9f511022bbc3ea63e3105d92d056a4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"ko","translated":"파일 검색","updated_at":"2026-06-16T14:14:34.760Z"} -{"cache_key":"7c1b5b221bc12f94cc2c1fbb99b60994bd82f12310176a3f5922bb08bc290508","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"ko","translated":"터치하면 작은 뽀글 소리","updated_at":"2026-07-10T04:50:07.131Z"} +{"cache_key":"7c32f23fdb53dfa50c818663f8a02dc1e915a65dced2b271a3f59313ce989193","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"ko","translated":"패키지","updated_at":"2026-07-10T04:28:20.683Z"} {"cache_key":"7c4ba340b2e94e60f90957246d40e0dc0ae54925059976dd1b2e7785487e6a95","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"ko","translated":"상태","updated_at":"2026-07-05T21:00:52.598Z"} {"cache_key":"7c9c0a168959df7b7060da6fb68fd7dbd7b6aaadc2870fe83bf5035b08862ebb","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"ko","translated":"출력 토큰 {count}개","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"7d0f49c18bbfb7dd9ffa76d04aa375467bb4a2f588ef5702e81eefdf825c7654","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"ko","translated":"끔","updated_at":"2026-06-17T14:14:15.283Z"} +{"cache_key":"7e01b4f5e0a1ad3d91212715becfc08c84e0a6d718cb97c204f67f6bcdab588f","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"ko","translated":"연결된 Gateway 버전","updated_at":"2026-07-10T09:47:02.735Z"} {"cache_key":"7e47068bfc1eab31be0614d92373bd00ce9e376d26d908b8f30155a5e51a773b","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"ko","translated":"오늘","updated_at":"2026-07-05T14:39:46.951Z"} {"cache_key":"7e86df8b367e10c959319164715314b4919bd4144ced20872e22684892fb0fa5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"ko","translated":"Talk 오류 닫기","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"80a3e8e45b072028cb747b03dc63ad1275a113ba5d8ad1b98608b45a7d3a5eb5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"ko","translated":"그룹 삭제…","updated_at":"2026-07-06T23:40:54.646Z"} @@ -158,29 +217,46 @@ {"cache_key":"81596ae54cb1ae27654b725d32f0a6611c64fbd4f392ee00c16dcfb350bb0956","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"ko","translated":"운영자 메모","updated_at":"2026-06-16T14:14:21.259Z"} {"cache_key":"82fedf5fb8b0bf01b3bfea578ab491695a11299b50858131164cfb6c3d7bfffb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"ko","translated":"검토","updated_at":"2026-06-17T14:14:15.283Z"} {"cache_key":"837097a08b674bd77d8003fbb462fb5ad093c4603df57397f15a69f52147abb9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"ko","translated":"세션","updated_at":"2026-07-09T10:01:43.732Z"} +{"cache_key":"846b1626feb997ad588131ce6f33149b3ff5feb1f11bc75e1e3a30dc48ba0262","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"ko","translated":"추가 중…","updated_at":"2026-07-10T02:24:30.377Z"} {"cache_key":"86a46448b64065bf73ea2043d995e6de4bd8f0df2b2eeb01e92c611840c3599f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"ko","translated":"{count}시간","updated_at":"2026-06-17T14:14:20.553Z"} -{"cache_key":"86ed2c51a4249322924dce948e85e2c3a8d9a0f31eebdba6ba689bead7464fbb","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"ko","translated":"오른쪽에 고정","updated_at":"2026-07-10T06:08:07.604Z"} {"cache_key":"87231464a4f7f529e29df495e3474303e551f936353bfb9d85b09a29eb3b7ec0","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"ko","translated":"실시간 음성 입력을 사용하려면 브라우저 마이크 접근 권한이 필요합니다.","updated_at":"2026-07-06T22:42:03.618Z"} +{"cache_key":"8739c8f9e353233f43cb462f711cacccee048464af519e98bec114e44fbf6496","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"ko","translated":"설치됨","updated_at":"2026-07-10T02:24:26.351Z"} +{"cache_key":"885062cc8a7548fb2c133ce621481e59047ca1ec8480447efeb1b74d2405a5a8","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"ko","translated":"플러그인","updated_at":"2026-07-10T02:24:22.436Z"} +{"cache_key":"89648044a4c6572517a8502ce8b23cef0eade8572d51bf9777bd55d735f85b8b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"ko","translated":"ClawHub에서 찾기","updated_at":"2026-07-10T02:24:26.351Z"} {"cache_key":"8a64939812ef9743b614d9d6ddf6405105d6c33a5fad4710cbaa9453faeea4a6","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"ko","translated":"복원 가능","updated_at":"2026-07-05T21:00:52.598Z"} {"cache_key":"8adb022602b60fe51b7160c9f6fa84711264cad65026537e6db9036af064e8c9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"ko","translated":"Codex 호스트가 없습니다","updated_at":"2026-07-09T10:01:43.732Z"} +{"cache_key":"8ae0f15dbc7faa9ad1afc510dcf14890fe87b83e209dbb86697a8144b6651ec1","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"ko","translated":"새로고침","updated_at":"2026-07-09T10:01:43.732Z"} +{"cache_key":"8be563e258e8a9996bea09aecd1795921ff5a725014541e5ef0058c7efba5a35","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"ko","translated":"서버 이름에는 문자, 숫자, 점, 대시 또는 밑줄을 사용할 수 있습니다.","updated_at":"2026-07-10T02:24:30.377Z"} {"cache_key":"8c70a1c403d8720e0ce90557d0f345d2bd29e1bf25798fc2841603a3a4b0d67a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"ko","translated":"제목 없는 Codex 세션","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"8e1d53f0d71f07c4fa24eabde3f4b05273017e34371fa6a4a1d00a1a136c0a19","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"ko","translated":"마이크 입력을 찾을 수 없습니다.","updated_at":"2026-07-06T17:56:26.773Z"} {"cache_key":"8e4ca08ecdd9e2dd1ef90609c5decd53a63fc985717fc2bf8d91434e5f1ce352","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"ko","translated":"일일 제공업체 비용","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"8ec1fbd455f3b866e0719f8f105908d7c3785ef90a90278468176fdc29b37b85","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"ko","translated":"MCP 서버 {name}을(를) 추가했습니다.","updated_at":"2026-07-10T02:24:30.377Z"} {"cache_key":"908914240295f91336359e10e1a8939fddbdc88059d0728d12b72e3edacc0adc","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"ko","translated":"Codex 세션을 불러오는 중…","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"9133c41ace00d2ec8da74bbeaf9e0b06ebbc47c9c03b9d88c2c6f09ea16d3ab1","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"ko","translated":"에이전트","updated_at":"2026-07-05T14:39:46.951Z"} +{"cache_key":"9248d8cdb5bc152ea6f37e981be1c98d0590cc24c7a15dab718d23f55ca6acc5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"ko","translated":"검색 준비 중…","updated_at":"2026-07-10T02:24:22.436Z"} {"cache_key":"9290ac83e3ae6b6883d885401124314445aed79569372502b0709eca77fe154c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"ko","translated":"실패한 시도","updated_at":"2026-06-17T14:14:20.553Z"} {"cache_key":"92fe7680f04605729befec53bcb0bb922063f313065346abf29080a0f10e11b0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"ko","translated":"온라인","updated_at":"2026-07-09T10:01:43.732Z"} +{"cache_key":"94e3e52a76a9dff7031ed80864c6745314912a97152b7fac8973d3177c0d0585","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"ko","translated":"공식","updated_at":"2026-07-10T02:24:33.710Z"} {"cache_key":"9552a0d9383ae97c90224059d0e2b19e843bdaee8a3b64bd045eff238a5e3593","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"ko","translated":"어제","updated_at":"2026-07-05T14:39:46.951Z"} +{"cache_key":"95ad35f74a9435fb2433fa2166e64dab49ec016f59b2bb33c5a2d6727a9a5b6a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"ko","translated":"사용할 수 없음","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"95cf281d9e2591cc5f9814d30b202b44b81c1b30a554b9d30b70fcb75b39d190","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"ko","translated":"링크 복사","updated_at":"2026-07-09T11:02:47.260Z"} {"cache_key":"96548f5481114d8529b125e0ac5f199e247a3666d202ffae60212ee7cd490eb6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"ko","translated":"워커 로그","updated_at":"2026-06-16T14:14:21.259Z"} +{"cache_key":"978fc1096bdd35bdc8071f66c5022639fc3ff494e1e9dfc25a4521667e738ebb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"ko","translated":"플러그인 번들","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"9825bc0134df5ab13edfaf2d38c1f866da7a97400dfcd3ea8c4eeaa8359b018b","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"ko","translated":"마지막 업데이트","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"983f7834646732092782041cf2cb5dd9f285eb5fd461e60c5979a41592cad637","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"ko","translated":"링크 작업","updated_at":"2026-07-09T11:02:47.260Z"} +{"cache_key":"98668113fb529fb58e4c2a340bb16a1a9a8096bcc0278887766a929ad476429e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"ko","translated":"다른 검색어를 시도해 보세요.","updated_at":"2026-07-10T02:24:26.351Z"} {"cache_key":"98dcc03b3bdc8ec5d1a9e45f9a45183edcd7405cbd9e7de3bd2863168f0113a7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"ko","translated":"이 호스트에 활성 세션이 없습니다.","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"9987b8273f7aeb4082b39d15139cb16c0719a8908419e9c51a8e50db237cc252","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"ko","translated":"수정 요청에 현재 채팅 사용","updated_at":"2026-06-16T14:14:21.259Z"} {"cache_key":"999d7122e59bb97f24a1dd8aee5370010f63ce24c58cb54530da499144316027","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"ko","translated":"가끔 들릅니다","updated_at":"2026-07-09T20:51:31.206Z"} +{"cache_key":"99caac4f98eb8976e7d8d3aa8e5db0603b544340fcdb4862f902500633d6eb50","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"ko","translated":"{name} 설치","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"9a1d9909fe9457fb1acb69d7103e817a94b55a55014364e75225bf4298bae5a9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"ko","translated":"보기, 검색, 우선순위, 에이전트 또는 보관 필터를 변경하세요.","updated_at":"2026-06-17T14:14:20.553Z"} +{"cache_key":"9a4a29ddc1f275e38b71ef623b3febdc674203a35b554eff62d3e47f00b54b40","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"ko","translated":"빌드됨","updated_at":"2026-07-10T09:47:02.734Z"} {"cache_key":"9a4c95ea022d16764991f6b7e02030c3c0e8e26b1343317f17922238f3b65a7f","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"ko","translated":"worktree에서 새 채팅","updated_at":"2026-07-06T04:56:07.420Z"} +{"cache_key":"9aafe5de6ff7d792a31887b4d571cd35b5e8a046522cdfb84a22a9a36f118960","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"ko","translated":"플러그인 검색","updated_at":"2026-07-10T02:24:22.436Z"} +{"cache_key":"9ae413ba415f82ea0462a71f4941efca0ae161cfe55a9bf0a815164fae275ba0","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"ko","translated":"Control UI 빌드 세부 정보","updated_at":"2026-07-10T09:47:02.734Z"} +{"cache_key":"9b3e24cbd4e3a064cf4104f8bf7c32211159c2c0de3cb6fea4ebdd3b34762cda","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"ko","translated":"설치된 선택적 플러그인이 없습니다","updated_at":"2026-07-10T02:24:26.351Z"} {"cache_key":"9bff5da09046ee33b7b7ccde99d9d3f6ec5dbf16a24110ee57eb22dc9bc3c86f","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"ko","translated":"스냅샷 실패: {error}\n\n스냅샷 없이 삭제할까요?","updated_at":"2026-07-05T21:00:52.598Z"} +{"cache_key":"9c296de11ea2e70fa8b47d9d6e0a013319d17758675073692267d4899de7bcf3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"ko","translated":"문제","updated_at":"2026-07-10T02:24:26.351Z"} {"cache_key":"9e37919f47b0fd7686333724b9c6752e01084d7100d3780f7e55ba21b0116491","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"ko","translated":"일치하는 파일이 없습니다.","updated_at":"2026-06-16T14:14:34.760Z"} {"cache_key":"9fbff69c47571882606417ebd9d78f0680c342c55ecfbd85374bada4818b61c5","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"ko","translated":"최근 실행 토큰","updated_at":"2026-07-05T10:16:07.195Z"} {"cache_key":"9fc1f415bd3944676e1507c0afba7f6566b0ea0edd206bba11a23528c721790d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"ko","translated":"민감도","updated_at":"2026-07-06T20:20:02.809Z"} @@ -189,19 +265,26 @@ {"cache_key":"a14573e5c40022ee26a15d6733f9114e695b4fca59c18d7596be0c5d62ea3ea5","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"ko","translated":"앱으로 돌아가기","updated_at":"2026-07-09T08:07:54.348Z"} {"cache_key":"a173ac1bbceb2d4b1c41f2ac06b6a0c133d1c03886f5c98f921a0484e846c835","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"ko","translated":"7일","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"a215ef7995320310317b581f7fa05e7c06818e3eda54019088e05efef4ee1f60","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"ko","translated":"세션 목록을 불러올 수 없음","updated_at":"2026-07-09T10:01:43.732Z"} -{"cache_key":"a3ef1e870ae7c1bf9f77a58532d420ea17848a6a1b5d1a1ef47c1c09ccfb803d","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"ko","translated":"Lobsterdex","updated_at":"2026-07-09T23:55:51.543Z"} +{"cache_key":"a35e45edef253060efd003dc07d7abddf98c95c8087054898e8365f39530f7d4","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"ko","translated":"커밋","updated_at":"2026-07-10T09:47:02.734Z"} +{"cache_key":"a37253f857ff0b0627b019bf548e10d94885e36e03c70b018926f840601def47","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"ko","translated":"활성 Gateway 연결에서 보고됨; 이 Control UI 빌드와는 별개입니다.","updated_at":"2026-07-10T09:47:02.735Z"} {"cache_key":"a49cb382a4016c3162c9f00d9f74d29f9e0789eadbbba2860bbaca8d112068fa","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"ko","translated":"지금 정리","updated_at":"2026-07-05T21:00:52.598Z"} {"cache_key":"a4b7d06a64a666e57f017a86d2fa9d4ef14255e292091dbaac474ed319a495bd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"ko","translated":"증빙 누락","updated_at":"2026-06-17T14:14:20.553Z"} +{"cache_key":"a52de763421971dda2cd796847bd90ddfd5379b7498e0668263e27670092c0a1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"ko","translated":"모델 제공업체","updated_at":"2026-07-10T02:24:30.377Z"} {"cache_key":"a54853ef1243668b494e73b30d7c64728ac51e7b90681b55b366d7c93a0c3a76","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"ko","translated":"자동 새로 고침","updated_at":"2026-06-17T14:14:15.283Z"} {"cache_key":"a6ec4eb3485f93ebb7a3a1fe8e52ddb6a00236662c02e0a4815131ccc5cc8c61","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"ko","translated":"그룹 이름 변경…","updated_at":"2026-07-06T23:40:54.646Z"} {"cache_key":"a7ca50cbf594365176f76a711765e51b9006efb5c32d3b4387e2cee70094b19f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"ko","translated":"세션 컨텍스트 사용량: {limit} 중 {used} ({pct}%)","updated_at":"2026-07-05T10:16:07.195Z"} {"cache_key":"a87058bc79636bdb9c698ba1e25e37170fb3c34c3eca5a4c630e506e81a92afc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"ko","translated":"업데이트됨: {time}","updated_at":"2026-06-16T14:14:21.259Z"} {"cache_key":"a8a7308e05852ab7356904e97b3a8ebbbbcb688e05b6c44a4dde2428f0fd8874","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"ko","translated":"바닷가재 방문","updated_at":"2026-07-09T20:51:31.206Z"} +{"cache_key":"a9fa03163e6cd19ee35087f34e221fc24d56461b4400a7197f62bad5a95d601f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"ko","translated":"위험을 확인하고 설치","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"a9fe231b8437873d76a981e492c4c1297ff4a24bf8c09d2f618db0942a1da132","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"ko","translated":"새 그룹 이름","updated_at":"2026-07-05T14:39:46.951Z"} +{"cache_key":"aa1e0a102fce218df77b63d9d48a42e2b7e37d565786092bebe9dc5a1e0435fe","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"ko","translated":"인증된 출처","updated_at":"2026-07-10T02:24:33.710Z"} {"cache_key":"aa28671e2bb6abaca352d105e6ab91bff5c1eeb57fd2cf99bcebe5021123a6b2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"ko","translated":"루트","updated_at":"2026-06-16T14:14:34.760Z"} +{"cache_key":"aa811b75dc1621e6a41602d3cbf3a22f48b1c718ad01ffa0fa511a9fd7666c13","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"ko","translated":"{name}을(를) 비활성화했습니다. 변경 사항을 적용하려면 Gateway를 다시 시작해야 합니다.","updated_at":"2026-07-10T02:24:37.635Z"} +{"cache_key":"aae778d8c2d69f6ccb121c6dab0af08c43bf73ad26c9ababf3e6203104123b58","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"ko","translated":"플러그인 ID","updated_at":"2026-07-10T04:28:20.683Z"} {"cache_key":"ab318cfb91fd4c14318b6ebf1d29b6500a59d22ccc594e002f498cdd3be552b4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"ko","translated":"{count}개 표시됨","updated_at":"2026-06-16T14:14:34.761Z"} {"cache_key":"ac121a4495218e30180ef339886397d2bc69f965222b318979abccf53ae81874","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"ko","translated":"30초","updated_at":"2026-06-17T14:14:20.553Z"} {"cache_key":"acc02946785027f34abca6d39a412d371bd75edb5b1b252c2e5a26dd9c76d2dc","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"ko","translated":"이 호스트에 검색어와 일치하는 세션이 없습니다.","updated_at":"2026-07-09T10:01:43.732Z"} +{"cache_key":"aea9662ca618914b539f0b11f212e75e5cee469aebddb1e35c65e99d8c693bc3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"ko","translated":"{name}을(를) 설치했습니다. 변경 사항을 적용하려면 Gateway를 다시 시작해야 합니다.","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"aebd21aa7efdb03e0e4c0d5d37e7c37dbc1bbaebe2a99c33d746254739d95997","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"ko","translated":"설정에서 더 보기","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"afa82091ccb78aa197cb3d9d0adb5767de647ddb634f75c1a60a4cbb611b8983","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"ko","translated":"새 그룹…","updated_at":"2026-07-05T14:39:46.951Z"} {"cache_key":"afe19eb348c254a36fce46a42684080a1fa8c1398219d06c69f2ac2143a02fd3","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"ko","translated":"Realtime Talk에는 브라우저 마이크 액세스가 필요합니다.","updated_at":"2026-07-06T17:56:26.773Z"} @@ -210,10 +293,13 @@ {"cache_key":"b224e32ae59a0fb0b8e4772ffb1ce2fa6a89d1d86ceb856d890d1b674e915b7b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"ko","translated":"보관됨","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"b2f5ef4524fa415483819b2d5f09c173a6fe2b0cd95a13f2e88fa50a07680eff","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"ko","translated":"명시적 에이전트가 없는 카드입니다.","updated_at":"2026-06-17T14:14:15.283Z"} {"cache_key":"b3dde11f9331b27dd776ab2bf2816faa8275e0ff73ff6efade9496da51514359","model":"gpt-5.5","provider":"openai","segment_id":"connection.reconnecting","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Reconnecting…","text_hash":"27b80374e1151af6df7824a358606c77502548bff4d467e4ae2e146801f601ce","tgt_lang":"ko","translated":"다시 연결 중…","updated_at":"2026-07-05T21:55:24.398Z"} +{"cache_key":"b43deeb603d753706aeeee088ec3b9a6ace096da3491ff3d5b0d84033a3f59dc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"ko","translated":"설치","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"b450830c2c5a4d87eb8ced9f5dcf4ae0168b50b76f50bb9a7bd0370173285b1b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"ko","translated":"세션 이름 변경","updated_at":"2026-07-02T14:30:10.945Z"} {"cache_key":"b46856c9840a7e12df19fb04b069d74d5de94ead5f628dc1c9c52d8406a6a4b9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"ko","translated":"진단","updated_at":"2026-06-16T14:14:21.259Z"} +{"cache_key":"b5dbd699ae872497e1a99f812157cab5742837fbaf7696c53de515f383a06ca8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"ko","translated":"URL 또는 명령","updated_at":"2026-07-10T02:24:30.377Z"} {"cache_key":"b60b5a5d8056c3fec34c369ee26a31e3bf5ea8a2a87792815f9ddc7426ffbf03","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"ko","translated":"보통","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"b633626dd143f9763437f2d5f12db8732716e26b4fb0b8fe729e976fadd243d1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"ko","translated":"{count}개 읽음","updated_at":"2026-06-16T14:14:34.760Z"} +{"cache_key":"b6516d99c0656c42adef4aa66b46d1ff1d4f71a01c9dcc025f3da504e8e27be9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"ko","translated":"주의 필요","updated_at":"2026-07-10T02:24:33.710Z"} {"cache_key":"b6875a52b763b8b0dfce4bcc5e63aef124fb78fc77bb89395c4ce5fd0ecfc898","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"ko","translated":"Codex 세션 검색","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"b6c6b110fdf11948e67b2c961f1dde23552c384cd3701ea179c0cbe74fc94788","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"ko","translated":"모델","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"b6c75e851c311c7bd4016e217ef20f921793952476cb56f274826a80ea101e64","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"ko","translated":"일반","updated_at":"2026-07-09T08:07:54.348Z"} @@ -222,48 +308,77 @@ {"cache_key":"b8b5cde0d3f35cf030fc634cdbc94cdd85df30ff33b42298eed3c0b21ce705f5","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"ko","translated":"마이크 액세스가 차단되었습니다. 입력 목록을 표시하려면 브라우저 사이트 설정에서 허용하세요.","updated_at":"2026-07-06T17:56:26.773Z"} {"cache_key":"b9174a4b420a09c2b7ec6407a47c31e98970ef57b71afb4284e79d6fdac9137e","model":"gpt-5.5","provider":"openai","segment_id":"connection.retryNow","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Retry now","text_hash":"5148c3e20576923b589bd801ea84dc376213b82fbf8694f64437b621f1690615","tgt_lang":"ko","translated":"지금 다시 시도","updated_at":"2026-07-05T21:55:24.399Z"} {"cache_key":"ba51ff8fbefbb1d5b0280c4e52e1d8c7dc3496a7d3682cf87e7619c1660cda8a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"ko","translated":"컨텍스트의 {percent}% 사용됨({used} / {context} 토큰)","updated_at":"2026-07-09T07:06:19.144Z"} +{"cache_key":"bbdb108e971e2165d05b19e85e724b9360c46f9e4299e125d865f7f6546bdf04","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"ko","translated":"도구","updated_at":"2026-07-10T02:24:30.377Z"} {"cache_key":"bc90691b079381aec1fa87b7decc0bde9658493e6738bfb6e40e7b32e9e71538","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"ko","translated":"채널","updated_at":"2026-07-05T14:39:46.951Z"} {"cache_key":"bd1be86e6633ebc81c1c4946ac265c24461c9445ddd3b7e481472752544397a8","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"ko","translated":"색상 모드: {mode}","updated_at":"2026-07-07T08:47:29.113Z"} +{"cache_key":"bd6278ecb504c8f10e31ee22eb25839d0283d8c694f4e3bf005c04e8fb4836aa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"ko","translated":"{name} 제거","updated_at":"2026-07-10T02:24:33.710Z"} {"cache_key":"bd9c0b538048a70715b55513a87dc64cd0bb1ddd213127b110e8904f7010b45f","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"ko","translated":"브랜치","updated_at":"2026-07-05T21:00:52.598Z"} {"cache_key":"bdab26ebe963983bcbdf516766bc5e1f8b1a011f1999b6652532ccb8083837a3","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"ko","translated":"분리됨","updated_at":"2026-07-04T21:23:54.653Z"} +{"cache_key":"be23bca47542f24a905815b7c9b1df7bef1c8365039e3c450da50484e60a0acd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"ko","translated":"“{name}”이라는 이름의 MCP 서버가 이미 존재합니다.","updated_at":"2026-07-10T02:24:30.377Z"} +{"cache_key":"be29c73539c07f07989caa5d980bdba09a7554101ffa816a5d5039c3a782ac58","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"ko","translated":"활성화","updated_at":"2026-07-10T04:28:20.683Z"} {"cache_key":"be3725795ab816e36c9bf9dd095f4d510db041248acf8379a5ba98c60369b740","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"ko","translated":"60초","updated_at":"2026-06-17T14:14:20.553Z"} {"cache_key":"be7f929fa57636e0d2d41988ed990f676403caba134590a6b531240a91b79e0a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"ko","translated":"그룹 이름 변경","updated_at":"2026-07-06T23:40:54.646Z"} +{"cache_key":"bf606a2e13a67aaa2289360f9e4dbb12602c912765c39d164a965cf2e0b6cff0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"ko","translated":"내 세상 연결하기","updated_at":"2026-07-10T02:24:26.351Z"} +{"cache_key":"c03f549bb5aa5a402d0f4ae295df34cbb84fe4273c78e5dc17f1282a994ddd03","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"ko","translated":"플러그인을 변경하려면 Gateway에 연결하세요.","updated_at":"2026-07-10T02:24:37.635Z"} +{"cache_key":"c06a83e4e1414d5fec88a579424b65ba553b90ce09ff9696db8a9419d6bb557d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"ko","translated":"일치하는 설치된 플러그인이 없습니다","updated_at":"2026-07-10T02:24:26.351Z"} +{"cache_key":"c0e624fa0e1fa2e9ee26d851b2f5730b028fd08910e661a621f541683a121274","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"ko","translated":"{name}이(가) 추가되었습니다. 새 에이전트 세션에서 바로 사용할 수 있습니다.","updated_at":"2026-07-10T05:22:09.580Z"} {"cache_key":"c19bad0b9f16c6552151aa5f83fb0cbc581bf08f673824165d2090effb2fc6b4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"ko","translated":"요약: {summary}","updated_at":"2026-06-16T14:14:21.259Z"} +{"cache_key":"c1e9b383fa3191f7b78e5196ccf37d0ae1c308a369b3bc2bed76ef0a0cb56691","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"ko","translated":"사용할 수 없음","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"c242bf5585e9bd5e80f014f6d8f2d24751bbe3e40a546f69ad81b2ab24da0e49","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"ko","translated":"저장됨","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"c286d99f1f55e622098ff775ef08dcd811fa5011a05d2940eddbad41097758ac","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"ko","translated":"증빙","updated_at":"2026-06-16T14:14:21.259Z"} {"cache_key":"c32a5290479181d1439f35c77ffc91f6321ef7f15b397c0a2ca13de87ba3bf7e","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"ko","translated":"OpenClaw가 소유한 격리된 저장소 체크아웃입니다.","updated_at":"2026-07-05T21:00:52.590Z"} {"cache_key":"c356ae536d83fdcd2fecf63b9a6704a618f294629b1871bd86ebc5d741b2a574","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"ko","translated":"세션 작업 공간 접기","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"c4134dfb09516de837751580b651c834e2d9293eef9d4c64792d5189bc4c2aeb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"ko","translated":"종속성","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"c4aa03b43d324f829c9cea82c3296e21c9b65f7388dba7979b5dd57318a5f957","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goal","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Goal","text_hash":"cdbf6975e8a35b0d03558be6822dfae166482c24fb86b0433f60e8167f5c91e4","tgt_lang":"ko","translated":"목표","updated_at":"2026-05-29T21:00:36.520Z"} +{"cache_key":"c51dfd7bc815d9eee6545c8fc5c0c7377bfd6e96b02891a5af1a289c85dd2e59","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"ko","translated":"설치됨","updated_at":"2026-07-10T02:24:22.436Z"} {"cache_key":"c5e5431af96401ee983e9faa6f1877604bc6260499d14a0a90d30f7fdba7ae25","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"ko","translated":"작업자 {state}","updated_at":"2026-05-30T15:38:20.918Z"} {"cache_key":"c66587db8ea71f572329162ad2b5d2fe78e6d2022d9e315c71bb4e73de5506a6","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"ko","translated":"마이크 입력에 액세스할 수 없습니다.","updated_at":"2026-07-06T17:56:26.773Z"} {"cache_key":"c798f248a27f64fc343dcca84310399ae44177c07f527d6a93e744b1fa263fbd","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"ko","translated":"오늘","updated_at":"2026-07-05T14:39:46.951Z"} +{"cache_key":"c79b8ce842d90c37e744bfc8e4b2faa62805683e79a31dea2dfbba58d395fa82","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"ko","translated":"탐색","updated_at":"2026-07-10T02:24:22.436Z"} +{"cache_key":"c8b9a092213f8e281c6d222b1dd6072857c579657610cde4b6a716d62c2dd9b5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"ko","translated":"전역","updated_at":"2026-07-10T02:24:33.710Z"} +{"cache_key":"c9025164b8cf3475777b3b157a170e6590e7365413f0e93e33eacab607b40716","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"ko","translated":"ClawHub 검색","updated_at":"2026-07-10T02:24:22.436Z"} {"cache_key":"c91768fd531e1b475154587d67dd218ccaa5f28d4ece935ce1fc92397aae1bf9","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"ko","translated":"Worktree","updated_at":"2026-07-05T21:00:52.598Z"} +{"cache_key":"ca0c12f35773b13c1e48eecd22ee66a8f9f6df633237f28dcba92961dda4bc71","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"ko","translated":"MCP 서버","updated_at":"2026-07-10T02:24:30.377Z"} +{"cache_key":"ca8bd18d8290831ba7892828ea0476ff16472a05b91197e794d9438042a7c2cf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"ko","translated":"전체","updated_at":"2026-07-10T02:24:26.351Z"} +{"cache_key":"cb63094ab00286b3a3548b00108d30100d119bbcc3dca6979dd6d6a6c7203a62","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"ko","translated":"활성화 {enabled}개, 비활성화 {disabled}개, 문제 있음 {issues}개","updated_at":"2026-07-10T06:08:45.679Z"} {"cache_key":"cb97fcaaa6dc8ddb7adf44edd751dbc48c8a71ef820c372701948340f181e2e9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"ko","translated":"보관됨","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"cc30fd972b544ec9828287302d0aea3aa28673417bd561169181a9363e419a2e","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"ko","translated":"저장소","updated_at":"2026-07-05T21:00:52.598Z"} {"cache_key":"cd0480cc4f2f762f7685991753d38b978727ef9349b15b5bd6bba92486f33f01","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"ko","translated":"워크스페이스: {workspace}","updated_at":"2026-06-16T14:14:21.259Z"} +{"cache_key":"cd14a74dee270714bb5e01f6956b32cf6ec9d402783acf421cbfbfbb57a6f683","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"ko","translated":"{name}을(를) 비활성화했습니다.","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"cd7a1ade73d2c2d70ba4349fec823e5d4662ef4ee810116728030f6dce21b497","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"ko","translated":"프로젝트 파일","updated_at":"2026-06-16T14:14:34.760Z"} {"cache_key":"ceb57d76cdf38aa06b2ec69cbb5538dff13e70b7a8ef18285f58aa37c5f6395d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"ko","translated":"세션 보관","updated_at":"2026-07-02T14:30:10.945Z"} {"cache_key":"d019b755530073faff597287086ae97efabef280b9e3e01f90fb078bed1fc390","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"ko","translated":"상위 모델","updated_at":"2026-07-06T06:40:15.357Z"} -{"cache_key":"d04b95d5bf4eb84936f82dd77b2e372e5d827d0c0977097924aa9215611a5c16","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"ko","translated":"{seen}/{total} 방문함","updated_at":"2026-07-09T23:55:51.543Z"} {"cache_key":"d0c5302df1a1a6fffe501baa8028563f89d2a1b468437d0aafc8bd45187fdc79","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"ko","translated":"{count}개 준비됨","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"d0cecb5e30b29a83c4ee15fc76a507349aa00d264bd4a689a214a4b5f8421e69","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"ko","translated":"추가 마이크를 찾을 수 없음","updated_at":"2026-07-06T17:33:43.488Z"} {"cache_key":"d1acf52d66bd56748988d441fbd1acc30134418ee0701f46716bc5862ecaf07c","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortCreated","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"ko","translated":"생성일","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"d21598d25d3599d00dfd99658432be03e0486a432a65395f3fc3bd3effeed4c6","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"ko","translated":"캐시 토큰 {count}개","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"d279d35786e7007175ff6593cf14f167da4a7185a28235503b0aa8a812dc7eb8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"ko","translated":"코드 및 번들 플러그인을 찾으려면 두 글자 이상 입력하세요.","updated_at":"2026-07-10T02:24:22.436Z"} {"cache_key":"d2e0a7d2646b047dc60e779fb0c55a68982ea978dbecd3b9efaf832600f34d6f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.runDuration","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Run duration","text_hash":"b5e9698b25697ec71f0947df28e6b08438033fe73b1b87ac7362766d77b45b97","tgt_lang":"ko","translated":"실행 시간","updated_at":"2026-07-09T10:13:20.275Z"} {"cache_key":"d344e7aa8bd324bf9554b8521c97ccac6f00618711b3292271ddacf57a40c264","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"ko","translated":"이전","updated_at":"2026-07-05T14:39:46.951Z"} {"cache_key":"d3a73d59f3e66732afa141c2c424d4d10f5ad14f31294ddb27a71b9de2d714fc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"ko","translated":"읽음","updated_at":"2026-06-16T14:14:34.760Z"} +{"cache_key":"d4158a3e7be676ef281cda59cfcb06eb40b4c303f25ae7ac6bfba145d21a9abb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"ko","translated":"설치 중…","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"d4cb41d397a2456ff7824d9b06bc6e862461d3e990625f1c2f11b53a9d179004","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.title","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Context usage details","text_hash":"0e04e44654b5a2abf769dcd2f82a32e0501a41689d6635d7f718978c160958f0","tgt_lang":"ko","translated":"컨텍스트 사용량 세부 정보","updated_at":"2026-07-05T10:16:07.195Z"} +{"cache_key":"d5dfcab4f216b5b9ef9f38ee09a584d15009fdf1330c3d516acb8a03af22e83c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"ko","translated":"기타","updated_at":"2026-07-10T02:24:30.377Z"} +{"cache_key":"d650b7384cace4d55640c0dc37dc1f953fa8374238cd2d438de9edaf9176b7d2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"ko","translated":"구성에서 MCP 서버 “{name}”을 찾을 수 없습니다.","updated_at":"2026-07-10T02:24:30.377Z"} +{"cache_key":"d7b60e62890ca973bbe0997f82c405bb2500ad69982a384b482ac3de144c7dae","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"ko","translated":"선택적 기능을 설치하고 관리하세요.","updated_at":"2026-07-10T02:24:22.436Z"} +{"cache_key":"d7c8daff4fc8127b4f454a2cdb271fd119c638b807568d8c79d150dee0b44a29","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"ko","translated":"커밋 해시 복사 중","updated_at":"2026-07-10T09:47:02.734Z"} +{"cache_key":"d89902e06fa70db3c289c03a3785c5b3c6a0f2c0b181db4c62310c311a01a1dc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"ko","translated":"닫기","updated_at":"2026-07-10T04:28:20.683Z"} {"cache_key":"d91dc8464fb4262c365012b6f6ec17aed24ad81353ce925f6e4d0df1fb12d7dc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"ko","translated":"15초","updated_at":"2026-06-17T14:14:20.553Z"} +{"cache_key":"d94f370b8ae55cbcf035a99e502f015daa8057901007f0a6c4b4da494094b5ee","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"ko","translated":"{name}이(가) 제거되었습니다. 변경 사항을 적용하려면 Gateway를 다시 시작해야 합니다.","updated_at":"2026-07-10T02:24:33.710Z"} +{"cache_key":"da937c567145aae51c0b0e76dd69538c2b4185e3aa2a7d12cb619f03476ca567","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"ko","translated":"MCP 서버","updated_at":"2026-07-10T02:24:30.377Z"} {"cache_key":"dafc28e1442dde0a2caaf9facb5e67afaaa8b15802ff842e08d868f45f0c2aca","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"ko","translated":"새 설정 코드를 생성하려면 /pair qr을 다시 실행하세요.","updated_at":"2026-07-01T10:32:01.566Z"} {"cache_key":"ddb4f2d68335d1e594a6d3c4be1420e0a49c3747ecbd416e9dcf1bf0cbcc2534","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"ko","translated":"기본 브라우저에서 열기","updated_at":"2026-07-09T11:02:47.260Z"} {"cache_key":"df3adf225f949a3ef292b7cc0b639dafa50fd44fe85658504ccdd8960e42d5e3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"ko","translated":"페어링 QR 만료됨","updated_at":"2026-07-01T10:32:01.566Z"} +{"cache_key":"df685fdbcb470097957238bd16eeeac8be6f501df160a998f219d41702559e76","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"ko","translated":"{name} 작업","updated_at":"2026-07-10T04:28:20.683Z"} {"cache_key":"e0433ca6df957aa6f87825cc7e48478e9be2f975b00ceed3c735c1afe0b32ad3","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"ko","translated":"스레드","updated_at":"2026-07-09T10:01:43.732Z"} +{"cache_key":"e0469e3e0ee858fddc52052b0d099f4e592a5b70a714fb5b7c6e8cf958be3bd3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"ko","translated":"제거","updated_at":"2026-07-10T02:24:33.710Z"} +{"cache_key":"e06799a3e52e309cf6f2eb3cf8875df2bbf0cd8839346b70afba083847c9dcc3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"ko","translated":"공식 플러그인","updated_at":"2026-07-10T02:24:26.351Z"} {"cache_key":"e0a110e41d940986d18fc8bd881d6054a6173671341503a673781cf944b10513","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"ko","translated":"종류","updated_at":"2026-07-05T14:39:46.951Z"} {"cache_key":"e11e481b308ad3d06a49ff20ac2218d1b7a119ed70ad80d91cbe65bd2b96941c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"ko","translated":"{parent} (없음)","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"e1ad585a9150ba0b2a58e65feb5fc93126a61dae07b81f4f9d957923e7537dce","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"ko","translated":"업데이트됨","updated_at":"2026-06-16T14:14:21.259Z"} {"cache_key":"e221c470ba0e0a304a82d433ab301536437e38223621b49ce0078be8b95a56d1","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"ko","translated":"그룹화 기준","updated_at":"2026-07-05T14:39:46.951Z"} {"cache_key":"e319f3dac2e5c77cd94d96ccac953c72ea6be2e69456b0a31d1cdfc62dc0c70b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"ko","translated":"이 폴더에 파일이 없습니다.","updated_at":"2026-06-16T14:14:34.760Z"} +{"cache_key":"e322f0050539448fa37bb1373eb06fb91d1fb26fe1c5adfb09017213eed47bd9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"ko","translated":"메모리","updated_at":"2026-07-10T02:24:30.377Z"} {"cache_key":"e4375e8dcaf4d1baee95bb3b5fbe7c25c4f7b273e4175b8f255130116b5589dc","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"ko","translated":"내 모든 컴퓨터의 세션","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"e5adc19fb462f4633ca069f7622c0f944e596f17385576dc6138f4b269296107","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"ko","translated":"첨부 파일 추가됨","updated_at":"2026-05-30T15:38:20.918Z"} {"cache_key":"e5f9103bed688cce3a94d8fffcf00e9abda609c9027d95f01765ea3fd40a82fe","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"ko","translated":"미리보기","updated_at":"2026-06-16T14:14:37.028Z"} @@ -272,11 +387,16 @@ {"cache_key":"e7ad94cd4ac1aa0e07a008e0c6dba335c3a440f15ebb37ef1ba0af56d50d3bb1","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"ko","translated":"분할","updated_at":"2026-07-06T22:56:22.479Z"} {"cache_key":"e7c11ccf9f90b61836b988450545ec1b989a94063b51174e1c03b603e4cf3637","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"ko","translated":"업데이트됨 {time}","updated_at":"2026-06-17T14:14:20.553Z"} {"cache_key":"e8081578e7e6a0677dc97db787a50cc648eb66b509828be1acd8929fc1064dda","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"ko","translated":"결정, 차단 요소 또는 증빙 메모를 추가하세요...","updated_at":"2026-06-16T14:14:28.718Z"} +{"cache_key":"eb05432ad0764f1e92a09d7a6574dfff2fcb3b7f027ac2242dccb74ea98a0f2b","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"ko","translated":"Control UI","updated_at":"2026-07-10T09:47:02.734Z"} +{"cache_key":"eb47774be5d5aaa5b1b52a232da69607992eb75c5daf3bf988f3db7aa1282ab2","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"ko","translated":"Control UI 및 연결된 Gateway 빌드 ID입니다.","updated_at":"2026-07-10T09:47:02.734Z"} {"cache_key":"eb949e3f2e0fa63843317a46e9048b29ae6830d1792fb79d6700ef5ee442759b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"ko","translated":"이 세션에서 아직 변경된 파일이 없습니다","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"ec748c52fa4074ccdd604afa794c1755d1565eb0791be826d8bf068614276a6d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"ko","translated":"Codex 세션을 새로고침하려면 Gateway에 다시 연결하세요.","updated_at":"2026-07-09T10:01:43.732Z"} {"cache_key":"ecc08fac0a27a0d1b3388d315eafedd83ba94b4634a205747019a9bf9893d2f6","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"ko","translated":"제안이 실제 Skills가 되기 전에 검토하고, 다듬고, 적용하세요.","updated_at":"2026-05-31T21:48:23.318Z"} {"cache_key":"ece1372bff4919019c00f1b63b01c63c11789645bf28c3d334319d82c6980e08","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"ko","translated":"{count}개 변경됨","updated_at":"2026-06-16T14:14:34.760Z"} +{"cache_key":"ed3660459ebda5ad4c5f4fde093c9829d6c7bed10e2d343abe202617caae0562","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"ko","translated":"Gateway 오프라인","updated_at":"2026-07-10T02:24:33.710Z"} {"cache_key":"ee6e1c02afd54a9b199ebc559e105bc52e9e79d6ebe8dd463e8660c55a23f8f4","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"ko","translated":"Skill Workshop","updated_at":"2026-05-31T21:48:23.318Z"} +{"cache_key":"ef577e5930ab30b3b09f4c293275ab6fdf8282e044a0de5a334ef708cbb0a8ea","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"ko","translated":"설치된 플러그인과 추천 플러그인을 찾아보려면 연결하세요.","updated_at":"2026-07-10T02:24:33.710Z"} +{"cache_key":"ef5838a07823dc32f307df80caf9974adb042d78ee0accb583497232a2996eca","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"ko","translated":"ClawHub","updated_at":"2026-07-10T02:24:22.436Z"} {"cache_key":"ef5eb42974a839541ff4ac3aaefc5500f0b1fd6f75e1abdd98894a0b746ac36e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"ko","translated":"없음","updated_at":"2026-06-16T14:14:28.718Z"} {"cache_key":"f17dd0291a15c9d7baee831991be5a462cdc646905f512a8ca2a6fb72908ad14","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.estimatedCost","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Est. cost","text_hash":"3199f14286736527bfc6ad9165629415a5aa087517acd2c0e9b1ae8bb5d26766","tgt_lang":"ko","translated":"예상 비용","updated_at":"2026-07-05T16:00:12.544Z"} {"cache_key":"f278f68cbf2ed18b917d128c3f91ccfbaefa997c82a02d508d3441d00423ec51","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.actions","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Workspace file actions","text_hash":"461817d921bc7672e95fe4a3b23f4ac2a4a20e35b3d6eef3f02e8f5ba4201050","tgt_lang":"ko","translated":"워크스페이스 파일 작업","updated_at":"2026-06-16T14:14:34.761Z"} @@ -284,12 +404,16 @@ {"cache_key":"f3d8ea9bcd4258d7815a3f872c7a6b585f13d07a8e1cbc262420b28c78d31bb6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"ko","translated":"이번 주","updated_at":"2026-07-05T14:39:46.951Z"} {"cache_key":"f416c847e2489e14bfebfd08f1b69ce1846ada6eff4423b31ad98c611646929d","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"ko","translated":"요청 {count}건","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"f6bf2ff6df420cbe5d5948b8f017bd42645777dbf69a0ee7402ebdb52268f3fd","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"ko","translated":"그룹","updated_at":"2026-07-05T14:39:46.951Z"} -{"cache_key":"f99138aa315511014ae588e97b6c22d415a58b185a026ad63ef38c67350253ba","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"ko","translated":"오른쪽 또는 아래쪽에 고정하려면 드래그","updated_at":"2026-07-10T06:08:07.604Z"} +{"cache_key":"f85f045a2f711a5a4d6abe92532b26ac18ba0eed35fa1fe90ca864a408ca57f3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"ko","translated":"플러그인 로드 중…","updated_at":"2026-07-10T02:24:22.436Z"} +{"cache_key":"f9ba827a4b83f46888e80a85764f3061649301bd1144a90de7fd6900592bd958","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"ko","translated":"이 플러그인을 설치하기 전에 ClawHub 경고를 검토하세요.","updated_at":"2026-07-10T02:24:37.635Z"} {"cache_key":"f9db17659980eab33947cd7850f01bb822cb3a3c04b26d5307ee9e76ef22fdf4","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"ko","translated":"절대 방문하지 않습니다","updated_at":"2026-07-09T20:51:31.206Z"} +{"cache_key":"fa02a690a4514d12b7ff1c12aca1ba9b136cbe239a77153c60d2d4ed5b630b7d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"ko","translated":"추가됨","updated_at":"2026-07-10T02:24:26.351Z"} +{"cache_key":"fa5d4dc4df2c4ac02adea77f66e802c897125ec7fb9435b73171cafc364676dd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"ko","translated":"탐색할 일치 항목이 없습니다","updated_at":"2026-07-10T02:24:22.436Z"} {"cache_key":"fa66a6052376197305c4f49ae4cbd10229bbe2376fe80c30a16e0335a1823722","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"ko","translated":"현재 채팅 사용","updated_at":"2026-06-16T14:14:21.259Z"} {"cache_key":"fabfa09f8370e02212d114ad149c6b6a57221b3752e6b220799886492d0142f4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"ko","translated":"세션","updated_at":"2026-06-16T14:14:34.760Z"} -{"cache_key":"fcc74ba4839c4d0c7d68c768eba9042273be0b57fa98c657866c196caf93a8d0","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"ko","translated":"{name} · 첫 방문일 {date}","updated_at":"2026-07-10T04:20:30.792Z"} +{"cache_key":"fb00cab3acef45e40444901f972545324739602cbf1a6fbec7de5ed1d7dd5019","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"ko","translated":"작업 중…","updated_at":"2026-07-10T04:28:20.683Z"} {"cache_key":"fcc8fa9801212b2849e713afa3bad7f0be90434a62a685381eb2d3cb9b70e2dd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"ko","translated":"자동화","updated_at":"2026-06-16T14:14:21.259Z"} {"cache_key":"fcce56364043ba6efe2baa682cd4cb6f92425f32c4091ed0c53b9617b9b4a981","model":"gpt-5.5","provider":"openai","segment_id":"connection.offlineHint","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Live updates and actions are paused until the connection returns.","text_hash":"7a60105cdafb6aa95b9081a370308a9ccd495199c9bfb90d3e0f70af68680f26","tgt_lang":"ko","translated":"연결이 복구될 때까지 실시간 업데이트와 작업이 일시 중지됩니다.","updated_at":"2026-07-05T21:55:24.399Z"} {"cache_key":"fcdbf79e5f15aa4a3428794cea073266df5fc753f01f9b85e0308cf23e7bb090","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"ko","translated":"{count}개 표시됨","updated_at":"2026-06-16T14:14:34.761Z"} -{"cache_key":"ff051c47b2eab2fff68a093bd611b7e87e957d685d28ea803d97b8ab8947c732","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"ko","translated":"검색","updated_at":"2026-07-10T06:08:07.604Z"} +{"cache_key":"fd5a619a1eee8a9146048f890d5ae9d36f693e074c1bb11ef8d41c005eb7a1b6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"ko","translated":"{name} 활성화","updated_at":"2026-07-10T02:24:37.635Z"} +{"cache_key":"fdf018c498f2339e3120506127c7089dc5d5f86ae1011e7e444eb3e53e9af655","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/ko.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"ko","translated":"구성을 사용할 수 없습니다. 새로고침한 후 다시 시도하세요.","updated_at":"2026-07-10T02:24:33.710Z"} diff --git a/ui/src/i18n/.i18n/nl.meta.json b/ui/src/i18n/.i18n/nl.meta.json index 52c9565e91ac..7fbd4ae73cc2 100644 --- a/ui/src/i18n/.i18n/nl.meta.json +++ b/ui/src/i18n/.i18n/nl.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:27.430Z", + "generatedAt": "2026-07-10T09:47:47.349Z", "locale": "nl", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/nl.tm.jsonl b/ui/src/i18n/.i18n/nl.tm.jsonl index ae462c35d76f..a29b8714ac44 100644 --- a/ui/src/i18n/.i18n/nl.tm.jsonl +++ b/ui/src/i18n/.i18n/nl.tm.jsonl @@ -1,10 +1,14 @@ {"cache_key":"0005496336840a67d29848ebdd616dfbd8b4732f5907932204f4d621028f9eee","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"nl","translated":"Automatisering","updated_at":"2026-06-16T14:18:09.152Z"} +{"cache_key":"0086bcc60c00de273b569679ba41f1101ff5b9898fc1883869f42947f6aab071","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"nl","translated":"Tools","updated_at":"2026-07-10T02:28:58.148Z"} {"cache_key":"00d128c05ecf3bca8d95b2391d98b866fba293696f6cd2d2df592ed2bc90b44d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"nl","translated":"{count}u","updated_at":"2026-06-17T14:17:36.035Z"} {"cache_key":"00ec3e9284ff07fec96dca12675909abc6bd535109ff8ae5304bc93c901ceaa9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"nl","translated":"Archieffilter voor sessies","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"01581388c02e05cc85682700ee917835c2342b7b0413e597658ce5b2b6836020","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"nl","translated":"Offline","updated_at":"2026-07-09T10:01:43.729Z"} +{"cache_key":"01885d92d51ec0c13b0d6bd5df8fe0b2f08c3298608642ee8306c0fa799764d6","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"nl","translated":"Plugins","updated_at":"2026-07-10T02:28:48.783Z"} +{"cache_key":"01a9f7407b36895b290a3adbcb9fc8a25e465eee2dadbd9e353ef7b0be2af642","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"nl","translated":"{name} toegevoegd. Nieuwe agentsessies kunnen het meteen gebruiken.","updated_at":"2026-07-10T05:22:44.372Z"} {"cache_key":"02be29700cef942f1ffce5e8413dc17690a480d81f79f700e3ef9806e57d0336","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"nl","translated":"Codex-sessies zoeken","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"03501b72b30e070fc32c8122c093206b95716945d099f407c7edb81cae6e9926","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"nl","translated":"Werkruimtepad","updated_at":"2026-06-16T14:18:24.009Z"} {"cache_key":"039b405f2c3d4ba99f32c918f96ee19469b171e112e2f50880e7261c92d40ae6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"nl","translated":"Ouder","updated_at":"2026-07-05T14:40:20.847Z"} +{"cache_key":"045789fc8109cd8a5328d056e5567e891e59cd808071f145ee059657d08310f8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"nl","translated":"Communityplugins op ClawHub","updated_at":"2026-07-10T02:28:53.502Z"} {"cache_key":"051ed7fa831f0423235dcd7a4d2bb957229d8c7280f1db5cb68e076c068651f8","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"nl","translated":"Sessies sorteren","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"06696ef7eb525d3adda4323083d030b433a2b8eff13c04cf53c130daf12d946c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"nl","translated":"Sessiewerkruimte laden…","updated_at":"2026-06-16T14:18:17.492Z"} {"cache_key":"074147c1fe6ae8a5c4ee3f0c15f9aac7a5c10a1b7212d529233fd2d7fd169e22","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"nl","translated":"actief","updated_at":"2026-06-17T14:17:36.035Z"} @@ -13,29 +17,42 @@ {"cache_key":"08baa582aa312c5bde8aa66d88f593edf873c165bb3760083f3a378ef528668d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"nl","translated":"Kaarten die expliciet zijn toegewezen aan de geconfigureerde standaardagent.","updated_at":"2026-06-17T14:17:30.701Z"} {"cache_key":"08f25894597d8df1daf2752f3db3e0afd6f35028bc2dd9ceb7b82eaf66cba249","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"nl","translated":"Agents en tools","updated_at":"2026-07-09T08:08:14.439Z"} {"cache_key":"093471e6c000825b04a888713d9e862e1d602aee3f8ef23efa154ef3f286987e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityLow","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Low","text_hash":"f793de205ead5ac302c4a1627829dea41f176b1068b993a32373fc869918374b","tgt_lang":"nl","translated":"Laag","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"0a7994ef21c50be9e0045ea90f81101be79993836fcc5954d7c8f4e67e1b1ac1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"nl","translated":"Toegevoegd","updated_at":"2026-07-10T02:28:53.502Z"} {"cache_key":"0a8ba39baa1c84d1bebe460a28883fbad8e359faa82cf169689c086be1651913","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"nl","translated":"Gearchiveerd","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"0aa3f39abffa4a3f71866d881b3b510e1bd164b715022f3adae893a6ec681c4e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"nl","translated":"Stuur revisieverzoeken naar de huidige chatsessie in plaats van de workshopsessie van het voorstel.","updated_at":"2026-06-16T14:18:09.152Z"} {"cache_key":"0ba1ca39989cd969c4be724aee69ef4c3b46d414c6cd5fb50fc00068c9aa84cb","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"nl","translated":"Tokens van laatste run","updated_at":"2026-07-05T10:16:33.214Z"} {"cache_key":"0f2bd15a74edd25daa5def1b6bc01b249e35d99be5b038dcf8c2bd8063c66a96","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"nl","translated":"15s","updated_at":"2026-06-17T14:17:36.035Z"} {"cache_key":"0f908cd4beaa7cc2ce524216fa33931a67b377d626846a6b5f34a49cc87196c4","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"nl","translated":"Groeperen op","updated_at":"2026-07-05T14:40:20.847Z"} +{"cache_key":"0fa283d0eb97357cfa93d8c5f04193c1904430c78da96b3ac3b328fa42fee799","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"nl","translated":"Plugin-ID","updated_at":"2026-07-10T04:28:53.665Z"} +{"cache_key":"1157fd1be63b347aeb140366b8b2b0a128735148b2a823bcb081a7c53cbfb5a2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"nl","translated":"Optionele OpenClaw-mogelijkheid.","updated_at":"2026-07-10T02:29:02.639Z"} +{"cache_key":"1275b6a0e8388bdeeb5ccdbac391c6fbe8546dd3f909eca067271a8d654ba23b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"nl","translated":"Naam","updated_at":"2026-07-05T21:01:37.071Z"} {"cache_key":"12f5afc47047a6fa8937d715bba8defd94ed3a6095776cfb5a3b1f1e2986fdaf","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"nl","translated":"Contextgebruik van sessie: {used} van {limit} ({pct}%)","updated_at":"2026-07-05T10:16:33.214Z"} {"cache_key":"1522947a9173e3850fa454f8408fae11e749600fedbb604c4bc14b5468b7e656","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"nl","translated":"Overzicht van Codex-sessies","updated_at":"2026-07-09T10:01:43.729Z"} +{"cache_key":"15b65648882046b36ea0a40e8e5659139003bb442d6bf0d2588ad5950a9c3297","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"nl","translated":"Geen geïnstalleerde plugins komen overeen","updated_at":"2026-07-10T02:28:53.502Z"} {"cache_key":"16b879f7043139ea5339428c27e33b9151b087e62cd085150fec06632aeb744b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitWeekly","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Weekly · all models","text_hash":"144f0e5ca031e40c0cba8a53a9dcb4d9534c74edd976587231da2cd14b4944df","tgt_lang":"nl","translated":"Wekelijks · alle modellen","updated_at":"2026-07-09T11:49:55.613Z"} +{"cache_key":"1747aba1904d174931adcbddbecd840f7db4bdf431bcb8a3447c5885094daaed","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"nl","translated":"ClawHub heeft geen resultaten voor “{query}”.","updated_at":"2026-07-10T02:28:48.783Z"} {"cache_key":"17f367198a1420756107234b6e1cfd6a46ba6c9636d7f9a34ace0568f50bafeb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"nl","translated":"Werkruimte","updated_at":"2026-06-16T14:18:17.492Z"} -{"cache_key":"18430defd3d8a5aee90b1fc4d574f72117a070e2e3ceec6b12d95d1894789d45","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"nl","translated":"Zachte blubjes bij aanraking","updated_at":"2026-07-10T04:50:43.574Z"} +{"cache_key":"192ee99ee48e5b373ddfc3aca0d7e94c687038f984e2cb653cad48a7d5b72108","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"nl","translated":"{name} verwijderd. Een herstart van de Gateway is vereist om de wijziging toe te passen.","updated_at":"2026-07-10T02:29:02.639Z"} +{"cache_key":"19d7dccee766be620ca23da7312e65b2362f8cc4f280bdb35bc60e20712b17b5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"nl","translated":"Lees de ClawHub-waarschuwing voordat u deze plugin installeert.","updated_at":"2026-07-10T02:29:07.297Z"} {"cache_key":"19e2791d9f9649d4ca944f2858a4bd3efdc8c0ca6ed4481aed37bea60e8e24df","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"nl","translated":"{count} geblokkeerd","updated_at":"2026-06-16T14:18:17.492Z"} {"cache_key":"1a2639adabeacd4106d6af3e7c3a01e48572ee0a4c35f53fa23c841bbf155d9c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"nl","translated":"Een alleen-lezen weergave van Codex-sessies op deze Gateway en elke verbonden computer die ze deelt.","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"1aa8274ab05f073b830fa57e0addbbb5d72c424fd554bea0d49b12fcc0ec61aa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"nl","translated":"Ontbreekt","updated_at":"2026-06-16T14:18:24.009Z"} -{"cache_key":"1da535245448765ec8ebbeef6920b54163bec4bed8753ff022f8383c2ff5cb6a","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"nl","translated":"Onderaan vastzetten","updated_at":"2026-07-10T06:08:47.523Z"} +{"cache_key":"1b0afc509771ca92b68ed8fb8ebcf2100315618463d666d83246ffb73bfd17c2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"nl","translated":"Ingeschakeld","updated_at":"2026-07-10T02:29:02.639Z"} +{"cache_key":"1d91b6eea8cfe83ee077f294e77e359965ba536042e4e3d1468d14a97a7575ab","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"nl","translated":"Alle","updated_at":"2026-07-10T02:28:53.502Z"} {"cache_key":"1df2965b5fab67b92f806575df6ec386a29e623b010fe8d10acf9a1635ca6e4d","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"nl","translated":"Openen in standaardbrowser","updated_at":"2026-07-09T11:03:13.658Z"} {"cache_key":"1f0dc822e93f4f44f65ff416c1a438e55f413bf60569fc681e8e324832acceee","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"nl","translated":"Openen in zijbalk","updated_at":"2026-07-09T11:03:13.658Z"} {"cache_key":"20b4d9eb5bb6215ac4007cf7636b59e328fa5916c443b175e6c8221d2122d611","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"nl","translated":"Sessies op al je computers","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"210ce9b5dcd0bdc6dbbc58dfbe062314af1bc024e87395688473674b46b68922","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"nl","translated":"{count} invoertokens","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"220327afea3a18167b0b4937ff708090cc3c6c8bd5e645a0a8b4a890ba2a2f70","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"nl","translated":"{name} uitgeschakeld. De Gateway moet opnieuw worden gestart om de wijziging toe te passen.","updated_at":"2026-07-10T02:29:07.297Z"} +{"cache_key":"2203de5776afaa62540974cefc2fda7c5349b39f19c57091a27a1e9bc6b8e3e1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"nl","translated":"Alleen bekijken. Deze Gateway staat geen pluginwijzigingen toe.","updated_at":"2026-07-10T02:29:07.297Z"} {"cache_key":"231ccce169faa26a414b57965244968fa63b768da99151dc8fe4c8d7f0583110","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"nl","translated":"Uit","updated_at":"2026-06-17T14:17:30.702Z"} +{"cache_key":"25621fd2734f6da35bf3d02440493c2902a2591575d5b75dd803b4efac5ebda0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"nl","translated":"ClawHub","updated_at":"2026-07-10T02:28:48.783Z"} {"cache_key":"25d2d94f0fbffd6ae63d7ec3194f293d616c031b14c634ac8c0eb0cb207b22ec","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"nl","translated":"Vandaag","updated_at":"2026-07-05T14:40:20.847Z"} +{"cache_key":"26269dd4ff7791161505a7548ef0073cc180ccea11feb175d285e176f876fa17","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"nl","translated":"Voer een http(s)-URL of een opdrachtregel in.","updated_at":"2026-07-10T02:28:58.149Z"} {"cache_key":"26433c49c9f139de717c3e55092bddedeb17d2294560f20c9dc05664ff034ad5","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"nl","translated":"Gearchiveerd","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"273923c964acae871f4e49ef308f640a89c37712165725e85a6b6408d8c4c497","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"nl","translated":"Bekijk, verfijn en pas voorstellen toe voordat ze live Skills worden.","updated_at":"2026-05-31T21:48:43.501Z"} {"cache_key":"27a72ee3c9b0a6c2831ce0cd0854d01fdb74b51c907bf446845d7ae6f1c07b28","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"nl","translated":"Board: {board}","updated_at":"2026-06-16T14:18:09.152Z"} +{"cache_key":"27ba11f44538d7d19825c7cd47abb441ba022e36e5a5f8513660b0c597ebe0cb","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"nl","translated":"Identiteit die is ingesloten toen dit browserartefact werd gebouwd.","updated_at":"2026-07-10T09:47:47.345Z"} {"cache_key":"28ade9528aeb6b6f88ad54f36d8951ce2e67f1f53eaed15e56b235bcdb783e01","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"nl","translated":"{count} workerlogs","updated_at":"2026-05-30T15:38:50.257Z"} {"cache_key":"28b7355767fc967d2f86a4516027d6391827d7812f1c319748afe85915b72589","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"nl","translated":"Algemeen","updated_at":"2026-07-09T08:08:14.439Z"} {"cache_key":"28ff0ea3118a65f1f95122331feacae0d31c24bc8f91051571f2abbe9a179e2d","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"nl","translated":"Terug naar app","updated_at":"2026-07-09T08:08:14.439Z"} @@ -46,30 +63,38 @@ {"cache_key":"2ccf12118a667c7829f8b0a23762c7d760e7f29678616b1219e26175827e1c75","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"nl","translated":"Toon alleen gearchiveerde sessies.","updated_at":"2026-07-02T14:31:07.310Z"} {"cache_key":"2ccf2b386bfd0a06683a27b0627c8e4b86f60e59d63662885797f94dbe400c5f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"nl","translated":"hosts","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"2d29a075dcf12f77c4147ed4219f7a5eb2eebca48df2ae44b8307c9f03a419cd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"nl","translated":"Bijgewerkt","updated_at":"2026-06-16T14:18:09.152Z"} +{"cache_key":"2ee130272b68839ef8caa3a798bd1e75671aa48b3d398f148dfec91c6035bd40","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"nl","translated":"Over","updated_at":"2026-07-10T09:47:47.345Z"} {"cache_key":"2efba668b1a768b99e6016a869ab8af54d2350485e8033b2d9860b5bf24ca8fd","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"nl","translated":"Worktrees","updated_at":"2026-07-05T21:01:37.071Z"} {"cache_key":"2f53d470981ec549fcceef9cae0837668003d702e190b2b34f630765b94b2954","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"nl","translated":"Niet gegroepeerd","updated_at":"2026-07-05T14:40:20.847Z"} {"cache_key":"2f7bee7685a8408428bf1af563a3ca15aa65136b73394bcc0ecb1d6f91336851","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"nl","translated":"Geen beheerde worktrees.","updated_at":"2026-07-05T21:01:37.071Z"} +{"cache_key":"2fbbde733a641143a57d334bb616a2a9f2dcf154a5b83e9d0a826364eeb5a7db","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"nl","translated":"Configuratie is niet beschikbaar; vernieuw en probeer het opnieuw.","updated_at":"2026-07-10T02:29:02.639Z"} {"cache_key":"3104cd3c7c52c60a85c762272ceac2a9c59f881d67c067be764978a604f14bb5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"nl","translated":"Groep \"{group}\" verwijderen? De sessies worden verplaatst naar Niet gegroepeerd.","updated_at":"2026-07-06T23:41:19.182Z"} {"cache_key":"311cf2e1356e3864e981b19e4b93ada145c9870aa784f8726043eec381de7412","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"nl","translated":"Deze browser kan geen microfooningangen weergeven.","updated_at":"2026-07-06T17:57:20.999Z"} {"cache_key":"3190cf385bdc7d66c8d509b0b92f0dc9c46997c80901dc55264d1e338680c07b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"nl","translated":"Sessie archiveren","updated_at":"2026-07-02T14:31:07.310Z"} -{"cache_key":"331687a58cec834ccb6e6af38b7616b459a4dfcce5fc987ae7203c74b2d7bd6b","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"nl","translated":"Kreeftgeluiden","updated_at":"2026-07-10T04:50:43.574Z"} {"cache_key":"355247edf05e7a22822c9acd10b13e83e6ad765299b2014705fb4062adf331af","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"nl","translated":"30s","updated_at":"2026-06-17T14:17:36.035Z"} {"cache_key":"364641279de5e2180df2e1e5d38dd3d90b8594ac9a5cfaf23f09d51912688a74","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"nl","translated":"Pad kopiëren","updated_at":"2026-06-16T14:18:26.226Z"} +{"cache_key":"3662ccb5d203e536e3839294130ae24b5bceaee5cb7b41120e0d75907bae358b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"nl","translated":"MCP-instellingen","updated_at":"2026-07-10T02:28:58.148Z"} +{"cache_key":"369bb34a3a87ceddf288e7bd39b2637277bc1f32cd7cb18e701a400f547a2cdd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"nl","translated":"Toevoegen…","updated_at":"2026-07-10T02:28:58.148Z"} {"cache_key":"37ada188e1ceedee4ae4ede7bf108e3b26178f47608f528ef4c5ad1f80c8b582","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"nl","translated":"Nu opschonen","updated_at":"2026-07-05T21:01:37.071Z"} {"cache_key":"37aff0195fa8c655447f3d1df9383740ee8f6d603cfd8ea251495e9e3b3c806f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"nl","translated":"Er zijn geen microfooningangen gevonden.","updated_at":"2026-07-06T17:57:20.999Z"} {"cache_key":"37c974c866d54eeeebd4b8fb3a29d5ceef7556f55f26919ef3eb2546942f2d59","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"nl","translated":"Link kopiëren","updated_at":"2026-07-09T11:03:13.658Z"} {"cache_key":"38a68daa8bf8d789ae46ce8ada766e4c043992bf73434b0306b958a749247a92","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"nl","translated":"{count} dagen","updated_at":"2026-07-06T06:40:15.357Z"} -{"cache_key":"3963955b7022feefc61dd4fffcafdd5cd848c7d7abba9c6786ae69b4df38143c","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"nl","translated":"Sleep om rechts of onderaan vast te zetten","updated_at":"2026-07-10T06:08:47.523Z"} {"cache_key":"3973453f74ecdf399ca3550b05c66d8601ce1d9c1d8b1e058f3dfdbb3f78aa73","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"nl","translated":"{count} uitvoertokens","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"3a8f90934c613ad55413822bdb50730ee26508bd08db306bced987dbf47191d0","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"nl","translated":"Protocolschending","updated_at":"2026-05-30T15:38:50.257Z"} {"cache_key":"3b742bceb583fe4990be276d4796fba557994fc1795cf6f891aca83f1858529d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"nl","translated":"Comfortabele kaartdichtheid","updated_at":"2026-06-17T14:17:30.702Z"} +{"cache_key":"3d915741e31d20ed8c467b6ffafabf228ceb300a5becd6d3eeee8430fba77182","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"nl","translated":"Niet beschikbaar","updated_at":"2026-07-10T02:29:07.297Z"} +{"cache_key":"3dd250c990bd93e3c2f2009d0b475de6ad786b510df300f0687739b3ce21fea1","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"nl","translated":"Versie van verbonden Gateway","updated_at":"2026-07-10T09:47:47.345Z"} {"cache_key":"3e312bebe9419efb1f31d12ad0a57c66665d0ce68f452458e82be9a69607aee9","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"nl","translated":"Dispatcher een zetje geven","updated_at":"2026-05-30T15:38:50.257Z"} +{"cache_key":"3ff0295a763d7e2684534c26ba6e9df980d4eeb2b42ee3c772c046631c769431","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"nl","translated":"Coderen en infrastructuur","updated_at":"2026-07-10T05:22:44.372Z"} {"cache_key":"3ff8b6fe6a50f6540f1b1c741d82abf7073a86b333db07738b86f4e18aca262b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"nl","translated":"verouderd","updated_at":"2026-06-17T14:17:36.035Z"} {"cache_key":"40a467126d92fee3c0b4da5feceff7e90021200cbf1cb8122fa9d41029d1ca87","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"nl","translated":"{agent} (standaard)","updated_at":"2026-06-17T14:17:30.701Z"} {"cache_key":"40b5c71b56607f2f941e9010509f9dd637228a7ac9cf3d4c982586a3a98cff67","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"nl","translated":"Voeg een beslissing, blokkade of bewijsnotitie toe...","updated_at":"2026-06-16T14:18:17.492Z"} {"cache_key":"40d76a0f3f16963df59d919037f10d95db902897a744f9018910635950d6e2bf","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"nl","translated":"Topmodellen","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"41b8f52bb8ceaebebb74b5774b599416080a7356ed5e166e9bee238b9332cabf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"nl","translated":"Globaal","updated_at":"2026-07-10T02:29:02.639Z"} {"cache_key":"41fc5ba8fdcf90b9b313164178e3f7220b8c50c04818ee11025550cec44edb05","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"nl","translated":"Kaarten zonder expliciete agent.","updated_at":"2026-06-17T14:17:30.701Z"} +{"cache_key":"42db2c40233132bd6e89982609ef37f2968dfd72be5a584b75e3ae4c49749c67","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"nl","translated":"Alleen bekijken. Pluginwijzigingen vereisen operator.admin-toegang.","updated_at":"2026-07-10T02:29:07.297Z"} {"cache_key":"43421c8568b7be8d2f33cda31f2110992684e82efd4aab91281f11ab830eb7df","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"nl","translated":"Workboard-weergave","updated_at":"2026-06-17T14:17:30.701Z"} +{"cache_key":"44202e6a0c5149696ba4dafe5743289d89ceac958072790e848a48726b22d44b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"nl","translated":"Aandacht vereist","updated_at":"2026-07-10T02:29:02.639Z"} {"cache_key":"44c000a4196ee7cd17eae07bc7c99a3811ad6301e0cc9aa244c4d746e3e06594","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"nl","translated":"Microfoontoegang is geblokkeerd. Sta dit toe in de site-instellingen van de browser om ingangen weer te geven.","updated_at":"2026-07-06T17:57:20.999Z"} {"cache_key":"453a5c0b089013631d9533fc4c4657cbd829b1ee2c0ef5ff967b743382c5e508","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"nl","translated":"Русский (Russisch)","updated_at":"2026-06-26T21:43:45.251Z"} {"cache_key":"455e7eb7b2e812c68bb85969d7e1f36f7ba5bb25bd13bc4b4a3f7c5f3cf81a54","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"nl","translated":"Nog geen bestanden aangepast in deze sessie","updated_at":"2026-06-16T14:18:17.492Z"} @@ -77,58 +102,92 @@ {"cache_key":"46e6a95c677bf36b7d0aeebc4eec9df5988913a8f190c63f3c0890a379d46a78","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"nl","translated":"MCP-servers, auth, tools en diagnostiek.","updated_at":"2026-05-31T05:36:57.350Z"} {"cache_key":"4778e7196ea8a4c122d545cfbbb696a030631f27727d6e125bf5b1483a10784e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"nl","translated":"Overzicht sessiewerkruimte","updated_at":"2026-06-16T14:18:24.009Z"} {"cache_key":"481caf3d7d3d93da008ac93cc92963eb9f2e8de361bfafafb2ba22422d7962c0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"nl","translated":"Kanaal","updated_at":"2026-07-05T14:40:20.847Z"} +{"cache_key":"49200c88ea706be16975c12c55f0a7f3b30b66bef39cbebe396938d21fd6b9ef","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"nl","translated":"Werk en productiviteit","updated_at":"2026-07-10T05:22:44.372Z"} {"cache_key":"495dd4bd1a6b5604eb8b838fbc0591ec2814517c52bdd633c79fcac2559b524c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"nl","translated":"Deze week","updated_at":"2026-07-05T14:40:20.847Z"} {"cache_key":"49cf95a187650dc406b073fc3cc032741d2342453f783077e3065832e83e9726","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"nl","translated":"Geen gearchiveerde sessies op deze host.","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"4af3431aa2eb4207db3472e759bf0e85a6424b83fe34d3b98c9f1f71866cafda","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"nl","translated":"Gemiddeld","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"4b40af4179cbdfba8eb5b54e13b73085be7d779d8841ae8b35c5f7cf70365f9d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"nl","translated":"Meer in Instellingen","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"4ca81cd24e9a821ed0ba6542653ede81bfa8ec1ce1a5e4e5dd24992ca313146b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"nl","translated":"{count} afhankelijkheden zijn klaar.","updated_at":"2026-06-16T14:18:17.492Z"} {"cache_key":"4d1123ea088d4d3427c975f89573a47e8487fc8a97849248c7ba0783b972b1ca","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"nl","translated":"Projectbestanden","updated_at":"2026-06-16T14:18:24.009Z"} +{"cache_key":"4d3c2dd31dd24b354234c1eab1ddfc577da422fccdced988b8715e57b276e68e","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"nl","translated":"Gerapporteerd door de actieve Gateway-verbinding; los van deze Control UI-build.","updated_at":"2026-07-10T09:47:47.345Z"} {"cache_key":"4d60cdaab66475379214a04c085c41a6063eb63d602ae54bbd3d6dfee9e15364","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.estimatedCost","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Est. cost","text_hash":"3199f14286736527bfc6ad9165629415a5aa087517acd2c0e9b1ae8bb5d26766","tgt_lang":"nl","translated":"Geschatte kosten","updated_at":"2026-07-05T16:00:28.580Z"} +{"cache_key":"4ff15b374214d93d6e66fe771de47bd6192e88786cfc71ba68543612c4235b04","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"nl","translated":"Plugins zoeken","updated_at":"2026-07-10T02:28:48.783Z"} {"cache_key":"503a0e74b587253835d4a24ecb82a61e0d86746b9c6487654c733e4a3acf26b2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"nl","translated":"Geen kaarten komen overeen met deze weergave","updated_at":"2026-06-17T14:17:36.035Z"} +{"cache_key":"505aaed4028b3ed405814fc415142d14b4a46e8307ef7f9ad66465bb993c8620","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"nl","translated":"Uitgeschakeld","updated_at":"2026-07-10T02:29:02.639Z"} {"cache_key":"50b70402fcd80a1e039965e6a6d0003daf134fd58361c2e62d3584269fd202ad","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"nl","translated":"Sorteren op","updated_at":"2026-07-06T23:41:19.182Z"} {"cache_key":"50c0a71ea5682e4356610e9c1cbd12f1e69cc4db524e8d08d98505d49095d1a4","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"nl","translated":"Komt af en toe langs","updated_at":"2026-07-09T20:51:56.896Z"} {"cache_key":"5119b44af41b15f090ee2c0a2dac89b00538ed8e0a1306d00befc8281d3d1d4d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"nl","translated":"Bewijs","updated_at":"2026-06-16T14:18:09.152Z"} +{"cache_key":"51379dcb0d0814b160885434461e5c5dc85ce1442b57610e5784e34bcacba3ac","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"nl","translated":"Bron","updated_at":"2026-07-10T04:28:53.665Z"} {"cache_key":"515bcd915b33f16aa08ff2f4c4dcda932abd313b22eaa609a5e4819402bb2e4e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.actions","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Workspace file actions","text_hash":"461817d921bc7672e95fe4a3b23f4ac2a4a20e35b3d6eef3f02e8f5ba4201050","tgt_lang":"nl","translated":"Acties werkruimtebestanden","updated_at":"2026-06-16T14:18:24.009Z"} +{"cache_key":"51eca91b7df12f4181e6b38a606bc8dee1b5c461c086283a49b32a25f8a69330","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"nl","translated":"Dagelijks leven","updated_at":"2026-07-10T05:22:44.372Z"} +{"cache_key":"52066e6d005012f830aedf3e368422d3ac5a9b25c9f9d0d39ecbe29c81cb4b10","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"nl","translated":"MCP-servers","updated_at":"2026-07-10T02:28:58.148Z"} {"cache_key":"52a73400c21be56486cd522df1930b79f449f626eec248d621af51f2a2670841","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"nl","translated":"Onbeschikbare hosts: {count}. Andere hosts blijven beschikbaar.","updated_at":"2026-07-09T10:01:43.729Z"} +{"cache_key":"530bc96a3f3d267032d76e62e196e5a38afde994ee8ef7069e5f577299538b76","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"nl","translated":"Inbegrepen","updated_at":"2026-07-10T02:29:02.639Z"} {"cache_key":"53410f9646e260f167a21b211d2916b326d955a5963aac95871da0298dfed711","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"nl","translated":"Geen extra microfoons gevonden","updated_at":"2026-07-06T17:34:05.382Z"} {"cache_key":"537b0b2776345305d7b083d67eb7ddd29439f76dff90fbc9aab55b0e7341f87b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"nl","translated":"Groep","updated_at":"2026-07-05T14:40:20.847Z"} {"cache_key":"540da702152182083b21b5eded461054b7c561b2dc960579467298b45b90d0ed","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"nl","translated":"Beheerde worktrees","updated_at":"2026-07-05T21:01:37.071Z"} +{"cache_key":"5491f1a49e3ebb3d4e475fc7a5a6a16641e99c86d41a1471b62a69d749d75698","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"nl","translated":"Categorie","updated_at":"2026-07-10T04:28:53.665Z"} {"cache_key":"54c3f05a9de3713630a371049264a4496fb6af6f91eca1f163a1a05ee3ae0120","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"nl","translated":"Laatst bijgewerkt","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"54dfc88e316c7a72be638a76ada7eee930a94d75c41923ab753122d6a9f95b46","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"nl","translated":"MCP-server {name} verwijderd.","updated_at":"2026-07-10T02:28:58.149Z"} {"cache_key":"54ed224febe14f8088d6ba06507e51055d44ccbc653a03b676eadc15876ee29f","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"nl","translated":"Kostencategorieën","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"5604d8f4c7b2eb72b74a004741ec4698c3c9654c43582b2b4ec4a2ca6d590fe9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"nl","translated":"Officieel","updated_at":"2026-07-10T02:29:02.639Z"} {"cache_key":"563f631b4231c26752b8acc77a1d4641faaa9de921dadceedb71de436c16549e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"nl","translated":"Geavanceerde Talk-instellingen vereisen operator.admin-toegang.","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"569602236d05be80deebe43472b3cf50789b901777c21da99f6d0c000b43ac2f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"nl","translated":"Tenant: {tenant}","updated_at":"2026-06-16T14:18:09.152Z"} {"cache_key":"57afe0c41804f16f2340850f4433e88e79e2c2532be3cbeec423b6304409b616","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"nl","translated":"Sessiewerkruimte uitvouwen","updated_at":"2026-06-16T14:18:17.492Z"} {"cache_key":"5837a029e3750dd53ea06a3ff4a3ba506b78ce5d62cf2a5d973fc86f7f538ddc","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"nl","translated":"Codex-sessies laden…","updated_at":"2026-07-09T10:01:43.729Z"} +{"cache_key":"58610f5d1b2c51485fc44ffe5fc84ac3f19c111c54a91cb087b6f4428fd6e49e","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"nl","translated":"Installeer en beheer optionele mogelijkheden.","updated_at":"2026-07-10T02:28:48.783Z"} {"cache_key":"586c8f8d84586ac0e9a91ecbf92dc005878737f6876527046b73d67dcceb68b9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"nl","translated":"Nieuwe groep…","updated_at":"2026-07-05T14:40:20.847Z"} {"cache_key":"58ad183e4bf807256f7724f44bea7d5110c99ab08809a4e0100800261f845838","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"nl","translated":"MCP","updated_at":"2026-05-31T05:36:57.350Z"} +{"cache_key":"5951df87e80cde2c1bedb2cabb423e0a893f0b65752fc4ed085241bf99265191","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"nl","translated":"Uitschakelen","updated_at":"2026-07-10T04:28:53.665Z"} +{"cache_key":"597a853f6941544fc46c9011e1b2bae5f2d3ec65bf76dd2dbbb9d2e8a39627f3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"nl","translated":"{name} installeren","updated_at":"2026-07-10T02:29:07.297Z"} +{"cache_key":"5a27922924ddd4f02b334ac7f0ead736956ae252d00ccdfd2c6561e071a5a199","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"nl","translated":"Verwijderen…","updated_at":"2026-07-10T02:29:02.639Z"} {"cache_key":"5aabc8f1bb457c23d3f11c53696e6eca1efcbb7c07f9752da95cebdfe467f8fe","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"nl","translated":"Gateway-taak","updated_at":"2026-06-16T14:18:09.152Z"} +{"cache_key":"5b42b29c73a308f7a5dd5c932bebaa9534730308b62b79a8d6a831df6d1164d7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"nl","translated":"Risico erkennen en installeren","updated_at":"2026-07-10T02:29:07.297Z"} {"cache_key":"5b902ce2cc66d1e921055273c0863370556799f2a7125a7cfe891cdc2d7bdfa8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"nl","translated":"Inactief","updated_at":"2026-07-09T10:01:43.729Z"} +{"cache_key":"5bdeff323df35b346cd86b0df415cf1c44098b4b72e8f683ec3427fa99cb2b0c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"nl","translated":"Ontdek een uitgelichte plugin of zoek in ClawHub om OpenClaw uit te breiden.","updated_at":"2026-07-10T02:28:53.502Z"} +{"cache_key":"5c6037650a05884924d935f568b037f5eab06e709bbdd7a6a6460762b402517a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"nl","translated":"{name} geïnstalleerd. De Gateway moet opnieuw worden gestart om de wijziging toe te passen.","updated_at":"2026-07-10T02:29:07.297Z"} {"cache_key":"5ca1ec9adc40f993be4e1aa0d3f7f6b651e4c7be456417704ad0b3189ee64aee","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"nl","translated":"Contextvenster","updated_at":"2026-07-05T10:16:33.214Z"} +{"cache_key":"5da11b8dc8ba6971fb4a5352fd9ea1b3dfd5ff4be9fb783b0cd496b3bdb2cef9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"nl","translated":"Van ClawHub","updated_at":"2026-07-10T04:28:53.665Z"} {"cache_key":"5ef19b6936f40daabf9c892da764de93285b454205fd8d1caed1802d206b2070","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"nl","translated":"Gateway","updated_at":"2026-07-09T10:01:43.729Z"} +{"cache_key":"5fcb5c9f93754653d8cfc0751a4c03c8db0257e1b4ab34ca5c5fa87d0f0bfd14","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"nl","translated":"Voer ten minste twee tekens in om code- en bundelplugins te vinden.","updated_at":"2026-07-10T02:28:48.783Z"} {"cache_key":"60c474cc52e907a7263122d652f3f9ad3e741ad6dfe8c407dc27e444f3b0b115","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"nl","translated":"Status","updated_at":"2026-07-05T21:01:37.071Z"} {"cache_key":"61322d7dd6c6f6ecd12429935bddd35cf29c24771475df989fb28ab6a579b26b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"nl","translated":"Doelnotitie","updated_at":"2026-05-29T21:02:33.311Z"} +{"cache_key":"61d1e3f2053222d4284d3bc05ee1d77010bb2f3c00f2a621fdf2e040af3b862a","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"nl","translated":"Versie","updated_at":"2026-07-10T09:47:47.345Z"} {"cache_key":"629e7dd809575ca02bdcf4617f3fccedf1f26b55586bff8d38133a32107803c7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"nl","translated":"Vastgezet","updated_at":"2026-07-02T14:31:07.310Z"} {"cache_key":"63145fca56a4ef27bdd791985fdafd2e44f6e730cd9c376be691b98f9ba12ede","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"nl","translated":"Aangepaste groepen","updated_at":"2026-07-05T14:40:20.847Z"} {"cache_key":"633050b5fcd1c0a148ea6fdaa6a5d9a3a51f271399240f5c56df3782351b7455","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.badge","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Expired","text_hash":"424a2551d356754c882d04ac16c63e6b50b80b159549d23231001f629455756e","tgt_lang":"nl","translated":"Verlopen","updated_at":"2026-07-01T10:34:14.146Z"} {"cache_key":"63438f8f4b814536ea893c9cdd5792d785ffb537fee4941f3824b68c75a8bf05","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"nl","translated":"Stem","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"64d590142d2cda2a3ace130d23a4d4e2cc9d8e2704cf02fbb91d12fcee45ce5b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"nl","translated":"Afhankelijkheden","updated_at":"2026-06-16T14:18:17.492Z"} {"cache_key":"65f80349e6597cb244832311510913ac3a9371262442bba5c6643e523d8573ec","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"nl","translated":"Operatornotities","updated_at":"2026-06-16T14:18:09.153Z"} +{"cache_key":"670a6329a1308e588105179cbb543df9a7305d34877883baf63021ae3f4a5cce","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"nl","translated":"Annuleren","updated_at":"2026-07-10T02:29:02.639Z"} +{"cache_key":"67409cfb2763f9260def0e5e7ddcf4510e2f6833c24cf484a6b1d5f9b1ef5417","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"nl","translated":"Kan de configuratie van de Control UI niet vernieuwen: {error}","updated_at":"2026-07-10T02:29:07.297Z"} +{"cache_key":"67c602f0ae3a589cc3f8b68a6b57ab2af9508f50874b5807790986a5a8fec3c5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"nl","translated":"{name} ingeschakeld.","updated_at":"2026-07-10T02:29:07.297Z"} {"cache_key":"689029d1ab9a757714310261412c6e5048e773050c7c4d3ddd0392504be639c3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"nl","translated":"{count} artefacten","updated_at":"2026-06-16T14:18:24.009Z"} {"cache_key":"68e52ea4d559f2b45ac155da5a3f054e76dff935d6c7811a562b1718b138383d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"nl","translated":"Bovenliggende map","updated_at":"2026-06-16T14:18:24.009Z"} +{"cache_key":"68fbb8a00b6cbef502433d785f7095e65bf5bce83482ac8457d6fc4c4c3c7c15","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"nl","translated":"Server toevoegen","updated_at":"2026-07-10T02:28:58.148Z"} +{"cache_key":"697041807e1de1e1bdc558742d3c2f99557fa2da59c6b23a3ca5af6b54cdd41c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"nl","translated":"Plugincatalogus","updated_at":"2026-07-10T02:28:48.783Z"} {"cache_key":"69d682aa3ca552c7a2e3f92a8d064fcb1b01d7536c333081de267d7d2f37ef54","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"nl","translated":"7 dagen","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"6a98a729a69de33ff55be4aed77d8cd78a0f9ac56f66ab0b24dd5e6ebdd006f5","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"nl","translated":"{count} cachetokens","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"6b0198986b1bdac29cf06c54f8e7c2cff6dd1a3345135f9d3b3b56db149b6d58","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.usageCredits","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Usage credits","text_hash":"fbc841b791a14110e06a9913d3d69153b9cc4cf9542b856821b357a09a7c08a4","tgt_lang":"nl","translated":"Gebruikstegoeden","updated_at":"2026-07-09T11:49:55.613Z"} +{"cache_key":"6b1aaa4049e1c1cbe7575ddc089c813152267aa16a36f4ea07032e8fdf290685","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"nl","translated":"Geverifieerde bron","updated_at":"2026-07-10T02:29:02.639Z"} {"cache_key":"6b8e2e778bf041ffbbfec20e9aaa7bec507ef90784023e890ae9ec020b2d7017","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"nl","translated":"Automatisch","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"6d3fef6e6c14e56be857d26ac78d78d04ed38d7c5c2eb5481a53f57a77971773","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitDaily","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Daily limit","text_hash":"1e4ce9cd955f07b1b79cddb1bec9df28d4033d4238c0e54b0b766239133afc8c","tgt_lang":"nl","translated":"Dagelijkse limiet","updated_at":"2026-07-09T11:49:55.613Z"} {"cache_key":"6e4741d69b99e5ad3585d39bcb07f581cd2150079d2ce03af5c02ba0e824f4fa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"nl","translated":"Zoekresultaten","updated_at":"2026-06-16T14:18:24.009Z"} {"cache_key":"7134a0e648f67fd07a3220c24dac1a91e75960a98f70275b0fba72dade9f78e2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"nl","translated":"Gereed","updated_at":"2026-06-17T14:17:30.702Z"} +{"cache_key":"713ed9859fa29db2c46bec85bd4cdf3b033c3ea5637cf87c25a7ebc9b86c4e9a","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"nl","translated":"Niet beschikbaar","updated_at":"2026-07-10T02:29:07.297Z"} {"cache_key":"71688859f623a804209932ab8dde6e8236af40982a9a834e2a9b9880e552b2d3","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"nl","translated":"Realtime Talk vereist microfoontoegang in de browser.","updated_at":"2026-07-06T17:57:20.999Z"} {"cache_key":"747b8553f89a63a178d16656104fe0defa710052fa1c714c4d5285b8b3ed27b6","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"nl","translated":"worker {state}","updated_at":"2026-05-30T15:38:50.257Z"} +{"cache_key":"751190be33563905cfab3122924431c6b4cce37a18ba75eef32984c6cf8213a2","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"nl","translated":"Kon commit-hash niet kopiëren","updated_at":"2026-07-10T09:47:47.345Z"} +{"cache_key":"7578dde54b7be72bbbf2cae6d8cf386aa077534ccfd9d6ec24775b6a9fe8d34e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"nl","translated":"Installeren","updated_at":"2026-07-10T02:29:07.297Z"} +{"cache_key":"75cb022da6bfae6373cc598105c2df5375058bd6483a95f9af68ca175f87d158","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"nl","translated":"{name}-acties","updated_at":"2026-07-10T04:28:53.665Z"} {"cache_key":"75ddd7a7d739ba4370fdd98d03eeaeb31123c5aa7708c69cb32f2707c73288ca","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"nl","translated":"Systeem","updated_at":"2026-07-09T08:08:14.439Z"} {"cache_key":"7611e89145a7e55300dd1dcba8e1f56e4e8040ece6f82579a2d33363fab60cb9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"nl","translated":"ontbrekend bewijs","updated_at":"2026-06-17T14:17:36.035Z"} {"cache_key":"768b657f628be276a70d52cc2249d69fba4d93476e16ab3c03883936e9a95da0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"nl","translated":"sessies","updated_at":"2026-07-09T10:01:43.729Z"} +{"cache_key":"771ba6582cb6794d539dc5011f39688ed2358483da14c3affe938419f545a13c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"nl","translated":"Er bestaat al een MCP-server met de naam “{name}”.","updated_at":"2026-07-10T02:28:58.149Z"} {"cache_key":"77412e5f1b5b396a7580ae4bc42975fe83463676719c0feb03766ca2a650224f","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"nl","translated":"{count} bijlagen","updated_at":"2026-05-30T15:38:50.257Z"} {"cache_key":"77a39519bababef4136bb5beff97ea88edc17784bc460c1ed918fe8adb1e958f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"nl","translated":"Onbekend","updated_at":"2026-06-16T14:18:17.492Z"} +{"cache_key":"77b7ff3d60b32cc2dc32076c5b92ca45125354d6ea65a1dabd85be12e31ee9d6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"nl","translated":"{name} ingeschakeld. De Gateway moet opnieuw worden gestart om de wijziging toe te passen.","updated_at":"2026-07-10T02:29:07.297Z"} +{"cache_key":"7853d3c992323bca5b1d3e5bc6282afc5afe25cf2c5adf8a94eda4dd2880dda4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"nl","translated":"{name} uitschakelen","updated_at":"2026-07-10T02:29:07.297Z"} {"cache_key":"78ff1ec61eeea928d62bde5e48f36930e11b88abe9e9386409775ced03225762","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"nl","translated":"60s","updated_at":"2026-06-17T14:17:36.035Z"} {"cache_key":"791d5ea3ccdaf4b5046c3873b1103c77be64dac9b9e2c3957fe5ea88f355a368","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"nl","translated":"Sessie naar een groep verplaatsen","updated_at":"2026-07-05T14:40:20.847Z"} {"cache_key":"79bbe306dccd4b927cd6a3cc105a20e52da55c2f221f7c8092cf6a134288f988","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"nl","translated":"Systeemfout","updated_at":"2026-07-09T10:01:43.729Z"} @@ -137,18 +196,31 @@ {"cache_key":"7abf5e05b7c93216503d40e967aef1d2c618496334cf84e30a9d73c4ea17ab46","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"nl","translated":"mislukte pogingen","updated_at":"2026-06-17T14:17:36.035Z"} {"cache_key":"7acc389c42a5a6dd3f614f8b0ac3122fcbe895667d66a32f6ccdafa4bc1a1ad3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"nl","translated":"Workspace: {workspace}","updated_at":"2026-06-16T14:18:09.152Z"} {"cache_key":"7af652a79795ad7f1a3aee0400193c3c41956dd626997c3cf302963c71f2ad95","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"nl","translated":"Repository","updated_at":"2026-07-05T21:01:37.071Z"} +{"cache_key":"7b334f6cb01ad963488c06e33eda4b9a65f9e0878ce58e0a0b4e0634cc11ee14","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"nl","translated":"Door ClawHub bladeren","updated_at":"2026-07-10T02:28:48.783Z"} {"cache_key":"7c5cd2ccbb6cdac5af3b51861e7f7a6640d5883bc38babd3d2d4f4f6c628a0f4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"nl","translated":"Geen overeenkomende bestanden.","updated_at":"2026-06-16T14:18:24.009Z"} {"cache_key":"7c95c6646059c32c309a58d10da785c8387008973c54c1c5b50a7d1879e25c43","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"nl","translated":"Alle sessies","updated_at":"2026-07-03T07:41:28.875Z"} +{"cache_key":"7e4e991795c900bc19ef434ec010af76291d100346eebe36f3db882da3d13e0f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"nl","translated":"Uitgelicht","updated_at":"2026-07-10T02:28:48.783Z"} {"cache_key":"7e7ccdb105854f75c4e08d6499a7d803640b753cfa5d910405f8c8ba9ff7bf8d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"nl","translated":"Worker-protocol","updated_at":"2026-06-16T14:18:09.152Z"} {"cache_key":"7ecedecb37e4c88d21d7cb10dc2fa573aef0b4bea485035c0e23459efb69e39b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"nl","translated":"Wijzig de weergave, het zoeken, de prioriteit, de agent of het archieffilter.","updated_at":"2026-06-17T14:17:36.035Z"} {"cache_key":"7fb69136a500a588ebd575ab40e5ba6ae83994b70cd91e6ae51bcb8df2cb3dd3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"nl","translated":"Sessie","updated_at":"2026-06-16T14:18:17.492Z"} +{"cache_key":"804d5d7fdcfa063ac7857f0413c38061e36aad40522a60485b06c958e5fab6bf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"nl","translated":"Sluiten","updated_at":"2026-07-10T04:28:53.665Z"} {"cache_key":"80ffce79ff5e45202298ee3454788c798a13540fd368290d246002939e7fc8ad","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"nl","translated":"Opdracht","updated_at":"2026-06-16T14:18:26.226Z"} {"cache_key":"82abdd2b9cfe58f5454db83b0cd7399a292c3daf7f58fd8c209aed11d20258b5","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"nl","translated":"Codex-sessie zonder titel","updated_at":"2026-07-09T10:01:43.729Z"} +{"cache_key":"83011aed7ce1bc7d7cc6df73190b0d12791937d31af74470a022783068cf7ec9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"nl","translated":"Beschikbaar","updated_at":"2026-07-10T02:29:02.639Z"} +{"cache_key":"83506b626918e1a0fb7f700775d49e0cf6e4f326e54d36f27394f8fd7a524823","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"nl","translated":"Commit-hash kopiëren","updated_at":"2026-07-10T09:47:47.345Z"} +{"cache_key":"8352dc7701b9211df4bfeb28491985d5787118206479432bede01ba0371dffc1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"nl","translated":"ClawHub zoeken…","updated_at":"2026-07-10T02:28:48.783Z"} +{"cache_key":"835b96e5d0a5750708dbb348c0544e15e8383bf8ae8f93e04b11d0a376023e86","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"nl","translated":"Commit","updated_at":"2026-07-10T09:47:47.345Z"} +{"cache_key":"8388ef348bef96982bbdd703461de0f686f7bab0e4505170f8b7ba48834a8526","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"nl","translated":"Plugins","updated_at":"2026-07-10T02:29:07.297Z"} +{"cache_key":"83a29e8a81bc77a6ae5000259b81c5b18120ca0b349e20257359c8c718a7c1d9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"nl","translated":"Geïnstalleerd","updated_at":"2026-07-10T02:28:53.502Z"} +{"cache_key":"83eb7a4a607c31f647690ca9f2e284103df7a7f6c5831c16f555db71d6fdad75","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"nl","translated":"Geen optionele plugins geïnstalleerd","updated_at":"2026-07-10T02:28:53.502Z"} +{"cache_key":"841eeb2cbe8a0b05d8885836dc3875e2c00fc8b537c442dbf136d4d21e631533","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"nl","translated":"Deze plugin verwijderen?","updated_at":"2026-07-10T02:29:02.639Z"} {"cache_key":"848dc7076ec0b891276c8ca8037530d6da7a0ac93617228e0a6a21478763abd0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"nl","translated":"{parent} (ontbreekt)","updated_at":"2026-06-16T14:18:17.492Z"} {"cache_key":"84d7a14e3dcdf1adc3c557c7a04ac8ba88baafcf567bcc559755fab060131229","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"nl","translated":"Compacte kaartdichtheid","updated_at":"2026-06-17T14:17:30.702Z"} {"cache_key":"85de073a68f7435129ca79a6000dd341aa035030f27cda983f8207df2e825e0a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"nl","translated":"Artefacten","updated_at":"2026-06-16T14:18:24.009Z"} {"cache_key":"86f0e9b8cb3884a18d01ca69f377331118a4a2c8b24fbbe6d8fc3ca0e7e1c2a2","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"nl","translated":"Systeemstandaard","updated_at":"2026-07-06T17:34:05.382Z"} {"cache_key":"8798a8e2ccc0316431f0c4661377cb8af24e17a9a10b81a467312c8b48fa9afa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"nl","translated":"CWD","updated_at":"2026-06-16T14:18:26.226Z"} +{"cache_key":"87e7688647675f09b35bb521934495d0bf38a0c51a05873058c08d03c1ce5244","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"nl","translated":"Plugins zoeken","updated_at":"2026-07-10T02:28:48.783Z"} +{"cache_key":"886e04b41962a75f894a553821c1eec01a3b0598fea2f36b3e8cc5c227017540","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"nl","translated":"{name} verwijderen","updated_at":"2026-07-10T02:29:02.639Z"} {"cache_key":"88c113837e8b3edbad85c12f9f7ff1561ed52bb4289b3e1dc6cfc14bab5ac529","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"nl","translated":"Microfooningangen zijn niet beschikbaar terwijl deze pagina inactief is.","updated_at":"2026-07-06T17:57:20.999Z"} {"cache_key":"88caef4c9a9e8b17633e5315049711dc0c7675388f0ca7db44a20b1ac06fb819","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"nl","translated":"Naam van nieuwe groep","updated_at":"2026-07-05T14:40:20.847Z"} {"cache_key":"89ac2d3a996a971272db7938b905a569afc49b4d15e9c7d4d3921a81155c317c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"nl","translated":"Voorbeeld","updated_at":"2026-06-16T14:18:26.226Z"} @@ -157,62 +229,85 @@ {"cache_key":"8abfc18ae4d560c9c368e9729f4f69c7b839f49d4e481648037ef3d041296984","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"nl","translated":"Vernieuwen mislukt","updated_at":"2026-06-17T14:17:36.035Z"} {"cache_key":"8e634d51ceaa70b148ec57668bbfc10ddf03c7676f6d4950eda24754ec430d07","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"nl","translated":"Bijgewerkt {time}","updated_at":"2026-06-17T14:17:36.035Z"} {"cache_key":"8e78df353f3a4a1d4eae75895244b7580df235a0cc084dc20a3ec2839c051f67","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"nl","translated":"{count} sessie","updated_at":"2026-07-05T14:40:20.847Z"} +{"cache_key":"8ea4f4b98fca7272887bed0059c55ce95205fcd766375ec41e4661dd3018b284","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"nl","translated":"Modelproviders","updated_at":"2026-07-10T02:28:58.148Z"} {"cache_key":"905f482878236d3cf9cf6f2eebce5f15ceb9c7ff8eae4ef0ff32a40755f994e8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"nl","translated":"Geen bestanden in deze map.","updated_at":"2026-06-16T14:18:24.009Z"} {"cache_key":"90d51cf8e5864c296fb9e0d33f81d39130056e393fc7cde208af0535f1d3ccca","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"nl","translated":"{percent}% van context gebruikt ({used} / {context} tokens)","updated_at":"2026-07-09T07:06:36.884Z"} {"cache_key":"91db271b17690b5c8a450e78ac3a73cd4aae882a0797884c6369f38d43007aed","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"nl","translated":"Meer laden","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"92fa1c58b5e24e4c302c573b448912321bde9c22233be52e215d3fc8bf53686e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"nl","translated":"Gevoeligheid","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"935a83f97dda5296a5e536cf81926cf36d26488286de3a09135f4e50a80c48ec","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"nl","translated":"Verouderd","updated_at":"2026-06-17T14:17:30.702Z"} +{"cache_key":"937808220cc0bb20e09d5f4cd713d1122e7cb179cb6034891e5bdc433ff14ef9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"nl","translated":"Zoeken voorbereiden…","updated_at":"2026-07-10T02:28:48.783Z"} {"cache_key":"93ccbda24ad07471d70ad20b286bb3227ab19df9dc20226003ab2ac5667d82dc","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"nl","translated":"Geen actieve sessies op deze host.","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"94c9fb7b1a6a8535c9de1e1091cd59b85f7bbc2f3a537589049651a7a70dcd8b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"nl","translated":"Recent voltooid","updated_at":"2026-06-17T14:17:30.702Z"} {"cache_key":"96138da1d80964f55d26ed28f5f2f2fc85974a4e7b854589da17d160e6b29674","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnly","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Archived only","text_hash":"da7ebd8c482f38dc2a5b693a0ec25aaa04ea7b5fa3713cce9fa41a28f2201a6b","tgt_lang":"nl","translated":"Alleen gearchiveerd","updated_at":"2026-07-02T14:31:07.310Z"} +{"cache_key":"970a0b2e8013b0fac2f6bde90e3f7c48feb75fb32086f5b598e6574c6da7b8ed","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"nl","translated":"{name} toegevoegd. Verifieer met “{command}” en start daarna de gateway opnieuw.","updated_at":"2026-07-10T02:28:53.502Z"} {"cache_key":"97156f2eea507bb639716521cb73cec769de5e19cb5e3e6efd9e2ed5f1c9a077","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.planUsage","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Plan usage","text_hash":"eb55e9232d2a7503c819491be60761e99458daf4947df9676c5cc86b653f59f4","tgt_lang":"nl","translated":"Plangebruik","updated_at":"2026-07-09T11:49:55.613Z"} {"cache_key":"97c4aa6469b5dd56acb63e183a546d8e5523c2e5c318e7b5c0a03a400564e96f","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"nl","translated":"Geïsoleerde agenttaak-checkouts en herstelsnapshots.","updated_at":"2026-07-05T21:01:37.071Z"} {"cache_key":"98842ecee006cfb2a808c54f9fad7f8871367333521dd82fdbf27fc67ba1db2a","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"nl","translated":"Herstelbaar","updated_at":"2026-07-05T21:01:37.071Z"} {"cache_key":"99781546706761f8ef14a871264bf6c055e06c3d536cb523476ddf80bf7cb552","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"nl","translated":"Microfooninvoer","updated_at":"2026-07-06T17:34:05.382Z"} {"cache_key":"99ae8a76c3dec84e49c33a6896895fd26b8ad9348fbbd63af4989b2d25a0e52e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"nl","translated":"Geen sessies op deze host komen overeen met je zoekopdracht.","updated_at":"2026-07-09T10:01:43.729Z"} +{"cache_key":"99d32b760dc8e112b52ab56a484572a513d4f6480844631f880eda2068e329c0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"nl","translated":"MCP-server met één klik","updated_at":"2026-07-10T02:28:53.502Z"} +{"cache_key":"9a270e33bda2f7ad2d5b8f53cbfc06255d57784e1d5400259669e8d19ffa8587","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"nl","translated":"MCP-server “{name}” is niet gevonden in de configuratie.","updated_at":"2026-07-10T02:28:58.149Z"} {"cache_key":"9a9ed3db1c2c9822eaad445c007e921e6448568893a655c9a75ee4a7e77e02c8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"nl","translated":"Groep verwijderen…","updated_at":"2026-07-06T23:41:19.182Z"} +{"cache_key":"9b103cff555e1b5ba7007265bc13dd573b1c88666cc52803e1720df0c465ad60","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"nl","translated":"{name} uitgeschakeld.","updated_at":"2026-07-10T02:29:07.297Z"} +{"cache_key":"9b911a5c563ef63ac247efda0d760eaa5e8b0d9bc4f12773e6c451e4b3c7d2b6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"nl","translated":"Config","updated_at":"2026-07-10T02:29:02.639Z"} {"cache_key":"9b94d044fbc9cc2e12b26ba5e1cec1ab0a5ba63d9e91135769dfb8e8d6af0531","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"nl","translated":"{count} kaarten","updated_at":"2026-06-17T14:17:30.702Z"} +{"cache_key":"9bd7bce3ee328da37504a8af7cf853beaf97f72da0f45de202ead834f1603fa3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"nl","translated":"Details bekijken","updated_at":"2026-06-16T14:18:09.152Z"} +{"cache_key":"9c081e05c30d66ed82c59f8e5fcef6091e8c2cd0a5256a6400f5d07afebc2160","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"nl","translated":"Geheugen","updated_at":"2026-07-10T02:28:58.148Z"} {"cache_key":"9d33a3dc2fbd6d067ae9073f31bb955f13a82b79dbef679d35eb7a60b36c5983","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"nl","translated":"Sessie","updated_at":"2026-06-16T14:18:24.009Z"} +{"cache_key":"9d558beca36d2d4b28b314c992c5da2604b2e38cac2f540b0debd58e6f06e4f0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"nl","translated":"Kanalen","updated_at":"2026-07-10T02:28:58.148Z"} {"cache_key":"9f6e5ee125de9ce0c5702bf9ef9ebe8dcfe2090bee64413bb46d83ee60a99f99","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"nl","translated":"Codex-vloot","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"9fcac9cd9734a2f3637569101069d300348a9a940d50336a0c578eec7c262f2b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"nl","translated":"5s","updated_at":"2026-06-17T14:17:36.035Z"} +{"cache_key":"a026400216fb603fb9b48b15bad46eb86f509fa6db9011d115d7bf6237ab4fdd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"nl","translated":"Installeren…","updated_at":"2026-07-10T02:29:07.297Z"} {"cache_key":"a0fdb9d195c8f6c31e4ea30f72fd8a57beda64a0cc2ea0cabc973c82a2a14e75","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"nl","translated":"Herstel deze sessie om berichten te verzenden.","updated_at":"2026-07-02T14:31:07.310Z"} {"cache_key":"a217f770a3c18a40cdbc28d79bbf71b88f226ac2fe2918f08bb23b87cb4c3c7f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"nl","translated":"Microfoon {number}","updated_at":"2026-07-06T17:57:20.999Z"} +{"cache_key":"a25c34d32cf68989276c93cbe14b90070dd849ef43611b40e97f988f60539a35","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"nl","translated":"Maak verbinding met de Gateway om plugins te wijzigen.","updated_at":"2026-07-10T02:29:07.297Z"} {"cache_key":"a2f00687aea314d88d3f36ea3a01559d55da3328a8881c407914020fad526436","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changed","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Changed","text_hash":"2a6141e43be0c2125e3b5d9f74b4ff1261a0b320ff927c83d4d9b1b65585bad7","tgt_lang":"nl","translated":"Gewijzigd","updated_at":"2026-06-16T14:18:24.009Z"} +{"cache_key":"a3486f6ac9876a81ad247e4d68e07a84630418ac08418d33b95eceda2705c5ab","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"nl","translated":"Zoeken op ClawHub","updated_at":"2026-07-10T02:28:53.502Z"} {"cache_key":"a350026fb850801e9c56985be37811d9e1ef6643fb99a309fd4db919706ada7f","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"nl","translated":"Snapshot mislukt: {error}\n\nVerwijderen zonder snapshot?","updated_at":"2026-07-05T21:01:37.071Z"} -{"cache_key":"a42e9f92222573d4e0c08f06ddcf1f80aee1e4d4a6dfbf5bf76bd649f03e7124","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"nl","translated":"{seen}/{total} bezocht","updated_at":"2026-07-09T23:56:19.257Z"} +{"cache_key":"a3cf651eef6d5cb5f91d99e606535306e63d1eacb7499ecc92b4fb0413037097","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"nl","translated":"Overig","updated_at":"2026-07-10T02:28:58.148Z"} +{"cache_key":"a43e26b3e16ad7260df1f422ecc72a959b63040279a53e1e1eaa9b635184f1a0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"nl","translated":"{name} inschakelen","updated_at":"2026-07-10T02:29:07.297Z"} {"cache_key":"a461b23da6a933a6a3f99a1b0b1cb956d18574a79baa05e25dcf913c629ffde6","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"nl","translated":"Meest recente voltooide, mislukte en geannuleerde taken.","updated_at":"2026-07-09T21:53:40.713Z"} +{"cache_key":"a48dc1e6c9ee9a4e00b93728d8720c1f7edfb280fd6ec97636286785f89fdff5","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"nl","translated":"Buildgegevens van Control UI","updated_at":"2026-07-10T09:47:47.345Z"} {"cache_key":"a4b4c8d738f0b5b466950074f9df4a63ce23cdcc1d034a71acbd6471ebeda298","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"nl","translated":"Linkacties","updated_at":"2026-07-09T11:03:13.658Z"} {"cache_key":"a4e238ea645ef82dc00ffa7fdf82e7435eca5fe9a7abef763c0a26aaa1529c4a","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"nl","translated":"{count} aanvragen","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"a4e2c20feefcfecabbac97c766a0d8e469841737d603757efc5176841eb77a50","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"nl","translated":"{count} getoond","updated_at":"2026-06-16T14:18:24.009Z"} {"cache_key":"a508d76a7831be5b78c7c9386ac541cde3bb6b5c82432e975c285c430b58fcc4","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"nl","translated":"Schakel het delen van Codex-sessies in op de Gateway of een gekoppelde computer en vernieuw daarna deze weergave.","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"a51bffd1c45763093dc06b890d841b2f0405fc3da6a1e9dffcfbe509619fa843","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"nl","translated":"losgekoppeld","updated_at":"2026-07-04T21:24:05.296Z"} +{"cache_key":"a6a225e46a8e0e7abe3f12e36e30633ce57783568661c6a5d3df73a245f085c0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"nl","translated":"Geen overeenkomende ontdekkingen","updated_at":"2026-07-10T02:28:48.783Z"} {"cache_key":"a6bb2fd61138557db9a96fd5968bfe66aef070de5eca5445920c8262b3174ecc","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"nl","translated":"Details over contextgebruik openen","updated_at":"2026-07-05T10:16:33.214Z"} {"cache_key":"a787556688e712ff88edec985e1d4b00023c98af5b70391d7d47712324895f5c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"nl","translated":"~{percent}% van context gebruikt ({used} / {context} tokens, bij benadering)","updated_at":"2026-07-09T07:40:50.909Z"} {"cache_key":"a79fe9d0dfd6822ded48b0aae70e53619f389e449455accf82038a46d5e907fd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"nl","translated":"Details bekijken","updated_at":"2026-06-16T14:18:09.152Z"} +{"cache_key":"a85b0d87cb01093b749f4ba761c2d39d80f610cec3496d89841827ed62af4ade","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"nl","translated":"Verbind Model Context Protocol-servers om je agent extra tools te geven. Wijzigingen gelden voor nieuwe agentsessies.","updated_at":"2026-07-10T02:28:58.148Z"} {"cache_key":"a8ad58a8117a341a25096fca554b8daabf5b59f8ae18774772136c249560886f","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"nl","translated":"In wachtrij geplaatste en actieve achtergrondtaken.","updated_at":"2026-07-09T21:53:40.713Z"} {"cache_key":"a8b429d68ce22136ca046c0736e1503c06d79f6b9803b93a1f95600e7d2eba25","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.title","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Context usage details","text_hash":"0e04e44654b5a2abf769dcd2f82a32e0501a41689d6635d7f718978c160958f0","tgt_lang":"nl","translated":"Details over contextgebruik","updated_at":"2026-07-05T10:16:33.214Z"} {"cache_key":"a9bfa51c96fc964b3ee7e7765a31597e603a9e7f76995fa4fba9baef8d12a41b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"nl","translated":"Onbekend","updated_at":"2026-06-16T14:18:17.492Z"} +{"cache_key":"aafacbc4613c7e1c128d420d1f56df1e2fe159561076eee60c0435811b94a129","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"nl","translated":"MCP-servers","updated_at":"2026-07-10T02:28:58.148Z"} {"cache_key":"ab2dcada6652ca028ff3f5ed792cfb9b96562fd33d8ca85b5aa867d174c17609","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"nl","translated":"Acties","updated_at":"2026-07-05T21:01:37.071Z"} {"cache_key":"ab570a6ab4088b159718e2cd9d415cf31c1c843db8f35eee542ec8798fea6ad3","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"nl","translated":"Chat openen","updated_at":"2026-07-09T08:27:29.789Z"} {"cache_key":"abd56df97701441cc8ca9ebd48631ee4d1d3e55067c4c7085a6423f0630c97e6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"nl","translated":"Hoofdmap","updated_at":"2026-06-16T14:18:24.009Z"} {"cache_key":"ad1bd3dc2e53729854320382829c331ddca73f408db3cc68e18a881bde2c6aa8","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"nl","translated":"Microfoons laden…","updated_at":"2026-07-06T17:34:05.382Z"} {"cache_key":"add2006e84a59e9d78e97594dabe13d0ea6f18d997a5717fe7599532e8657063","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"nl","translated":"Sessiecatalogus niet beschikbaar","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"add2319ea76f9d99d29ff0f00fe0935799b8ab3cb4bfeea85f443147fbb1d4a8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewAll","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"All cards","text_hash":"2306120917506b5998ec702f3661068b102dac538ba4c9e4634d65fe33eea98a","tgt_lang":"nl","translated":"Alle kaarten","updated_at":"2026-06-17T14:17:30.702Z"} +{"cache_key":"af1e8fd860b2eea3287ba9035212d63bb705d1f70879cc2f0804376a4f40838c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"nl","translated":"Vereist aandacht","updated_at":"2026-07-10T02:28:53.502Z"} {"cache_key":"af7cc0ab7764197c0a5e9089f14cbe840a4cdf7a1bc7476c8f67b80d8c900347","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"nl","translated":"Snapshot maken en {name} verwijderen?","updated_at":"2026-07-05T21:01:37.071Z"} {"cache_key":"afd8371e2bb1364f6d7f28f072af11344f9d15088f265fdf7e99a22b0549967b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"nl","translated":"heartbeat {age}","updated_at":"2026-06-17T14:17:36.035Z"} {"cache_key":"b13e2a5fb0cedef77edcdfaad5225906a5e98a2f0ed7e988928fef367a61f64a","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"nl","translated":"Planner","updated_at":"2026-07-09T21:53:40.713Z"} {"cache_key":"b141569e5ac13cea481ab6cfad2e4dd4ecad8fbf9f624624c1f6f63af3c2d1b8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"nl","translated":"Opgeslagen","updated_at":"2026-07-09T10:01:43.729Z"} -{"cache_key":"b21bfec629c049fa3618bb45f9da727b7e222cc63d1385c082c17cb3e3514da2","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"nl","translated":"Stil","updated_at":"2026-07-10T04:50:43.574Z"} {"cache_key":"b21f79504bfa362544e8065e752ee4dfb57b7da7a1b029cb9e7c93cd9ab4d3bc","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"nl","translated":"Kan geen toegang krijgen tot microfooningangen.","updated_at":"2026-07-06T17:57:20.999Z"} +{"cache_key":"b25c8b75561e29d4378e2d66b63bcc291ad1b377bf4d522073cb1a559f1a0560","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"nl","translated":"Context-engines","updated_at":"2026-07-10T02:28:58.148Z"} {"cache_key":"b2a24e6ba5288da3f1b64057ff0e6495f0da5c731413247eb98e072b9cfe1dca","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"nl","translated":"Standaardagent","updated_at":"2026-06-17T14:17:30.702Z"} {"cache_key":"b35b545cda30992ad931c32cedd2d62ff50064dd8a3a64c9e9baec07542b1496","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"nl","translated":"Model","updated_at":"2026-07-06T20:20:02.809Z"} -{"cache_key":"b35eb26c455d2479d5edfda72c05b1a32d0b5985091288d6fbb09f30339b1773","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"nl","translated":"{name} · voor het eerst bezocht op {date}","updated_at":"2026-07-10T04:20:46.981Z"} +{"cache_key":"b3989c017e06e5e3d3c512df2b1ea1e150f2328a625a657c70cf2b18b272c6ac","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"nl","translated":"Control UI","updated_at":"2026-07-10T09:47:47.345Z"} +{"cache_key":"b41c20c90cc8c99b4423556825358ed3979f2359ea820472d880f5178b9cb11a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"nl","translated":"MCP-connectors met één klik en zorgvuldig geselecteerde ClawHub-zoekopdrachten voor populaire services.","updated_at":"2026-07-10T02:28:53.502Z"} +{"cache_key":"b44be86e84d46b2490ca08882d887a80bd782e435fd28e4226df4a6dcead2190","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"nl","translated":"{enabled} ingeschakeld, {disabled} uitgeschakeld, {issues} met problemen","updated_at":"2026-07-10T06:09:09.451Z"} {"cache_key":"b48f770eb3a6d2cdc55c6e286a99dac510d39071367dad88117c28aa78231407","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"nl","translated":"Type","updated_at":"2026-07-05T14:40:20.847Z"} +{"cache_key":"b68d7a3a966322ee3eb33a56edf7ea67f50df1bdd22e2b584db06182c46c4028","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"nl","translated":"Ontdekken","updated_at":"2026-07-10T02:28:48.783Z"} +{"cache_key":"b6c25d2f973adcc66fbe2fdca3307e1deb39cf162eb0d8f07edb8c59ae933ff2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"nl","translated":"URL of opdracht","updated_at":"2026-07-10T02:28:58.148Z"} {"cache_key":"b780a4c266d05fe0b08a38d3b1b8d1feaff837c2e198b4bc2f2f7ec0915e5b94","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"nl","translated":"Maak opnieuw verbinding met de Gateway om Codex-sessies te vernieuwen.","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"b7991133da3b84a27cb46ac843f1f5fc5708d2930c0f4624d3684ce0f8af5d44","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"nl","translated":"Sessiewerkruimte vernieuwen","updated_at":"2026-06-16T14:18:17.492Z"} +{"cache_key":"b88a8b291919e908fa48356e27a4791373abb7ba481336faf1bc8d4d0a0e4353","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"nl","translated":"Bezig…","updated_at":"2026-07-10T04:28:53.665Z"} {"cache_key":"b8d588e4b3ffb799a3668b45b9a1e8c5de2991f96f4d67e17e38ebcde0399935","model":"gpt-5.5","provider":"openai","segment_id":"languages.hi","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"हिन्दी (Hindi)","text_hash":"fab2abfce45382f3031c59477017700a8cb5dfaf8d15379dc24304809b97c7d5","tgt_lang":"nl","translated":"हिन्दी (Hindi)","updated_at":"2026-06-26T21:43:45.251Z"} {"cache_key":"b919100a05176b823138371115ee0296014ab0e56c680777b6e407f66b739e25","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"nl","translated":"{count} getoond","updated_at":"2026-06-16T14:18:24.009Z"} -{"cache_key":"b9774a23b6ea7774e3fe56a3708d44ebb07171bebf342f691a71879f1f6632f9","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"nl","translated":"Lobsterdex","updated_at":"2026-07-09T23:56:19.257Z"} {"cache_key":"ba1b4d113785cde94d8f87f093e1df31ec2010418b046d9319e9129a0443b423","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"nl","translated":"Geen","updated_at":"2026-07-05T14:40:20.847Z"} {"cache_key":"ba90dc8543c800376f75b5eca95a20154b9fad0f28a546dfc42e9bf1ab745777","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"nl","translated":"Realtime spraakinvoer vereist toegang tot de microfoon van de browser.","updated_at":"2026-07-06T22:42:32.827Z"} {"cache_key":"bab23c08a2ab714aedcee07ef66855dc7e2cd9a54040d86ed567272edf3574ea","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"nl","translated":"Beoordeling","updated_at":"2026-06-17T14:17:30.702Z"} @@ -221,20 +316,28 @@ {"cache_key":"bbc4ce34d65947b136b334bc6de173832f8df27f9a057f0a157883b44a9de3d4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"nl","translated":"{count} gelezen","updated_at":"2026-06-16T14:18:24.009Z"} {"cache_key":"bc958fd40402013b5d5811be3290a4fe07db7bcc8198055e7cffa1a9ed1978ed","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"nl","translated":"Sessie hernoemen","updated_at":"2026-07-02T14:31:07.310Z"} {"cache_key":"bccd02b282b6f9695cf7d205d5e69b1be4e0f7cb162c05e8c6797b7952eed4a6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"nl","translated":"Actief","updated_at":"2026-07-09T10:01:43.729Z"} -{"cache_key":"bcfe870f55807eac694c2541f5bbd9c3c600967578d6e661a56ba428367042cf","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"nl","translated":"Zoeken","updated_at":"2026-07-10T06:08:47.513Z"} +{"cache_key":"bcdb21ce3becf0445dff20c43894109deeb06c7e09db292307a816a78ac2e8fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"nl","translated":"Geen plugins gevonden","updated_at":"2026-07-10T02:28:48.783Z"} +{"cache_key":"bd333db572a3bed6e202ea8e28a8298f92618e985c1ad383b24e83ab482a0dbf","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"nl","translated":"Volledige commit-hash kopiëren","updated_at":"2026-07-10T09:47:47.345Z"} {"cache_key":"bea2efe67c6d9fc7efe520d772b92edaf474a7d048e35d4e6d5e557151e5b0e2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"nl","translated":"Koppelings-QR verlopen","updated_at":"2026-07-01T10:34:14.146Z"} {"cache_key":"bf3d29e7f74d361e8d1599bd0deb0ad081f6aaef32c96c336ffeb3bc0e73fa56","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropOpenHere","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Open here","text_hash":"b08e2fd2e872adcb575b305187b9db8482369325806953ce80190fc2dc1ab9fb","tgt_lang":"nl","translated":"Hier openen","updated_at":"2026-07-06T22:56:38.316Z"} {"cache_key":"c13bde4c03cc44274c7dfb74e31a7592f92a6c3e5395c9cd7550de40b7f873b5","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"nl","translated":"Geïsoleerde repository-checkouts beheerd door OpenClaw.","updated_at":"2026-07-05T21:01:37.071Z"} {"cache_key":"c210b3270e9de05dfe8ac280e9c022cb999e3c88276570f2fffb3b25fd3de70e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"nl","translated":"Bewijs ontbreekt","updated_at":"2026-06-17T14:17:30.702Z"} {"cache_key":"c28a55c0e83a85cb889ac379ee45fc79dd32f3172a04886b2eccc28bfe50625b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"nl","translated":"Vernieuwen","updated_at":"2026-07-09T10:01:43.729Z"} +{"cache_key":"c2a133dd78a52718f530f05440dce6edf4e58ceaa44fe3a53394eff2d942190d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"nl","translated":"Opnieuw proberen","updated_at":"2026-07-10T02:28:48.783Z"} +{"cache_key":"c31d02e6d4fd4a13e14f925fd76ab881afc8a968305fcef52f916c9887c0ac62","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"nl","translated":"Vernieuwen","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"c36487ab13d5a0b0227354b2aadabf79b93bad364f3d0764b1777a652ade6d92","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.openUsage","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Open usage dashboard","text_hash":"bae5e40b055c195a780a0dc06042d60353da51ab582610096c5cb0d269484c00","tgt_lang":"nl","translated":"Gebruiksdashboard openen","updated_at":"2026-07-09T11:49:55.613Z"} {"cache_key":"c3adb0fbf9360a046f9d3444994643f49b2b4f09a0c66bef8fbfc2fb472b6f60","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"nl","translated":"Standaard","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"c3b6932ae1937d81cc4fc6d0f5337abbbb32a78068960e4565ba0be82931eac1","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"nl","translated":"Control UI en verbonden Gateway build-identiteit.","updated_at":"2026-07-10T09:47:47.345Z"} {"cache_key":"c49261726e5d83a3356c6d4b6d0b36e0377639cc6a38d30d6242d3209df6c029","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"nl","translated":"{count} sessies","updated_at":"2026-07-05T14:40:20.847Z"} {"cache_key":"c5edf205f0db62230f81ff33164d4210ab2c436eafc761c81c618b2f5fe04467","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"nl","translated":"Microfooningangen zijn bezet of niet beschikbaar voor de browser.","updated_at":"2026-07-06T17:57:20.999Z"} {"cache_key":"c5f5e4542ec64d4b1c6189d8d2f050afaee74595fc993ebb4d0ca13f0e854629","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"nl","translated":"Diagnostiek","updated_at":"2026-06-16T14:18:09.152Z"} {"cache_key":"c6009878738fc4b25708831ee4e8c2468efb3a4a0156770148e713d91ee0719f","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"nl","translated":"Skill Workshop","updated_at":"2026-05-31T21:48:43.501Z"} +{"cache_key":"c6aa09857a9df6660a78477aba6013894ccb7df7966824bd611a93bc85f6f2f5","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"nl","translated":"Commit-hash gekopieerd","updated_at":"2026-07-10T09:47:47.345Z"} {"cache_key":"c6f43016bd1ed9499a96f6fb2fd0190bd84af3f3d82a4fc1c3e8b752a892f8ab","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"nl","translated":"Branch","updated_at":"2026-07-05T21:01:37.071Z"} {"cache_key":"c877e208cfc436d5513247ec9216ed08a1a1a6874f054d715daf9b9a30713d20","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"nl","translated":"Groep hernoemen…","updated_at":"2026-07-06T23:41:19.182Z"} +{"cache_key":"c8c5fe037b926df8f724bd5da413ae0a77e63398a788f34a0fdfa93497155567","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"nl","translated":"Toevoegen","updated_at":"2026-07-10T02:28:53.502Z"} +{"cache_key":"c8d61dca76466bb54228631589843770110edbfb5f40977fe8b538a3b4336c16","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"nl","translated":"Officiële plugins","updated_at":"2026-07-10T02:28:53.502Z"} +{"cache_key":"c963b850e470017bd7b21b96dfa1cfbeab0034e054d86d9ba813a8408288b651","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"nl","translated":"Ingeschakeld","updated_at":"2026-07-10T02:28:53.502Z"} {"cache_key":"cb6c84443ca09ca66b9cc3bebc2538399e0634bbb3214579aa84fe99ee311828","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"nl","translated":"Samenvatting: {summary}","updated_at":"2026-06-16T14:18:09.152Z"} {"cache_key":"cb8038b94c017757920e8ad341143e8bc172fb9e33794542b1702bccc2245756","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"nl","translated":"Automatisch vernieuwen","updated_at":"2026-06-17T14:17:30.702Z"} {"cache_key":"cc5a2c41cabfb561da4374ca484c2367fdb978335927d638b45b393fdec29be9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"nl","translated":"Verbonden","updated_at":"2026-07-09T10:01:43.729Z"} @@ -244,8 +347,11 @@ {"cache_key":"cdea82f7653bc8517eda938aff4ce8bf0855ebc6f1fa8444a272cb1c7f97210f","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"nl","translated":"Verbindingen","updated_at":"2026-07-09T08:08:14.439Z"} {"cache_key":"cdfeaad30fc1babbc82cd33e77366dac8a2ab59d0e4ce5842f926b8a21bd9654","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"nl","translated":"Splitsen","updated_at":"2026-07-06T22:56:38.316Z"} {"cache_key":"ce7f256609a2bf160d44331f0c5277864a36f9c0f9ee4c7c64a50fd39e3b917d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"nl","translated":"Sessiewerkruimte","updated_at":"2026-06-16T14:18:17.492Z"} +{"cache_key":"ce943e5b0bef97d50e0c16d295c039f97774d7a694bf9f13405547a7803f637a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"nl","translated":"Pakket","updated_at":"2026-07-10T04:28:53.665Z"} {"cache_key":"cef8e7ca7aa858ae93e78b6e22483364b1ba7a2d4562b98fef26981db9cfcf55","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"nl","translated":"Bijlage toegevoegd","updated_at":"2026-05-30T15:38:50.257Z"} {"cache_key":"cf13a84f99451bc287c6e2bf80a263868297f1404f553fa69fe3e0fb98d6d20d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"nl","translated":"{count} gewijzigd","updated_at":"2026-06-16T14:18:24.009Z"} +{"cache_key":"d0b1eca553b379519578db390dcfbbc7904b55fccffc7668afe28d563323857a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"nl","translated":"Geïnstalleerd","updated_at":"2026-07-10T02:28:48.783Z"} +{"cache_key":"d0f3d4bc1d0dafb2023da41f5b9bf4af4549b8bec2b7514e2df207cf35215c51","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"nl","translated":"Plugin bundelen","updated_at":"2026-07-10T02:29:07.297Z"} {"cache_key":"d106faec8498e26d1ce8128ac3b7ec29ff25b77688ec00ab5e2aa0fd43cd1481","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"nl","translated":"Nieuwe chat in worktree","updated_at":"2026-07-06T04:56:46.364Z"} {"cache_key":"d1c04ba219c77963db77445898ff36fde37800fde27cebdfc215d1867bcccfad","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"nl","translated":"{count} gereed","updated_at":"2026-06-16T14:18:17.492Z"} {"cache_key":"d23899ea988c4e18d256baf0b20ef62401755385e8bdb8026faf497fcf9c5e63","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"nl","translated":"Herstellen","updated_at":"2026-07-05T21:01:37.071Z"} @@ -255,24 +361,32 @@ {"cache_key":"d65997e092d6b10db062e279329cdcab18b3ec73004b2a97448eed19d14e7a4b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"nl","translated":"Geen Codex-hosts gevonden","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"d771a510805ad2fb446a50f7455e0b7b059492b353f7cb092c792f33d685fc6b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"nl","translated":"Worker-logboeken","updated_at":"2026-06-16T14:18:09.152Z"} {"cache_key":"d78e3bbfa65af411c29d5f738cd892a482898a079455ce8e4a457ebd7edd8ba7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"nl","translated":"klaar niet-toegewezen","updated_at":"2026-06-17T14:17:36.035Z"} +{"cache_key":"d7b9f5cb37cf715587be230427a83e015330dff51c36d33b262882d45943b248","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"nl","translated":"MCP-server {name} toegevoegd.","updated_at":"2026-07-10T02:28:58.149Z"} {"cache_key":"d8a9c3f3554e93601780d385dc3e7ba7de95ae6c6ba4b9b84e3a5ce43cadf36f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"nl","translated":"Commentaar na het uiteindelijke antwoord behouden","updated_at":"2026-07-01T01:08:53.808Z"} +{"cache_key":"d8b2d76762204b21191ad80f79ef047a12726ff34a04ee28095a3a0ecec43fe3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"nl","translated":"Werkruimte","updated_at":"2026-06-16T14:18:17.492Z"} {"cache_key":"d8b849f414280136dc3f917e34fc2d612c98ec77a7ab15f04aa67976213bced1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"nl","translated":"Actief","updated_at":"2026-07-09T10:01:43.729Z"} +{"cache_key":"da3719a8bdb3316d3d0e38f19a1f380c0c98d05f589f13109ab90aff5f121c23","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"nl","translated":"Problemen","updated_at":"2026-07-10T02:28:53.502Z"} {"cache_key":"dade2099f4565813d145f33432df595bb6058374d844abd98df82cbc52a8216b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"nl","translated":"Gisteren","updated_at":"2026-07-05T14:40:20.847Z"} {"cache_key":"db42f90f584ad75387ba20c2c4b5818f9d2105fc879cd28d7a4c7b4644e4ed64","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"nl","translated":"Groepsopties voor {group}","updated_at":"2026-07-06T23:41:19.182Z"} +{"cache_key":"db5e861f3c83665ac27844341c48b78b04c681c3699f338041676aae44a98619","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"nl","translated":"Servernamen gebruiken letters, cijfers, punten, streepjes of underscores.","updated_at":"2026-07-10T02:28:58.148Z"} {"cache_key":"db9ddb7605768fa72b2eddf2504d6719a2b908acb788f094e586d28d7a247a8e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"nl","translated":"Uitvoering","updated_at":"2026-06-16T14:18:09.152Z"} {"cache_key":"debff2acb0f08a7abcd30447ce1724a0b233da4e9dd273ffeca7aaeccfc37996","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"nl","translated":"Komt nooit langs","updated_at":"2026-07-09T20:51:56.896Z"} {"cache_key":"dffb6d4089b04b96d2b16470e1cde9b45856846fe44432ced18a23b11312dfbe","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"nl","translated":"De eerste overeenkomende bestanden worden getoond. Verfijn de zoekopdracht om de resultaten te beperken.","updated_at":"2026-06-16T14:18:24.009Z"} +{"cache_key":"e0358f7091f6b1de3269cc9edfae3a50668e96a136dc7a33e33d85db8d69db15","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"nl","translated":"Probeer een andere zoekopdracht.","updated_at":"2026-07-10T02:28:53.502Z"} {"cache_key":"e116b4ffade997d2825031156aa652af9a11e7bacbc0fde0240cd39021afab09","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"nl","translated":"Ontbreekt","updated_at":"2026-06-16T14:18:17.492Z"} {"cache_key":"e1a64d3ebe6a8087d054933db0898bc0f1de91dbb6b19f798d6a25e687c67fcf","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.restoreSession","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Restore session","text_hash":"35e4dc9befd3b3a29b50938839af0efb41b08051988dde53e1c1e73d1c2a039f","tgt_lang":"nl","translated":"Sessie herstellen","updated_at":"2026-07-02T14:31:07.310Z"} +{"cache_key":"e2eca1aa0a05f0fc2b9b28360e9964ab287b89290c454bf699028876a8391b1f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"nl","translated":"Plugins laden…","updated_at":"2026-07-10T02:28:48.783Z"} {"cache_key":"e4e874ab6146a84360fcc8161f7f1a489b55cbfc4345abe258c57a7ce4303e39","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"nl","translated":"Groep hernoemen","updated_at":"2026-07-06T23:41:19.182Z"} {"cache_key":"e569c8edeeec6e027dd3013a5e1add94707c6771ad3c1ae7eed07fbb9373afb7","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"nl","translated":"Orkestratie","updated_at":"2026-05-30T15:38:50.257Z"} -{"cache_key":"e5ba248fc61278ac9158d6aceca468960992fbcea2ddb7b455a2538993357d25","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"nl","translated":"Sessiebestanden tonen","updated_at":"2026-07-10T06:08:47.513Z"} {"cache_key":"e61e41ab27f49511a34b708f31d8c0834687057b9cd79a3a0f1f81a8b9cb8ee6","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortCreated","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"nl","translated":"Aangemaakt","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"e6de62fed25705c61f10c83f8a9288f44f6131ff861c15df0897c9fea2508567","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"nl","translated":"{name} geïnstalleerd.","updated_at":"2026-07-10T02:29:07.297Z"} {"cache_key":"e6e87bf091b33ae7d4bbc45fa78be568c88ba6fdee7f80c7c3b70ee012262854","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitFiveHour","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"5-hour limit","text_hash":"26d04fad786b1e3a08fd957ec893b0457b72a2926da0ee63847aea9037951d24","tgt_lang":"nl","translated":"Limiet van 5 uur","updated_at":"2026-07-09T11:49:55.613Z"} {"cache_key":"e6f48f62b167833335d714cc2380e3b71081a01e7888678832b137bde4f4a747","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goal","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Goal","text_hash":"cdbf6975e8a35b0d03558be6822dfae166482c24fb86b0433f60e8167f5c91e4","tgt_lang":"nl","translated":"Doel","updated_at":"2026-05-29T21:02:33.311Z"} -{"cache_key":"e7b0af95a7bf8175a7509d118d32a27797fc083ac75fb9b17c1d8a4dfa4cd60f","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"nl","translated":"Aan de rechterkant vastzetten","updated_at":"2026-07-10T06:08:47.523Z"} {"cache_key":"e7b1e2d29045f3b78b45da6f754417e5e82928b4b9889f4d084ba17e6c47afdd","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"nl","translated":"Sessie losmaken","updated_at":"2026-07-02T14:31:07.310Z"} {"cache_key":"e7b5d8bc7926048628a8552c9eb53822eec42b7fd30223690e9dbc1ea08f6829","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"nl","translated":"Skills: {skills}","updated_at":"2026-06-16T14:18:09.152Z"} +{"cache_key":"e7fe19dd5ede26cb1b8ef30c141ef0bf7fdff2482ff48a94b1a3198541897a46","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"nl","translated":"Codeplugin","updated_at":"2026-07-10T02:29:02.639Z"} +{"cache_key":"e94237d1f2922c5640a0255756a71edb685f25862437927e59b8e27d09f56dfa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"nl","translated":"Gateway offline","updated_at":"2026-07-10T02:29:02.639Z"} +{"cache_key":"ea5d60bfb94e573c2b5cb1065ceecf27768a2683f96e20ab71e3edc216d69e17","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"nl","translated":"Er zijn nog geen MCP-servers geconfigureerd. Voeg er hier een toe of kies een connector in Ontdekken.","updated_at":"2026-07-10T02:28:58.148Z"} {"cache_key":"ea6e747db41213263d163632fe11cfeb3b8f5dada0546768316888e7984801dd","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"nl","translated":"Naam","updated_at":"2026-07-05T21:01:37.071Z"} {"cache_key":"ea7542475f19f96c72ac70bb7e1ba232c5edee883c6f65395d5872742a4187ac","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"nl","translated":"Geavanceerde instellingen vereisen beheerderstoegang","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"eab2584537fec740e4a1ec35af816c4cd3ad6dd020ab7502e89592a8a2e9d3e4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"nl","translated":"Actief","updated_at":"2026-06-17T14:17:30.702Z"} @@ -281,13 +395,19 @@ {"cache_key":"eced283124e659d7d118b62383cb001ce16b5852475fe03c9ba0e9796c3e1ed2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"nl","translated":"Geen activiteit","updated_at":"2026-07-05T14:40:20.847Z"} {"cache_key":"ecf55f10effe7949c5b432c5714b8c56a9e583055e54b83d17e3ece3e1e8b45d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"nl","translated":"Commentaar","updated_at":"2026-07-01T01:08:53.808Z"} {"cache_key":"ed2dd36ed7de22efa8a3b9b41794981db00f932f76405c9f4a683d1bfa4ee0c5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"nl","translated":"Notitie toevoegen","updated_at":"2026-06-16T14:18:17.492Z"} +{"cache_key":"ed8c937b12b473e33e4aec13a124a636f3d078e30055da2426aff7472c089607","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"nl","translated":"Geïnstalleerde plugins filteren","updated_at":"2026-07-10T02:28:53.502Z"} {"cache_key":"eda841b38d87bc8502d1295e903a22d43721dc2b7db6122a129e9cdea9dda5f0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"nl","translated":"Thread","updated_at":"2026-07-09T10:01:43.729Z"} {"cache_key":"efa56d3f17acb13447607a981a218b6c26fcb6406317d6564b1a43ab259dcf5a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlockedTitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Waiting on dependencies: {parents}.","text_hash":"50fb8f9b1326b69bd67d25583ddb4f70b9d75ae6e3ff8a9056a9361daa4b7d8b","tgt_lang":"nl","translated":"Wachten op afhankelijkheden: {parents}.","updated_at":"2026-06-16T14:18:17.492Z"} {"cache_key":"f072b45537bd11ae936b4b6a6e2116b3558e92f678fd4157dee5c9a9e9fa3a5d","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"nl","translated":"Toolfout","updated_at":"2026-05-31T06:44:10.180Z"} {"cache_key":"f0e8ac4f8d4197c46be5b4d8e346306d2d56173a8965954c88c35fafe47c67a2","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"nl","translated":"Dagelijkse providerkosten","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"f290ba8605773bcb507d69958b7e96417c38ffc7eded4858e1c39cdabfc6c198","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"nl","translated":"ClawHub zoeken","updated_at":"2026-07-10T02:28:48.783Z"} +{"cache_key":"f30196b80218d850042271bcc026575f2047ad9503c2c4db503c2f46bd5c04a3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"nl","translated":"Maak verbinding om geïnstalleerde en aanbevolen plugins te bekijken.","updated_at":"2026-07-10T02:29:02.639Z"} {"cache_key":"f447e9cd0d2da5751f7602b2acc2acda662ed7105c02a8aa14a388ef344660e6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"nl","translated":"Talk-fout sluiten","updated_at":"2026-06-16T14:18:17.492Z"} +{"cache_key":"f4d18cd2b60c1a3bce8d6de1b150cbdb247892d5e1a800f035fe4486001c950c","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"nl","translated":"Gebouwd","updated_at":"2026-07-10T09:47:47.345Z"} {"cache_key":"f4df69f6b4db7a82f258a7153a1f502a4c8651c6ed3da57aec1a2bf93a8f8a78","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitHours","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"{hours}-hour limit","text_hash":"c9091350c3c5c4e3c54dae43eec58cd35555724276a0acc388b98239a573f9df","tgt_lang":"nl","translated":"Limiet van {hours} uur","updated_at":"2026-07-09T11:49:55.613Z"} +{"cache_key":"f53b6277060c7c950da2abd41c927d019fcade4e56f134ddbb706baaa5e4ef51","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"nl","translated":"Verwijderen","updated_at":"2026-07-10T02:29:02.639Z"} {"cache_key":"f56bc7ac16e892ffecc5d676bc8864c65762305c3ed1eddce994592e7a24b5f2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"nl","translated":"Datum","updated_at":"2026-07-05T14:40:20.847Z"} +{"cache_key":"f6570d3d5b7fe48c71577ed6cc62643f09dcb10eddbb16222290819bfc7fca94","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"nl","translated":"ClawHub zoeken","updated_at":"2026-07-10T02:28:48.783Z"} {"cache_key":"f7088f37548ce33b12d21c16182c30c4d3a85099fc28161866e0967a632a952f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"nl","translated":"Huidige chat gebruiken voor revisieverzoeken","updated_at":"2026-06-16T14:18:09.152Z"} {"cache_key":"f75819b456837e36558521b0a04f21385a36f8aff0f8b2c08288c6615096c636","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"nl","translated":"Huidige chat gebruiken","updated_at":"2026-06-16T14:18:09.152Z"} {"cache_key":"f7cd5114446a3cfb8cf8d8314b17280641b4d1916e90001f26e6f28b5258e29d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.runDuration","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Run duration","text_hash":"b5e9698b25697ec71f0947df28e6b08438033fe73b1b87ac7362766d77b45b97","tgt_lang":"nl","translated":"Uitvoeringsduur","updated_at":"2026-07-09T10:13:32.476Z"} @@ -297,4 +417,8 @@ {"cache_key":"f9e30d8807d9ce2405e1491e8ab72f587077f44bdea2ebce626f818f1608b7e7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"nl","translated":"geblokkeerd","updated_at":"2026-06-17T14:17:36.035Z"} {"cache_key":"fa14d7b4032a4436f62425187289384ec6e73877dd49a7621478c1cbddac8200","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"nl","translated":"Kaartdetails","updated_at":"2026-06-16T14:18:09.152Z"} {"cache_key":"fa9feddef17f7850d687c2703690e0b3e772a06e3db56cf54655dd62f37ceee6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"nl","translated":"Voer /pair qr opnieuw uit om een nieuwe installatiecode te genereren.","updated_at":"2026-07-01T10:34:14.146Z"} +{"cache_key":"fb11af4d214fdbf1866c2bd358dd3724e5aec82559746c7cedad1e476eb161ea","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"nl","translated":"{name} toegevoegd. Werk het eindpunt en de inloggegevens bij in de MCP-instellingen vóór gebruik.","updated_at":"2026-07-10T02:28:53.502Z"} +{"cache_key":"fbaab325b8babc8b4e1e015c3c8869a82cf5d6c10b405ffe6e2c6f643bb3d90c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"nl","translated":"Thuis en media","updated_at":"2026-07-10T05:22:44.372Z"} +{"cache_key":"fed0a95095ce6ee50dfd04b4a577aeed9fd1bae8da9c431f7c09eeafc7f6274a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"nl","translated":"Verbind je wereld","updated_at":"2026-07-10T02:28:53.502Z"} +{"cache_key":"ff0a2069a79b196339c363c2c53a3d69283aae1cd371135ea0241e9286391095","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"nl","translated":"Inschakelen","updated_at":"2026-07-10T04:28:53.665Z"} {"cache_key":"ff28f33480b4fb6155de5c965bb7694d1b7b033ff31faa28367c3cce67d469da","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/nl.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"nl","translated":"Laatst actief","updated_at":"2026-07-05T21:01:37.071Z"} diff --git a/ui/src/i18n/.i18n/pl.meta.json b/ui/src/i18n/.i18n/pl.meta.json index c01dc88ba91d..6144411ce511 100644 --- a/ui/src/i18n/.i18n/pl.meta.json +++ b/ui/src/i18n/.i18n/pl.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:27.094Z", + "generatedAt": "2026-07-10T09:47:35.489Z", "locale": "pl", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/pl.tm.jsonl b/ui/src/i18n/.i18n/pl.tm.jsonl index 0040ecad2ee7..4672bf2b87c3 100644 --- a/ui/src/i18n/.i18n/pl.tm.jsonl +++ b/ui/src/i18n/.i18n/pl.tm.jsonl @@ -1,17 +1,24 @@ {"cache_key":"008941feb054335e7a86689b715b7cf0635309302eae4d5d1cf1900f5fd0a1b0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"pl","translated":"15 s","updated_at":"2026-06-17T14:16:37.628Z"} {"cache_key":"0129200f033f86307daf6d202049ae9bee178cb329f4468637ebf78c33cc19c8","model":"gpt-5.5","provider":"openai","segment_id":"connection.offlineHint","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Live updates and actions are paused until the connection returns.","text_hash":"7a60105cdafb6aa95b9081a370308a9ccd495199c9bfb90d3e0f70af68680f26","tgt_lang":"pl","translated":"Aktualizacje na żywo i działania są wstrzymane do czasu przywrócenia połączenia.","updated_at":"2026-07-05T21:55:48.401Z"} {"cache_key":"014fe453b0fabb69679ffa5df612f10425e59f0be0bcd7dffdfe59617415ded3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"pl","translated":"Zaktualizowano {time}","updated_at":"2026-06-17T14:16:37.628Z"} -{"cache_key":"0185422083d39be1748650170c7669fa7f80545faef0e96a21e7b71dfe2590ff","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"pl","translated":"Pokaż pliki sesji","updated_at":"2026-07-10T06:08:36.073Z"} -{"cache_key":"0265186a4ae3a16cd3b9d2f2adb00dc8069069eacdf8312f9b6e7ba9a8d3ae61","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"pl","translated":"Zadokuj u dołu","updated_at":"2026-07-10T06:08:36.073Z"} +{"cache_key":"01eeb6766d2abefac893be8aebfd1e0675605afc9982b1fa7c42a4acc49b8d73","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"pl","translated":"Szukaj w ClawHub","updated_at":"2026-07-10T02:27:43.503Z"} +{"cache_key":"02e53ffe9d742eecb707c6d3a32920115efb9dbe2debfaec5d1766c44aaced04","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"pl","translated":"Szczegóły kompilacji Control UI","updated_at":"2026-07-10T09:47:35.486Z"} +{"cache_key":"03856c760881569bc9c3f9a88fcd12979372e090b31c06dadb99ab27f76f658c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"pl","translated":"Tylko przeglądanie. Zmiany wtyczek wymagają dostępu operator.admin.","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"03c667b1041bc104abf99c4b55526d81499cc692b23104f24027af0356a01a37","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLongestStreak","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Longest streak","text_hash":"49095cff1349a49e9b8672a0ef850d5bec7be2af58e803a0f17c41faf6753f39","tgt_lang":"pl","translated":"Najdłuższa seria","updated_at":"2026-07-09T11:28:29.733Z"} +{"cache_key":"03de79d79c6673a963145b030f2756cf2b4fede863c7bb07aa8bf9bcd71342db","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"pl","translated":"Przygotowywanie wyszukiwania…","updated_at":"2026-07-10T02:27:43.503Z"} {"cache_key":"03e76af0095bf12c4a730713ca4d1d8ccc6dc5c4135092e5dcea80bf7ed17c90","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"pl","translated":"Ostatnia aktywność","updated_at":"2026-07-05T21:01:26.445Z"} {"cache_key":"046474579afd107ac15bb5e96647fe9d4aa56b2cf815cbd62e7c7f1c5247a853","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"pl","translated":"Automatyczne odświeżanie","updated_at":"2026-06-17T14:16:32.528Z"} +{"cache_key":"04b5992e2c5924d8926ab256685443c69d7b219e004c687e52df830d1f96cd0c","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"pl","translated":"O aplikacji","updated_at":"2026-07-10T09:47:35.486Z"} {"cache_key":"058e9d5f5c3384178e2c10d0123e9754cec48694fdc6f828d8534e09c6cd9b34","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolRuns","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} runs","text_hash":"627a5f9e7cc0ba0f9bc65c55fb5e6421519e92d24f35dabffabb1eaf16aa750b","tgt_lang":"pl","translated":"{count} uruchomień","updated_at":"2026-07-09T11:28:32.832Z"} {"cache_key":"062491f5f39f2204f135e6da2f403f1ca859d99791e649b94de22b46b0b768f3","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"pl","translated":"Agent","updated_at":"2026-07-05T14:40:11.071Z"} {"cache_key":"079a36385bfe00fe931f58df285b9d3210a9a5eb1428e3e0e2745a3d5de4bfd7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"pl","translated":"Zobacz szczegóły","updated_at":"2026-06-16T14:17:07.423Z"} {"cache_key":"07c01c18e9b61eb8507cdd33849278969f0111cbfdde48e046d83a6835a40db5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"pl","translated":"Wysoka","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"07f17ca633868b74c882c768bba12c0f6b04c4be298c8a053ff56a6eb3c122c5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"pl","translated":"Pamięć","updated_at":"2026-07-10T02:27:51.614Z"} {"cache_key":"086c863c12458f16120fd4a26afc24dc2f2bdef8e0eb79d93023e5825f63b3de","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"pl","translated":"Orkiestracja","updated_at":"2026-05-30T15:38:42.049Z"} +{"cache_key":"0961aeb4eeefa68dff3e00284215855274426767be7615f140f12cc718ea67ee","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"pl","translated":"Oficjalne wtyczki","updated_at":"2026-07-10T02:27:47.890Z"} +{"cache_key":"0a4e65ee34e5a442b112c1012deab2cf3241bb7f4fba3b36212dfee2749e4192","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"pl","translated":"Usuwanie…","updated_at":"2026-07-10T02:27:54.952Z"} {"cache_key":"0a851cea32d108958a79ffaa0a9aa19eacdae272c8cd042d5278a3b6995d8ea2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"pl","translated":"Kondycja tablicy","updated_at":"2026-06-17T14:16:37.628Z"} +{"cache_key":"0b2268ab62e643fd5b52ea7850af5e01422202a4d8d40df3435bdaa3ab8d1634","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"pl","translated":"Serwer MCP o nazwie „{name}” już istnieje.","updated_at":"2026-07-10T02:27:51.614Z"} {"cache_key":"0b2a029b4ad96465db0709b10570effc3cb6ba3d5c311413838fb199d6f61072","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"pl","translated":"Otwórz szczegóły użycia kontekstu","updated_at":"2026-07-05T10:16:26.554Z"} {"cache_key":"0be6d93c6982a485680fd9b03e338358d342ed83c566af842f153b041b513bdb","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"pl","translated":"Wizyty homara","updated_at":"2026-07-09T20:51:47.820Z"} {"cache_key":"0c46c00a92e5aea7da40906d6f3ee6f7785917de8ba4cc46b9a84d054ee731db","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"pl","translated":"Otwórz na pasku bocznym","updated_at":"2026-07-09T11:03:05.340Z"} @@ -19,64 +26,88 @@ {"cache_key":"0c9c9299905f7e7c7df89c1fcedba15ad5dbb2f93ea4f85aefc0f10825447e45","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"pl","translated":"Zaktualizowano: {time}","updated_at":"2026-06-16T14:17:07.423Z"} {"cache_key":"0d5bb8bdcc33a37bb6f39f067ca91a222a21fc50ec3dae4ef18467521b4dbef7","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"pl","translated":"Wejście mikrofonu","updated_at":"2026-07-06T17:34:00.024Z"} {"cache_key":"0db981998b39620e1b6e33e6b15f717ec1ccae2397fd80b93d716fda08cafccf","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolRun","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} run","text_hash":"269b72554d7e530ba9a8a05270baba9af1ea6a9f02bb4889bf75ef0b3bb20c44","tgt_lang":"pl","translated":"{count} uruchomienie","updated_at":"2026-07-09T11:28:32.832Z"} -{"cache_key":"0dc39286daf853a0ca3066cf41004c24cf813632a4dbc40732b6d4eb85504809","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"pl","translated":"{name} · pierwsza wizyta {date}","updated_at":"2026-07-10T04:20:42.557Z"} {"cache_key":"0e5ab8788b7723ad29b9ffc38b3116bbbcfcfa5ce23dea2bc12c47bafa0b070a","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"pl","translated":"Przywróć tę sesję, aby wysyłać wiadomości.","updated_at":"2026-07-02T14:30:38.319Z"} {"cache_key":"0ead0750639426ab7a9908602b19a23757ad4857973fa5ee7178f8ccd8cdefeb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"pl","translated":"{agent} (nie skonfigurowano)","updated_at":"2026-06-17T14:16:32.528Z"} {"cache_key":"0efb536916f452078932aaa7196a13ddaad31034961722a81aa6aea4619b0279","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"pl","translated":"Tryb kolorów: {mode}","updated_at":"2026-07-07T08:47:38.589Z"} +{"cache_key":"10a11798ee06ea34d8292905ce84254482db2ae85f5d189c2d60f143249d37ec","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"pl","translated":"Zgłaszana przez aktywne połączenie Gateway; niezależna od tej kompilacji Control UI.","updated_at":"2026-07-10T09:47:35.486Z"} {"cache_key":"12885142433e7e36c3e3fea1cf4d3d6a70b22515935bdaef03f744aca1fe2f95","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"pl","translated":"Katalog główny","updated_at":"2026-06-16T14:17:21.494Z"} {"cache_key":"13f97b84256fdb8568361c770d2aae341991d5636155816e11d48334e74ef911","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"pl","translated":"Repozytorium","updated_at":"2026-07-05T21:01:26.445Z"} {"cache_key":"14269f7d77cc0b824f1c9399a5b82179983ee8b985b53d2d2ad7174768794dd9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"pl","translated":"Połącz się ponownie z Gateway, aby odświeżyć sesje Codex.","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"14cfcabf4ea6f34c4a1a24de6a5ea514eb0450781eb16fae5df00adfccde74a9","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"pl","translated":"Nazwa","updated_at":"2026-07-05T21:01:26.445Z"} {"cache_key":"14fa61b3d5bcf3b56f86c4b7e12f2e070f4e4eeecc240f150d4f3b4496c00cb7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"pl","translated":"Model","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"1513162ba2782da273289ae9da75e901ed877b199289095b44e99141e31ca5ba","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"pl","translated":"Włączone","updated_at":"2026-07-10T02:27:54.952Z"} {"cache_key":"154565b6bb74589b389db922541eefd5bfb0e39eebd833df081644de30b0723f","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"pl","translated":"Zakolejkowane i uruchomione zadania w tle.","updated_at":"2026-07-09T21:53:34.725Z"} {"cache_key":"159b53b073ecd7e4f586a985874d2d3df27e493ab75471c61b5aa7d4bd058d2d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"pl","translated":"{count} wyświetlonych","updated_at":"2026-06-16T14:17:21.494Z"} {"cache_key":"15a2aa358bef5e3a554507484321a12f00f474b35294e5383afe6c509faf4458","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"pl","translated":"Automatyzacja","updated_at":"2026-06-16T14:17:07.423Z"} {"cache_key":"165ac1b905a373b1f0afc7b850c82dec0d88d1469e6bd061d0cc7e41f978aeba","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.sessionsCapped","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count}+","text_hash":"4af395b8d907e1cc1d3de75eb4644a9ed3a243f5f5a66f93da927d7899844d57","tgt_lang":"pl","translated":"{count}+","updated_at":"2026-07-09T11:28:32.832Z"} {"cache_key":"16be5543c52ab197a813b4762b9271d478ce937156b487c64a8b27834c8854f5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"pl","translated":"Wykorzystano {percent}% kontekstu ({used} / {context} tokenów)","updated_at":"2026-07-09T07:06:32.112Z"} {"cache_key":"16eda730e1492667ae42e1f819428ed9d03e4940f28191e129da48f9da93f4d0","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"pl","translated":"Ta przeglądarka nie może wyświetlić listy wejść mikrofonu.","updated_at":"2026-07-06T17:57:07.854Z"} +{"cache_key":"17c10ff01ba34bad60c6089f0a3e97a3f7ffed0b17718f47a6d5bc2aeb42adcc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"pl","translated":"Życie codzienne","updated_at":"2026-07-10T05:22:35.966Z"} {"cache_key":"1801d5dc126e4a74dfaab286a9686034c0aa7210a21b7ea49a155cd489074a14","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"pl","translated":"Izolowane kopie robocze repozytoriów należące do OpenClaw.","updated_at":"2026-07-05T21:01:26.445Z"} {"cache_key":"180b3da988aa27e4b1c6ed13734840ff55a4a9fa2c60639558caa57cbedf6e1d","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"pl","translated":"Okno kontekstu","updated_at":"2026-07-05T10:16:26.554Z"} +{"cache_key":"18b03b54c40ee40ab8bb39e610105d89a6fec8db50393ae132073f82b0b3b753","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"pl","translated":"Filtruj zainstalowane wtyczki","updated_at":"2026-07-10T02:27:47.891Z"} {"cache_key":"191c24c2f9508285a26999d97d4beb9991434a4d79723acda69ec0b0c2bc7769","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"pl","translated":"Mikrofon {number}","updated_at":"2026-07-06T17:57:07.854Z"} +{"cache_key":"19379d95172dc2b981a97272fb69c001d967946e760bfaaedb5847ac363acd07","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"pl","translated":"Instalowanie…","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"19500a302b61d074dccd6bd51d1f4ca407c34d7640f7d617ab9097b0d6dded9d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"pl","translated":"Bezczynna","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"19e2d60212b3dded6bb51b66424062334d75452e90ce7ff37d68a604fe2d0f67","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightUniqueTools","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Distinct tools","text_hash":"fba464c701baf969580caaec17d4b305c85824e189a770ce3c6ff4b6fa120989","tgt_lang":"pl","translated":"Różne narzędzia","updated_at":"2026-07-09T11:28:32.832Z"} {"cache_key":"1ae8841ecfe18ff7f01a4bc6b10c01e94a75823bedd06c76476039d0bd8cbb0b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"pl","translated":"{agent} (domyślny)","updated_at":"2026-06-17T14:16:32.528Z"} {"cache_key":"1b336669341608dc242db59805a05237b2d407b150f018ab1f8d5e0b7559d2ac","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"pl","translated":"{count} zmienionych","updated_at":"2026-06-16T14:17:21.494Z"} {"cache_key":"1b7563330091ae01f11bad7965239901cc54542e040274a38f4087e437cc537a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"pl","translated":"Zmień widok, wyszukiwanie, priorytet, agenta lub filtr archiwum.","updated_at":"2026-06-17T14:16:37.628Z"} +{"cache_key":"1e8776c9c6a4f5e232ae8c3798db3d2b7ced9af12bb899656bf0fa1dcda5a27e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"pl","translated":"Wpisz co najmniej dwa znaki, aby znaleźć wtyczki kodu i pakietów.","updated_at":"2026-07-10T02:27:43.503Z"} {"cache_key":"1ea0101fd7cb262e3b05df7ae4b9c6fa5c1472552fb3f391f827717204b90b18","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"pl","translated":"Zależności","updated_at":"2026-06-16T14:17:14.640Z"} {"cache_key":"1f7a0c432b26ad32bb7777a1d0d104ce5d37022d5b69d6727f0ba7a0f6efb784","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"pl","translated":"Tablica: {board}","updated_at":"2026-06-16T14:17:07.423Z"} +{"cache_key":"1f961eb79ef116af0424a25acad758e6f4b66c5634f83792faf92131e793152a","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"pl","translated":"Control UI","updated_at":"2026-07-10T09:47:35.486Z"} +{"cache_key":"1fc210c98868b80fa6590af60a80f41ea31b5ca07e883cb1222f8675952313ce","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"pl","translated":"Wtyczki społeczności w ClawHub","updated_at":"2026-07-10T02:27:47.890Z"} +{"cache_key":"21737ee2e6cbedabeeed797cfe2c12999ee4d77979ce6b73e9cf83158363d30b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"pl","translated":"Znajdź w ClawHub","updated_at":"2026-07-10T02:27:47.890Z"} {"cache_key":"2230b866131380b78767725db7fc4239c195623cf268e57eadfa3f38a7d22b64","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"pl","translated":"Warsztat Skills","updated_at":"2026-05-31T21:48:36.995Z"} +{"cache_key":"227d48f7aaf4c7d1dfeef7c40e5d55353cd58308bc91a0bedb2fe586e42e8a30","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"pl","translated":"Spróbuj innego wyszukiwania.","updated_at":"2026-07-10T02:27:47.890Z"} +{"cache_key":"25fef136a8c86d1543344da24ba1cead09dc1d537abe8b962d3d685abd8553eb","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"pl","translated":"Niedostępne","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"2609289aaacabfd3b3104618dfe2f5f903b1fa0fd04d2c16b03c6845117e9fa2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"pl","translated":"Ścieżka obszaru roboczego","updated_at":"2026-06-16T14:17:21.494Z"} {"cache_key":"264ebe49713a7fa9402871b74d9e8a53c6217defc3ef93f3615cfec16a026ea9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"pl","translated":"Brak notatek operatora.","updated_at":"2026-06-16T14:17:14.640Z"} {"cache_key":"2809f9e94acf30ab9c168dbb60759803a43edf72db303f77482a8c8a5e4fcffd","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLifetimeTokens","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Lifetime tokens","text_hash":"3d7b0d3aa231e0a255b58b67aa9eeb2b921b19ce9aa983bb867d7b7cf3e16ce9","tgt_lang":"pl","translated":"Tokeny łącznie","updated_at":"2026-07-09T11:28:29.733Z"} +{"cache_key":"2812a09ace0f7311a5090178fc1942e382fe6d249ad819e597f9189e95dbac57","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"pl","translated":"Zainstaluj {name}","updated_at":"2026-07-10T02:27:59.728Z"} +{"cache_key":"285bd0f85c304eadcafb6a785b61754758894661ffe875e97758b26b2c1fe1a9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"pl","translated":"Kanały","updated_at":"2026-07-10T02:27:51.614Z"} +{"cache_key":"28d442e374a97d862c5f34ec54b9c35e9db2e14971e4480f26aa584ab226ac2e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"pl","translated":"Katalog wtyczek","updated_at":"2026-07-10T02:27:43.502Z"} {"cache_key":"28e0fe7461b7a385f42372c930aa1ac7847e1dcb65a0fda357357d80bb4a258f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewBlocked","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Blocked","text_hash":"18f2a0947f9d6523991b29b450307f22773f57d65f7efb98d48a167df04d6b1d","tgt_lang":"pl","translated":"Zablokowane","updated_at":"2026-06-17T14:16:32.528Z"} {"cache_key":"28e9661999f27b7dc8e48ea6562f5acdfe78ac453dadfefa7c7a8262b17a2882","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"pl","translated":"Wyniki wyszukiwania","updated_at":"2026-06-16T14:17:21.494Z"} {"cache_key":"290d811a91e1683d0c770595e162e74f6954a8ada9725281e5adccfbbd39d0c0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"pl","translated":"Karty jawnie przypisane do skonfigurowanego domyślnego agenta.","updated_at":"2026-06-17T14:16:32.528Z"} {"cache_key":"2a686d0549eb1ca58504fb957af8e5620d7039b61e38682d9b700d315c9821c8","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"pl","translated":"Połączenia","updated_at":"2026-07-09T08:08:08.824Z"} {"cache_key":"2acde460079ef45fc20cf96806040bdfc567b2ee925d1c7ac1a288d8217461cd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"pl","translated":"Pliki projektu","updated_at":"2026-06-16T14:17:21.494Z"} +{"cache_key":"2b275562160c9f5abe0661736b400a70de38c38bc37077ba72374b95d90090df","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"pl","translated":"Szukaj wtyczek","updated_at":"2026-07-10T02:27:43.502Z"} +{"cache_key":"2bd44f291fe74c8c757c78dacebd7aa8215cbae99453e9d45a2e3adb9b235513","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"pl","translated":"Gateway offline","updated_at":"2026-07-10T02:27:54.952Z"} {"cache_key":"2d2239a8d978723f93bfcc07317fb712c6ef638ab5a6fecefd348c949ec3e579","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"pl","translated":"Widok tablicy zadań","updated_at":"2026-06-17T14:16:32.528Z"} {"cache_key":"2e124053aa6bb951f121a72a512c8946f2259386b97055638e2c90714bc8de0c","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"pl","translated":"Daj znać dyspozytorowi","updated_at":"2026-05-30T15:38:42.049Z"} {"cache_key":"2f7e3174e23e62718c04678d92e95a0508e305628ea42522f1a4003199eddc84","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnly","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Archived only","text_hash":"da7ebd8c482f38dc2a5b693a0ec25aaa04ea7b5fa3713cce9fa41a28f2201a6b","tgt_lang":"pl","translated":"Tylko zarchiwizowane","updated_at":"2026-07-02T14:30:38.319Z"} +{"cache_key":"2fa34422a27059146b69de52cacdd47abf11e7f4faaf6ab5f2efb1b758b4bb1e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"pl","translated":"Nie skonfigurowano jeszcze żadnych serwerów MCP. Dodaj jeden tutaj lub wybierz łącznik z Discover.","updated_at":"2026-07-10T02:27:51.614Z"} {"cache_key":"2fc939e4ab6358592f84339825496496e71640b1e87ad858b9185d0250330a26","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"pl","translated":"Starsze","updated_at":"2026-07-05T14:40:11.071Z"} {"cache_key":"310ca125971db4ad98ec05d3ce9f17e0ce1a753b444158c0b54053c033b8b94d","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"pl","translated":"Zarządzane worktree","updated_at":"2026-07-05T21:01:26.445Z"} {"cache_key":"312a0a855e3bbe8e216cf56d3594e3c7a240a9ab38a538a31a1892251f9ea01d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"pl","translated":"Wysyłaj prośby o poprawki do bieżącej sesji czatu zamiast do sesji warsztatu propozycji.","updated_at":"2026-06-16T14:17:07.423Z"} {"cache_key":"31846f6d8556f16595b033832ec457215066e9446e660ba9d40341eea4a2e1c0","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"pl","translated":"Tokeny ostatniego uruchomienia","updated_at":"2026-07-05T10:16:26.554Z"} {"cache_key":"3213615ad3fe7f82ede506c073954c3d08aedae6a5d34d2fed8e183917bc2877","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"pl","translated":"Kopiuj link","updated_at":"2026-07-09T11:03:05.340Z"} +{"cache_key":"323623b1d9f526d3336229b0ea2b14feb517cd6d677c4754f4c9f060811d291b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"pl","translated":"Programowanie i infrastruktura","updated_at":"2026-07-10T05:22:35.966Z"} {"cache_key":"32fbfa17034cfbd525bebd16a18cb23cd76ce38eba518db4f3d86215761fbf51","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"pl","translated":"Średnia","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"3399c955450c7bae2a2aaf193b9236f45ca2c93b1a18caf59c5cff74319836db","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"pl","translated":"Kompaktowa gęstość kart","updated_at":"2026-06-17T14:16:32.528Z"} {"cache_key":"340c598b19bf09015b6c6bb15614b2b08f38f7abedd0a6994953aeff8316dca3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"pl","translated":"nieaktualne","updated_at":"2026-06-17T14:16:37.628Z"} {"cache_key":"3413b325353507e0f0f979bbd8fcb0bf3cbb2275fd18a4000fbd3687d75263fa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityLow","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Low","text_hash":"f793de205ead5ac302c4a1627829dea41f176b1068b993a32373fc869918374b","tgt_lang":"pl","translated":"Niska","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"3507a61bd27d724742f6b54cdc6ae5a0bc17a43bcf2c0dc501e973625bbf5872","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"pl","translated":"Notatki operatora","updated_at":"2026-06-16T14:17:07.423Z"} {"cache_key":"3559e8324283571407127b56d7b2c2b40ca82658fe15bb0859689c2a4debc310","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"pl","translated":"Aktywna","updated_at":"2026-07-09T10:01:43.766Z"} +{"cache_key":"35854122e2ec88c07002a6939f8316b90d535d05c01870da5f7b273e2f1093d1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"pl","translated":"Przejrzyj ostrzeżenie ClawHub przed zainstalowaniem tej wtyczki.","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"35b0616496b5fb11c56c80f3951786e9d351087bd6d0c8396f376b53f93c1565","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"pl","translated":"Nieprzypisane (używa {agent})","updated_at":"2026-06-17T14:16:32.528Z"} +{"cache_key":"360e0d73f4e6cadc2e108ae0997e60b63ddcc0b47bcc6f754fc5662fb0f05667","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"pl","translated":"Wtyczki","updated_at":"2026-07-10T02:27:43.502Z"} {"cache_key":"36eda262dd99a3d2b61e6e92e5619aa779b74c13fc0cea42483dcc76e6273691","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"pl","translated":"odłączono","updated_at":"2026-07-04T21:24:02.485Z"} {"cache_key":"377079faa9db7677605631b10d3b2c9531e5221a766390b8a1d4f9e7baa382a4","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statPeakDay","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Peak day","text_hash":"c3a0833ac4b7cd06e29368f323fef10520637658605aa35de342df7bac6357f1","tgt_lang":"pl","translated":"Najlepszy dzień","updated_at":"2026-07-09T11:28:29.733Z"} {"cache_key":"37985e94eade4086fc3e14a7e80d8ce8b0898e794942ad67deeb16cb16c04c08","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"pl","translated":"{count} kart","updated_at":"2026-06-17T14:16:32.528Z"} {"cache_key":"37c5a6f61aadcc9ba1dc877a42dc78ced505317d2929bb640ab36f88f5404d06","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"pl","translated":"Gałąź","updated_at":"2026-07-05T21:01:26.445Z"} +{"cache_key":"380382bb1783e9172af427eaad1847adef575b4660f4c3e718c461dca6351b7c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"pl","translated":"Jednoklikowy serwer MCP","updated_at":"2026-07-10T02:27:47.890Z"} +{"cache_key":"38192b6df83bd2823307a555871696699db4d5523981ade44528ad5777855df2","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"pl","translated":"Zbudowano","updated_at":"2026-07-10T09:47:35.486Z"} +{"cache_key":"381eafad24a3afaf5830d9bae386b8d05c09b37707de3417a6d369a9206b21bd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"pl","translated":"Ładowanie wtyczek…","updated_at":"2026-07-10T02:27:43.503Z"} {"cache_key":"38e747f328eea30ff434de74d465bb697e410cdd86f2bab0cb6a10cfc38b369c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"pl","translated":"{count} sesja","updated_at":"2026-07-05T14:40:11.071Z"} {"cache_key":"3910ffcdecbb216f4837790b5e970d94607c481ff77df6359025c3e62d1cb836","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"pl","translated":"Nowa grupa…","updated_at":"2026-07-05T14:40:11.071Z"} {"cache_key":"39bcfab6213a2a754f2fe3c042e7609594a15cf81726d69209295d19d6baba82","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"pl","translated":"Flota Codex","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"3b1a7086aa3138debba9b765c0d9809f87d05a89b57c92434b4b8b524dbe931e","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"pl","translated":"{count} tokenów wyjściowych","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"3b8fde077f4ab223fa77ab5fc9910d8d26d73f06a8599676b0c1664a67b9934f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"pl","translated":"Opcje grupy dla {group}","updated_at":"2026-07-06T23:41:14.105Z"} +{"cache_key":"3c13f9b95a5d17f26cfe1b069b3aed79902d799ea2beb8d8472bd519b33ed5c5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"pl","translated":"Inne","updated_at":"2026-07-10T02:27:51.614Z"} +{"cache_key":"3c9aeebdd0f2551397dca198e623ea8349264090b1ca4b37e295db38dfd2ddd8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"pl","translated":"Z ClawHub","updated_at":"2026-07-10T04:28:43.372Z"} {"cache_key":"3ccb6e2fd09632e01ab9c1049706d53262dd01544d55e23273b01d1454203a2e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"pl","translated":"W tej sesji nie zmodyfikowano jeszcze żadnych plików","updated_at":"2026-06-16T14:17:14.640Z"} {"cache_key":"3d3e6281779a983600ce9ffa57fe5f7ba664246e5e30da041891fd425604c8f7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"pl","translated":"Gateway","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"3d6250af022798f3db3f7daf8e40b885f13c8f146af30a849505f23466db49e1","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"pl","translated":"Wczoraj","updated_at":"2026-07-05T14:40:11.071Z"} @@ -89,26 +120,37 @@ {"cache_key":"402c47f01f8549c8df8bff754d52c8d8f90882dc2a1fb1d0dffd024aa6d6a77c","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"pl","translated":"{count} logów pracownika","updated_at":"2026-05-30T15:38:42.049Z"} {"cache_key":"410cabe69ae7e5606a3c0ed1df8a0563a7f80eb88d0298c9484ff6e58913f393","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"pl","translated":"Niezgrupowane","updated_at":"2026-07-05T14:40:11.071Z"} {"cache_key":"410e8a651ad2b956e9288e6f422549a33cca870bc82a2ad2b83f7db4fc9ffe70","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"pl","translated":"Sesja","updated_at":"2026-06-16T14:17:21.494Z"} +{"cache_key":"41a28072a8c4ba29773c7ed3d1ffa21756c442b87d752c78178e6f5ecfd512e7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"pl","translated":"Praca i produktywność","updated_at":"2026-07-10T05:22:35.965Z"} {"cache_key":"438ecdb5c5e59a56c9b7e2a6a2c22c1bdf7876afa6c87303456878055ed417e2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"pl","translated":"Grupuj według","updated_at":"2026-07-05T14:40:11.071Z"} {"cache_key":"43a118abd4e13045a8a48cf10dcf163f41ac6bb8a66caf3f4cb6453c0d65d450","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"pl","translated":"Włącz udostępnianie sesji Codex na Gateway lub sparowanym komputerze, a następnie odśwież ten widok.","updated_at":"2026-07-09T10:01:43.766Z"} +{"cache_key":"4426f9c69bb9da7b4888e7f21547a114aa7c1ad5fbcc116f10fdc5c7b1f0cca0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"pl","translated":"Szukaj wtyczek","updated_at":"2026-07-10T02:27:43.502Z"} {"cache_key":"4456a49590a40b38ed009e73c1b73627841e621d38b24d697a00413cfad64573","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"pl","translated":"Przywróć","updated_at":"2026-07-05T21:01:26.445Z"} {"cache_key":"446e1957af843a2757ea2284276cc803f27bbf598e5fa39844248e45e6accffc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"pl","translated":"W toku","updated_at":"2026-06-17T14:16:32.528Z"} {"cache_key":"4496862336a5e3856345d926715758b3539e8e4a39f0c922884225adfd831c57","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"pl","translated":"Dzienny koszt dostawcy","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"451a0537619e8dc905ff397257b5ac5201f1092d4b8a15b0662d8541044b615f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.badge","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Expired","text_hash":"424a2551d356754c882d04ac16c63e6b50b80b159549d23231001f629455756e","tgt_lang":"pl","translated":"Wygasł","updated_at":"2026-07-01T10:33:32.568Z"} +{"cache_key":"452c69ef7f71f6787e541a38f00fe35f422ce6fdb88c40d1ddcc2852d044cc3c","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"pl","translated":"Tożsamość osadzona podczas tworzenia tego artefaktu przeglądarki.","updated_at":"2026-07-10T09:47:35.486Z"} {"cache_key":"456cc18fb9e8a0c82e5f6b8204f7ce810ecf30355bed1953c6ef3306cdc0bd24","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"pl","translated":"Ustawienia zaawansowane wymagają dostępu administratora","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"45a57ddd58ec856228fd5868017a1f416da4559c8eca59f1c8a3ae4b2ec291c8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"pl","translated":"Karty bez jawnie przypisanego agenta.","updated_at":"2026-06-17T14:16:32.528Z"} {"cache_key":"45db68e266b5d3f5d07b3d5801f780b1b52f8d5dfe473dbd1c99566ee83ee350","model":"gpt-5.5","provider":"openai","segment_id":"connection.lostTitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Gateway connection lost","text_hash":"ec6cd265976239ff6fc4f227bb25e8e6286fe38c3d1c64326dcdbb76c28b515e","tgt_lang":"pl","translated":"Utracono połączenie z Gateway","updated_at":"2026-07-05T21:55:48.401Z"} +{"cache_key":"461f23c30aac21f64048bc14ec7257994e5a97f4db7c84ec6e8737a806992172","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"pl","translated":"Zainstaluj","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"46c7ee4ce7554d70422254bb0d299f889dbf19d5d9c9b823e200b171c0f21f19","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolsEmpty","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No tool runs recorded yet.","text_hash":"9db22f17f7e8e1c3f86b168cde0d59ef62ea10f4363e51f802a5a06f341dc343","tgt_lang":"pl","translated":"Nie zarejestrowano jeszcze żadnych uruchomień narzędzi.","updated_at":"2026-07-09T11:28:32.832Z"} +{"cache_key":"470090f6ec34176153552c32f07a35fe32e0d1f0edbbbe9c8744a1e3f1ca9b49","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"pl","translated":"Włączono {name}. Wymagane jest ponowne uruchomienie Gateway, aby zastosować zmianę.","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"4710777b6338e7e28164a625a1250b744f5519d5ac45bc41fac8ddef205965c9","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitDown","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Split down","text_hash":"8730b89df7caaf5b5090f9b7365a0a03e0a13d9682dc6418f556b8a676d9e98f","tgt_lang":"pl","translated":"Podziel w dół","updated_at":"2026-07-06T07:24:08.404Z"} +{"cache_key":"4828c464c0e4f06b830111c4202b07b5d1ef904f0cc4c011069e8312d28bd7d7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"pl","translated":"Dodawanie…","updated_at":"2026-07-10T02:27:51.614Z"} +{"cache_key":"48c86b5127195a51e82599c33c164ea4ccd3cdfcdd2431d69174c0468b487a6e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"pl","translated":"Wtyczka kodu","updated_at":"2026-07-10T02:27:54.952Z"} {"cache_key":"48dcc6f3c228debf1796ac582c1f59a51f0a196547267b8f997de35013712895","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"pl","translated":"Połączono","updated_at":"2026-07-09T10:01:43.766Z"} +{"cache_key":"49733b06a0f946e461ab1265a9741b5b644e8e09ebb6e267a8f9bdc2cc8d57f7","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"pl","translated":"Kopiuj pełny hash commitu","updated_at":"2026-07-10T09:47:35.486Z"} {"cache_key":"4a3eade8e0edfab9754da7c2afd9dec4519e971ef51ce28aef958221f9286e5d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"pl","translated":"Zaktualizowano","updated_at":"2026-06-16T14:17:07.423Z"} {"cache_key":"4a996ea93b1e7024b900c95391420e37636e7ed64abfc25acfbe69acf795558f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"pl","translated":"{count} h","updated_at":"2026-06-17T14:16:37.628Z"} {"cache_key":"4acdfe31e8047d41d43d4cf3cd2b5b242ae752cc4aff345f3ed1a96505b21182","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.estimatedCost","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Est. cost","text_hash":"3199f14286736527bfc6ad9165629415a5aa087517acd2c0e9b1ae8bb5d26766","tgt_lang":"pl","translated":"Szac. koszt","updated_at":"2026-07-05T16:00:24.695Z"} {"cache_key":"4b587536edfa930796b07dd335ea3491dd9ab4466daaf7ef460871e35456905b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"pl","translated":"online","updated_at":"2026-07-09T10:01:43.766Z"} +{"cache_key":"4c072f172975389ed982fffac13ec6d0ec059f151cba74ab75631f0f7dd8aa3d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"pl","translated":"Dodano serwer MCP {name}.","updated_at":"2026-07-10T02:27:51.614Z"} {"cache_key":"4c9842477ee69179976e4e672882158cab15e3e0957ec4c2257be5216dbd80fa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"pl","translated":"Automatycznie","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"4e595d99dcd1b2d2a3dd75d04bdf7e03889d1e75fc1dc65d2c79ea04e64c5053","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"pl","translated":"Połącz się z gatewayem, aby zmieniać wtyczki.","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"4e7ab4b70bddad27c99b65df6deefcd8daff906a5153540592c9dfae09d5a06e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"pl","translated":"Brak zarchiwizowanych sesji na tym hoście.","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"4e8bbde905fdfd3afc269824e8a756dde3c59bd005fb9c1e358b606c824c8377","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"pl","translated":"brak dowodu","updated_at":"2026-06-17T14:16:37.628Z"} {"cache_key":"4f0de79306f7bbbae793b9baf866acb1df813abe0f532b8b1124993d48657a3b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"pl","translated":"Uruchom ponownie /pair qr, aby wygenerować nowy kod konfiguracyjny.","updated_at":"2026-07-01T10:33:32.568Z"} +{"cache_key":"4f8d23d5344de2c748940e40713810cad71a4e9acf41a6faf9d4a298623ad8b7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"pl","translated":"Działania dla {name}","updated_at":"2026-07-10T04:28:43.372Z"} {"cache_key":"512fd5898d9ea7a0184c8f45cc9fc618d78e0ba9301b8b97be61e5e624a09a8b","model":"gpt-5.5","provider":"openai","segment_id":"languages.hi","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"हिन्दी (Hindi)","text_hash":"fab2abfce45382f3031c59477017700a8cb5dfaf8d15379dc24304809b97c7d5","tgt_lang":"pl","translated":"हिन्दी (hindi)","updated_at":"2026-06-26T21:43:39.324Z"} {"cache_key":"515c43c49884d15a19f3c0a132082fa353f23ed817d47f58d1de8556d191e413","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"pl","translated":"Zadanie Gateway","updated_at":"2026-06-16T14:17:07.423Z"} {"cache_key":"53c5166598630324a9fc7f6d9216e4d4f2ec2d5359cf892786e644167d6d5754","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"pl","translated":"Powrót do aplikacji","updated_at":"2026-07-09T08:08:08.824Z"} @@ -116,29 +158,45 @@ {"cache_key":"542135213318dd7db2847d51e40eb6e8679dbcdf4de6486a819f8845dd56b9c4","model":"gpt-5.5","provider":"openai","segment_id":"tabs.profile","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Profile","text_hash":"d696a35bdd1883da07a8d6c41bb7a3153381b23aa197629ee273479a6eaa5a9c","tgt_lang":"pl","translated":"Profil","updated_at":"2026-07-09T11:28:29.733Z"} {"cache_key":"5497c2638f02f32fbb8c96f3726ab9d97ed1118c07ca456aaeb215d4d7bbc418","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"pl","translated":"{count} tokenów pamięci podręcznej","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"5602a32e32eecce5ac39f7b1ef36f97ce7b1bd50d67a92a2528fbc5d1b4ca133","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"pl","translated":"Możliwe do przywrócenia","updated_at":"2026-07-05T21:01:26.445Z"} +{"cache_key":"5625af0d6b50d533ffd032d46403ada2cb68cc3ff0d0e934039bc0f9b4730b8c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"pl","translated":"Połącz swój świat","updated_at":"2026-07-10T02:27:47.890Z"} {"cache_key":"56763526931f57089c700380c0a2cfd52b46cd41607727d622ed6fa8d845273f","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"pl","translated":"Izolowane kopie robocze zadań agentów i migawki do odzyskiwania.","updated_at":"2026-07-05T21:01:26.445Z"} +{"cache_key":"5720fbe66fd7bb4e7530a562e6460e4225961db223f4963f804c4620c1e33b0d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"pl","translated":"Wyłącz {name}","updated_at":"2026-07-10T02:27:59.728Z"} +{"cache_key":"57754e710d202181304c30239316cb0992ff264516bdec2a60a6d957433a3c82","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"pl","translated":"Wersja połączonego Gateway","updated_at":"2026-07-10T09:47:35.486Z"} +{"cache_key":"5779e45d42649b1ffae8f5dcfac5b7ea16ae32597b1c38303ec94d90e2eb434c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"pl","translated":"Wyszukiwanie w ClawHub…","updated_at":"2026-07-10T02:27:43.503Z"} {"cache_key":"592b063f2ea57efa3a286c829740827d9ee6c76bb63b255831923680b95bb0e3","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"pl","translated":"Dzisiaj","updated_at":"2026-07-05T14:40:11.071Z"} {"cache_key":"5a4288828e7b68757dfbeb5d29abe43ca378017402480936f0e3b8245796e98e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"pl","translated":"Szukaj plików","updated_at":"2026-06-16T14:17:21.494Z"} {"cache_key":"5b4dbdbb802db38136aa0e36564bd834c98ae263dad8e3ea40639b336b49c840","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"pl","translated":"Odrzuć błąd Talk","updated_at":"2026-06-16T14:17:14.640Z"} {"cache_key":"5b93abc3cffd700a3bfaa2c62b91ccb7d89e9ad1823719bca306cd289bede818","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"pl","translated":"Podsumowanie sesji Codex","updated_at":"2026-07-09T10:01:43.766Z"} +{"cache_key":"5bf52b23a302cdbbcb7786f2301a6ea275637c01aeb55ed0cf69344192aff748","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"pl","translated":"Odkryj polecaną wtyczkę lub przeszukaj ClawHub, aby rozszerzyć OpenClaw.","updated_at":"2026-07-10T02:27:47.890Z"} +{"cache_key":"5c08782177281675839c19f7a966302df04497a7c9c956a2caaa90f0dc1d5084","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"pl","translated":"Wprowadź adres URL http(s) lub wiersz polecenia.","updated_at":"2026-07-10T02:27:51.614Z"} {"cache_key":"5cbadd383960d08ae390acd46a1850660900d05d447730208127c012b826390d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"pl","translated":"Brak pasujących plików.","updated_at":"2026-06-16T14:17:21.494Z"} {"cache_key":"5d0e269bcedcab7d3625e2f804d37a28ba7f5ae65e1fc1792a99921f45452a78","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"pl","translated":"Zarchiwizowane","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"5d2a36dcd3cb08a5e61bbd85c021ea81f1aefae78da0450956aa440ee829e150","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"pl","translated":"Wyłączone","updated_at":"2026-06-17T14:16:32.528Z"} +{"cache_key":"5d764c78cbd47f73410dc584ba360d4eac99f6a3f957003ea627d3314a075603","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"pl","translated":"Niedostępne","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"5d80a90503a485d8cb434a3929a3ac3e2505edd93dc47a939f80be04832e3449","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"pl","translated":"Podsumowanie: {summary}","updated_at":"2026-06-16T14:17:07.423Z"} {"cache_key":"5dab01671cab109d70a91e5482548e4ea380b8a1c23f8eb441681ada13a365aa","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"pl","translated":"Nazwa nowej grupy","updated_at":"2026-07-05T14:40:11.071Z"} +{"cache_key":"5e6dadadec93184fe5efd9b23f490cde9f5ef48c540a087a0655c90c03666720","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"pl","translated":"Serwery MCP","updated_at":"2026-07-10T02:27:51.614Z"} {"cache_key":"5e86cb3d546b7d7839d8f79f900eeb8224d0af7c33ba5cacdf25a2bfb26b14f4","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"pl","translated":"Wybrany mikrofon jest niedostępny. Wybierz inne wejście lub domyślne ustawienie systemowe.","updated_at":"2026-07-06T17:57:07.854Z"} +{"cache_key":"5f106bcd7fbfce11a06a60dadb6ae111aa869e04abf30f804054b15bfec1d542","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"pl","translated":"Wyłączono {name}.","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"6146b3c57e2541da113a9b030c0bd056b944a31d095e428a4fe63337968cf959","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"pl","translated":"30 s","updated_at":"2026-06-17T14:16:37.628Z"} +{"cache_key":"61d0784bfb34e3d72cc115cf31f6fbdef170dd92841503d395c06ccd6a802596","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"pl","translated":"Włącz","updated_at":"2026-07-10T04:28:43.372Z"} {"cache_key":"6463f27ddc12d59648f80001e03837529d1c864a9e482d9d4b30b3b4f68dafd9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"pl","translated":"puls {age}","updated_at":"2026-06-17T14:16:37.628Z"} {"cache_key":"646530069dda3f65a616fb93347016e6a7346a6fd7c11370f26947a284a52fdd","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapSub","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"A year in the reef — deeper red, busier claws.","text_hash":"906b1cb4b717da013c2b9d075676cbe9d381b56a3385c636a7d4154127e976e0","tgt_lang":"pl","translated":"Rok na rafie — im głębsza czerwień, tym bardziej zapracowane szczypce.","updated_at":"2026-07-09T11:28:29.733Z"} +{"cache_key":"64ab4fce0a8a639df9f53e968c7a3f50d4dbc8f258b986a3c772ee10ae542bb3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"pl","translated":"Żadne zainstalowane wtyczki nie pasują","updated_at":"2026-07-10T02:27:47.890Z"} {"cache_key":"651b61c6763a10d1b7e3b2dc86219756f9927067fdc5e162fb75981272f56b11","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"pl","translated":"Nie można uzyskać dostępu do wejść mikrofonu.","updated_at":"2026-07-06T17:57:07.854Z"} +{"cache_key":"65756cd7650e51a82346534215f7f0916441c62348c1731a794c04f4ced47a6e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"pl","translated":"Wyłączone","updated_at":"2026-07-10T02:27:54.952Z"} {"cache_key":"65983f7390efa7ecb299ed4aac0e5dcdad3015667ab28f811e8b9ac48e563712","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"pl","translated":"Zmień nazwę sesji","updated_at":"2026-07-02T14:30:38.319Z"} +{"cache_key":"65b37661dd16e05d718f9a9e59103d70a215f70dd6a3497364acd7c9b89ee8dc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"pl","translated":"Pakiet wtyczki","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"65e4147eaedf9eb4a8b101888b398f661674fba5e65f7eaf9f9586076c8effd3","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"pl","translated":"Zarchiwizuj sesję","updated_at":"2026-07-02T14:30:38.319Z"} +{"cache_key":"66cd9ae6fa3182503c58886a827cd97f5b1ec9bc3b74225db5dbe3449287827b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"pl","translated":"Tylko przeglądanie. Ten gateway nie pozwala na zmiany wtyczek.","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"67e7f4398b951e63b9fdec568cc99b78313a81fc6bf082dec7720d62a25e211a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"pl","translated":"Wykorzystano ~{percent}% kontekstu ({used} / {context} tokenów, w przybliżeniu)","updated_at":"2026-07-09T07:40:46.866Z"} +{"cache_key":"6871a6fa945620119fe119983192f91fb527d093b1d53dc8822284fe3a93775b","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"pl","translated":"Odśwież","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"68b1fc7855b24ae357686991cdbd48c7abad06cb8cd1320cca57c6919f6b2c44","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"pl","translated":"Komfortowa gęstość kart","updated_at":"2026-06-17T14:16:32.528Z"} {"cache_key":"68fe93fb170e60eca56039e8d6a14de4ba11298f34740cc8c9420bd10665cfc9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"pl","translated":"Data","updated_at":"2026-07-05T14:40:11.071Z"} {"cache_key":"697b31b4312d29c532044dbe0b2c8a4b7ccc18f646f88ee0b7d09b5869862a34","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"pl","translated":"Ten tydzień","updated_at":"2026-07-05T14:40:11.071Z"} {"cache_key":"69880080b3b6b126910ef0dbd611b242afa03c9df4e68694f74d8e81a5acd6d4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"pl","translated":"Nieznany","updated_at":"2026-06-16T14:17:14.640Z"} {"cache_key":"69ae375f1fff54e04cb8939701ae9a02a84086da3dda48a42fffc27d5957814b","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"pl","translated":"Русский (rosyjski)","updated_at":"2026-06-26T21:43:39.324Z"} +{"cache_key":"6b0e2145b1e882c492591eb3f0648f557ebc04ca10199361280e253ee6efa45c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"pl","translated":"Nazwy serwerów mogą zawierać litery, cyfry, kropki, myślniki lub podkreślenia.","updated_at":"2026-07-10T02:27:51.614Z"} {"cache_key":"6b7910b56063f266feefffaa7ad7a2b26c09e4065ef2fedbc0a1f0f49a347aa4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"pl","translated":"Folder nadrzędny","updated_at":"2026-06-16T14:17:21.494Z"} {"cache_key":"6c2c3123ea0674e55540119ca248b61ae9e719eb05a4140cda4be98d621b39e2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"pl","translated":"Notatka dotycząca celu","updated_at":"2026-05-29T21:02:00.343Z"} {"cache_key":"6d0cc0077af7b4002ae0c6d2743aacdba74d35939ebc49da68d03f8ee1f0f0d1","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"pl","translated":"Otwórz czat","updated_at":"2026-07-09T08:27:25.805Z"} @@ -146,68 +204,98 @@ {"cache_key":"6de0b90368cd7918d877df0537a536bbe50faed62073a538100d788de1c32486","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"pl","translated":"Kopiuj ścieżkę","updated_at":"2026-06-16T14:17:24.224Z"} {"cache_key":"6e1ad84d47468405ad3054b5e539938fe81f3f07c112c9f76b81fa6e4c564fb2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"pl","translated":"Kanał","updated_at":"2026-07-05T14:40:11.071Z"} {"cache_key":"6ea811aa13f98348ac364020e9cb170553eb58f68db1c47867ea3918b358154b","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.offline","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Connect to the gateway to meet your agent.","text_hash":"8804d65574fee21ed454bc82cb65b5ac8f0320877b5e4db12230aa665cd86f18","tgt_lang":"pl","translated":"Połącz się z Gateway, aby poznać swojego agenta.","updated_at":"2026-07-09T11:28:29.733Z"} +{"cache_key":"6f1fcce25e117cc97ba0d93c7e606e78b6de0f4dcd2da464488f85e4131c0487","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"pl","translated":"Nie znaleziono wtyczek","updated_at":"2026-07-10T02:27:43.503Z"} {"cache_key":"7124e444a10fd3f3bea10afa763456c0e452e966827d483cb89097b4fe9f98c6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"pl","translated":"gotowe nieprzypisane","updated_at":"2026-06-17T14:16:37.628Z"} {"cache_key":"712acaac9ece07c8ecd2a3a689adb60e533e0fbb49367af1350dcddbad9f57d8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"pl","translated":"Artefakty","updated_at":"2026-06-16T14:17:21.494Z"} +{"cache_key":"724bfc482ff17b0100e33a5106fcc1aad21a80de368e90f64d1e73506ec5c66c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"pl","translated":"Usunięto {name}. Aby zastosować zmianę, wymagane jest ponowne uruchomienie Gateway.","updated_at":"2026-07-10T02:27:54.952Z"} +{"cache_key":"7273880ae31bfdfeffcc71483ee88ce08416a28a6b09aaab7d8640eca9cf3c9f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"pl","translated":"Dostępne","updated_at":"2026-07-10T02:27:54.952Z"} +{"cache_key":"73d63b57fc181fe825cc4a852562de7efbed97719996c64a736c3d215761b6a3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"pl","translated":"Globalne","updated_at":"2026-07-10T02:27:54.952Z"} +{"cache_key":"73d6b77f5b6f616997b566c47dcb6ec79fb4891c0add0da0b5d276c8f7ecc178","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"pl","translated":"ClawHub","updated_at":"2026-07-10T02:27:43.502Z"} +{"cache_key":"759ad70e72eb10346709611a52451a73581f1488d794049ac321f92d23d40e03","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"pl","translated":"Brak pasujących elementów do odkrycia","updated_at":"2026-07-10T02:27:43.503Z"} {"cache_key":"764dbcd9dd3b60049ecf4f72c1a3089cbda98c42cf70ec2f719c3a986460545d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"pl","translated":"Nieznany","updated_at":"2026-06-16T14:17:14.640Z"} +{"cache_key":"7661a7174850da25c6696d984797bbf3caadc8367755b51d56a380a8f3811036","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"pl","translated":"Nie znaleziono serwera MCP „{name}” w konfiguracji.","updated_at":"2026-07-10T02:27:51.614Z"} {"cache_key":"7669d4936daf7422678680c3419a931d905a7561920d9c12265006ef6eda3961","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dragSessionHint","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Drag to move between groups","text_hash":"3e8692b1cd1c1f9a606a779f1037aa390c885fde224ddb841df9259e8aab03ae","tgt_lang":"pl","translated":"Przeciągnij, aby przenieść między grupami","updated_at":"2026-07-05T14:40:11.071Z"} {"cache_key":"7684e2c07b22173ecb7527df1908dd23423d95ce391529a17c55716be3a24c62","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"pl","translated":"Offline","updated_at":"2026-07-09T10:01:43.766Z"} +{"cache_key":"76ce5dd6e86e126b6209d5826a81c83afe6b245320813ba82574afcfa578cdf9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"pl","translated":"Przetwarzanie…","updated_at":"2026-07-10T04:28:43.372Z"} {"cache_key":"76fc121d31ec13e2de35609b2cf72374afeb8553940063d6ae7d0f4a3cc32c05","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"pl","translated":"nieudane próby","updated_at":"2026-06-17T14:16:37.628Z"} {"cache_key":"773fde7f04e9c87f69cc58984950611863dcac306cfbb15353f410e900533db6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goal","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Goal","text_hash":"cdbf6975e8a35b0d03558be6822dfae166482c24fb86b0433f60e8167f5c91e4","tgt_lang":"pl","translated":"Cel","updated_at":"2026-05-29T21:02:00.339Z"} {"cache_key":"777c76d490de0c8f224a4edba305d084dc317cd33120fd0ea2e2f9c2163ca406","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"pl","translated":"Nie znaleziono dodatkowych mikrofonów","updated_at":"2026-07-06T17:34:00.024Z"} {"cache_key":"77dd33b4734f2432203a41a302e40b548b2684d101f5fc81fb3becd28fcc7aca","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"pl","translated":"Podgląd","updated_at":"2026-06-16T14:17:24.224Z"} -{"cache_key":"782fbdf8f4c9e29b365256ff1d7ee29b13f2d0ab646f1721881741165d551fac","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"pl","translated":"Lobsterdex","updated_at":"2026-07-09T23:56:04.277Z"} +{"cache_key":"788e05111e51d92e9c1be12593f6a7b3f7ab5e6930c8b1db336c3e48f9c60d22","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"pl","translated":"Dodano {name}. Przed użyciem zaktualizuj punkt końcowy i dane logowania w ustawieniach MCP.","updated_at":"2026-07-10T02:27:47.890Z"} {"cache_key":"78d819ccf96b9775ce9d4d32e2f1ea3aec042ad9c8d0b167c1e98eff06b200ed","model":"gpt-5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"pl","translated":"Odśwież","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"79aee75707a682acd83ce85baacf249847f61c39da45f5c62d55536a4c774ff5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"pl","translated":"Grupa","updated_at":"2026-07-05T14:40:11.071Z"} +{"cache_key":"7a47564880456961650e33a31847975d3e8fd2dcb06573cd5d56c70e6a6c5246","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"pl","translated":"Zainstalowano {name}. Wymagane jest ponowne uruchomienie Gateway, aby zastosować zmianę.","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"7b49c03b0dcebae277de25dcb072c4af6d87acbc77f16bde9322babbbb4a728a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"pl","translated":"Sesja","updated_at":"2026-06-16T14:17:14.640Z"} +{"cache_key":"7d439a2cd2425ce6155eb5a939d20fcc6d94a09db2bf6e50bab262e8d367bcbe","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"pl","translated":"Polecane","updated_at":"2026-07-10T02:27:43.503Z"} {"cache_key":"7da88cc692f36a8ef5531af85d058829f00f0dcae3d26ada5b2bf280f00f55da","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"pl","translated":"Wyświetlanie pierwszych pasujących plików. Zawęź wyszukiwanie, aby ograniczyć wyniki.","updated_at":"2026-06-16T14:17:21.494Z"} {"cache_key":"81294ce3b2446169ca939bde3576354b534d8c282516c1b4ac38bf1d11900648","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"pl","translated":"Dzisiaj","updated_at":"2026-07-05T14:40:11.071Z"} +{"cache_key":"81bd79f1cfc05973f0f35263b24195a962edacfa23ab44715db1773831beee5d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"pl","translated":"Dodano","updated_at":"2026-07-10T02:27:47.890Z"} {"cache_key":"81bf8ea9922f4995da967858c78c8a2502004208c158f60219618fe182ef4145","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"pl","translated":"Przypnij sesję","updated_at":"2026-07-02T14:30:38.319Z"} +{"cache_key":"822b50135de5e0fd4d2e41b4bc4a5c4ea289d844268fe56d17393a25428ea83d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"pl","translated":"Wymaga uwagi","updated_at":"2026-07-10T02:27:47.891Z"} +{"cache_key":"8266d842aa49730a657691e3a7732b8807c9381433e3a409d592455f8366ced6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"pl","translated":"Pakiet","updated_at":"2026-07-10T04:28:43.372Z"} {"cache_key":"834bea4edfb9f1358823254499eec8840fa2715f2e195b0bdc41c135e46b3b99","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"pl","translated":"{count} zablokowanych","updated_at":"2026-06-16T14:17:14.640Z"} {"cache_key":"84bf5cf5555372d132aed6336c2dce28ea32891abee4def56a8511f34afb404f","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"pl","translated":"Naruszenie protokołu","updated_at":"2026-05-30T15:38:42.049Z"} +{"cache_key":"84e0b8b07e8c66b091c4b2349c92ef085b6831c585220020566d15390e1c3e01","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"pl","translated":"Włącz {name}","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"8554169fc3b18fbd1a9e6fb44e93364fb0ca3751e5079d580547cd29364687f5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"pl","translated":"Odświeżanie nie powiodło się","updated_at":"2026-06-17T14:16:37.628Z"} +{"cache_key":"85ede3f99b9e895c950d380a905a4a522b61391d3c727148352be83ecaa515a2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"pl","translated":"Zweryfikowane źródło","updated_at":"2026-07-10T02:27:54.952Z"} +{"cache_key":"86cca6825cb467ab064add6d9e8c32e5bd038f97eb772821e5342324ec227b01","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"pl","translated":"Nie udało się skopiować hasha commitu","updated_at":"2026-07-10T09:47:35.486Z"} {"cache_key":"86e749d4ec6e389b7fe420fd4f6f74e0fecd9f7eec97bafebcaab8a83d4768af","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"pl","translated":"uruchomione","updated_at":"2026-06-17T14:16:37.628Z"} {"cache_key":"8804a65c9a49432cb087780a141a6fe8db3d7cb62eb182fe63fb78c6e70d0db6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"pl","translated":"Skills: {skills}","updated_at":"2026-06-16T14:17:07.423Z"} {"cache_key":"889a3f07959350127dcc9d50a5cc130610058ff3c8cda18a43cba064540b7559","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"pl","translated":"Węzeł","updated_at":"2026-07-09T10:01:43.766Z"} +{"cache_key":"88fbfe2d1e39b9bd800653e1ec57648c50eb5c19d8ca44325fe073ac73c994bb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"pl","translated":"Włączono {name}.","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"8a6b41ad0ec0e05469d1e04a3dde0ce31cb2fb45ddd05edc9110b748186d615e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"pl","translated":"Odczytane","updated_at":"2026-06-16T14:17:21.494Z"} {"cache_key":"8adf7a04ea4e465b3ee96ca19042c1729b29c4e91c02b87cd87d04493b821a9c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"pl","translated":"Ostatnio ukończone","updated_at":"2026-06-17T14:16:32.528Z"} {"cache_key":"8bcf0b3da9b9a1bc99a3d349c05db64ff3db7bac09da5acd95285eec391e68f2","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"pl","translated":"Zapisana","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"8be18e1ff79ff44ae4507bec6911f05d2b03eb48f8e87b47b4886ae6172eb543","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"pl","translated":"Podsumowanie obszaru roboczego sesji","updated_at":"2026-06-16T14:17:21.494Z"} {"cache_key":"8d1578535b146d89ecb8f2784c385efc9fca780daa51dde4871cade66b2c7197","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"pl","translated":"Serwery MCP, uwierzytelnianie, narzędzia i diagnostyka.","updated_at":"2026-05-31T05:36:51.459Z"} {"cache_key":"8df6be9bca71f11691d6ef60fe58f682803b121ef655f219d9a2b83209bf4019","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"pl","translated":"Protokół workera","updated_at":"2026-06-16T14:17:07.423Z"} +{"cache_key":"9048db9b7e5ff85f9bd023582bd8698c61f15c1cdfb696c4f5b50bec0c7ff71a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"pl","translated":"{enabled} włączone, {disabled} wyłączone, {issues} z problemami","updated_at":"2026-07-10T06:09:02.688Z"} {"cache_key":"91080b7c75713a6e727937ba7d96cb2233b427f20e0058986288e02ac1d666d6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"pl","translated":"Brak","updated_at":"2026-07-05T14:40:11.071Z"} {"cache_key":"92b6ff059160f68634542a07cdd201e86667a5dea779039eb28804765c337ce0","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"pl","translated":"Głosowe wprowadzanie w czasie rzeczywistym wymaga dostępu do mikrofonu przeglądarki.","updated_at":"2026-07-06T22:42:24.968Z"} {"cache_key":"92c01aa2ab2d521d1dfe2573f2bae5e6812a8fe50d1e74adec90f8f31d168f66","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"pl","translated":"Zmień nazwę grupy…","updated_at":"2026-07-06T23:41:14.105Z"} {"cache_key":"9352ba348d4129d4dbac222ff8c5663a796143b1245b4b292d280e0d5e72fbf2","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.emptyTitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"A fresh shell","text_hash":"da0d613f0ec767755258b8a2c43bec5d305997daeca16068dc927fbda8194378","tgt_lang":"pl","translated":"Świeża muszla","updated_at":"2026-07-09T11:28:29.733Z"} {"cache_key":"957b0fc3c159c9f1e9f4d67c58be83ad6b55e39e73d53a9c1d049d01b50d298b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"pl","translated":"Realtime Talk wymaga dostępu do mikrofonu w przeglądarce.","updated_at":"2026-07-06T17:57:07.854Z"} +{"cache_key":"95aa80bb33142d6c6b56a1310137ae627ae52fc6d563e28ae255d2df222caf32","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"pl","translated":"Narzędzia","updated_at":"2026-07-10T02:27:51.614Z"} +{"cache_key":"9691c8d2d0dc7ebf8b57ef786a9209195a82bf7fe711d68794400cb4dcdd6c1d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"pl","translated":"Dodano {name}. Nowe sesje agentów mogą z niego od razu korzystać.","updated_at":"2026-07-10T05:22:35.966Z"} {"cache_key":"97ade77f6a570c1f51546e7dbbd89785addac98dbf063f8fbbb034fcf65d3043","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"pl","translated":"Usunąć grupę „{group}”? Jej sesje zostaną przeniesione do Bez grupy.","updated_at":"2026-07-06T23:41:14.105Z"} {"cache_key":"97d8cd4b3d898ec257fd4f49f241a337a29dd6b1fe77ba5543d094665ed7f793","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"pl","translated":"{count} artefaktów","updated_at":"2026-06-16T14:17:21.494Z"} {"cache_key":"97ed43a316faf65a1ce7bf5b1fe783afc6d2adc799adf02ab1b7df1b7ee5fdea","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"pl","translated":"Odśwież obszar roboczy sesji","updated_at":"2026-06-16T14:17:14.640Z"} +{"cache_key":"981d6fd6c5fdce6f7e070f03bdd0ec9f181cb20f33858522f5b488ed9d54310c","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"pl","translated":"Wersja","updated_at":"2026-07-10T09:47:35.486Z"} {"cache_key":"987aff595a792a622006803dbc2bf04c50cd05b42a0b7436036df0107f1f51b4","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"pl","translated":"Odepnij sesję","updated_at":"2026-07-02T14:30:38.319Z"} {"cache_key":"9895b6d727eb28b4cbc557237fe85cf615189649e764f308c3e8dc509003323d","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.emptyBody","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No token activity yet. Send your agent a message and watch the reef light up.","text_hash":"372d6a37efc587e1d6c91c0229222235c6ec6a6ffd0d7545874ce359afb33e04","tgt_lang":"pl","translated":"Brak aktywności tokenów. Wyślij agentowi wiadomość i zobacz, jak rafa się rozświetla.","updated_at":"2026-07-09T11:28:29.733Z"} {"cache_key":"98d56fd0512512f630d7a2be050c56786b65982ab686694e8b5c45f26cc545ef","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"pl","translated":"Pokaż tylko zarchiwizowane sesje.","updated_at":"2026-07-02T14:30:38.319Z"} {"cache_key":"98ef6246f39d01701b46dcc18bf5fac14155e8f5caa6882f5a0562a00f6041e5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"pl","translated":"Komentarz","updated_at":"2026-07-01T01:08:13.110Z"} {"cache_key":"995717cef222c8baad012d420e28f0c0e300941264e48686e7b2c4aae00e6d4f","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolsTitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Most used tools","text_hash":"8bc3f9b213a6e4c632b3c09d45d7c373a07c75389ab5d6c17cc053352ea16847","tgt_lang":"pl","translated":"Najczęściej używane narzędzia","updated_at":"2026-07-09T11:28:32.832Z"} +{"cache_key":"9a7ff024b83c38e75b558f1ad8da68e6d3cc53a4285032384aa2679eaa7526c6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"pl","translated":"Potwierdź ryzyko i zainstaluj","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"9ae1ac32dd02417689af0ebb9a2336f3ac904cfb2e2fd483a2fcf9a202f0843d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"pl","translated":"Użyj bieżącego czatu do próśb o poprawki","updated_at":"2026-06-16T14:17:07.423Z"} +{"cache_key":"9b429817ae8993bc32393210c954f9d02990608581a36963ee083f0f60120f50","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"pl","translated":"Instaluj i zarządzaj opcjonalnymi funkcjami.","updated_at":"2026-07-10T02:27:43.502Z"} {"cache_key":"9bf05f136cd246f35bacaa862d343a4996f7e13623ffa53ae2c883ad278a1b8c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"pl","translated":"Wyszukaj tytuły sesji","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"9c43d799a6de8b1c59898d36f8b61f5d0a304afc0d6bebd582049f9b964906da","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"pl","translated":"Sesje na Twoich komputerach","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"9cb75e6e318149d0e9b879b394b3d00299ef4e8ff32e3b4910e600e0f6b410b6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"pl","translated":"hosty","updated_at":"2026-07-09T10:01:43.766Z"} +{"cache_key":"9d840346b602eb0733d83784762b29b1dc2215a7adedf49709c3db3011af083b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"pl","translated":"Problemy","updated_at":"2026-07-10T02:27:47.891Z"} {"cache_key":"9dab4d799411a404587ee62b71924ccd8c2bfbfdc512c53b0cbc8c993e99db40","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"pl","translated":"Status","updated_at":"2026-07-05T21:01:26.445Z"} +{"cache_key":"9e03443122e853ebe922ba96ca2bb3074850922c1d30de8e087d773ab9d4ae30","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"pl","translated":"Nie udało się odświeżyć konfiguracji Control UI: {error}","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"9e7a520909c4c4c938a53397eea4b6207aad59b31c929cbdeb61aaa0f088d925","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"pl","translated":"Widok tylko do odczytu sesji Codex na tym Gateway i każdym połączonym komputerze, który je udostępnia.","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"9e7d83a953a9dcba70bb53f891c8904c2fe3393b111f7d0ef38ae8c96fd179d4","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"pl","translated":"Ogólne","updated_at":"2026-07-09T08:08:08.824Z"} {"cache_key":"9e997e50b54a117996a600e18094f063a9211dcf931c0b28158d5168217944bd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"pl","translated":"Diagnostyka","updated_at":"2026-06-16T14:17:07.423Z"} {"cache_key":"9ea7773002721e96653d413ea9c842df6e3fe806ec783b24bf4684c1a9a5c867","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"pl","translated":"Użyj bieżącego czatu","updated_at":"2026-06-16T14:17:07.422Z"} {"cache_key":"9ef78d66d46aa080529b4ea0a9f279c617803e7df925fa923f823fc912c48f39","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"pl","translated":"Sesja Codex bez tytułu","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"9f5af441f2515f7e5c5c1fe46f03b89b745a4ec67bc62dd8643f9a90f105e3eb","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"pl","translated":"Żadna sesja na tym hoście nie pasuje do wyszukiwania.","updated_at":"2026-07-09T10:01:43.766Z"} +{"cache_key":"9f77508b5bfadf4712f607c53a3090d7db919e85754d14cbe72e3d3a3472a0a9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"pl","translated":"Odkryj","updated_at":"2026-07-10T02:27:43.502Z"} {"cache_key":"9fb3d5d981fbab3671bf13f73909a3cc6eb855ac6ee598a728518a817dba32b0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"pl","translated":"Aktywne","updated_at":"2026-07-09T10:01:43.766Z"} +{"cache_key":"a075faa457ae005f1636547e7ded76f94f9d337e920511d2a14e5ce6f74926eb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"pl","translated":"Wyłączono {name}. Wymagane jest ponowne uruchomienie Gateway, aby zastosować zmianę.","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"a0b7371e253f10f4c59fcb231d3fe6e7711e6679d27a27930038ddd2f40e8c42","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"pl","translated":"Obszar roboczy: {workspace}","updated_at":"2026-06-16T14:17:07.423Z"} {"cache_key":"a10c6a706cea35ca78d7749209f411eeebc841dcc1b08cc56922e26b583e73fd","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"pl","translated":"{count} sesji","updated_at":"2026-07-05T14:40:11.071Z"} {"cache_key":"a1ae3217f7a72d730fc15c732fad36db653573c0ffcf7864b7bd75043cae657f","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"pl","translated":"Wyczyść teraz","updated_at":"2026-07-05T21:01:26.445Z"} -{"cache_key":"a1ccc8fe6602f9634cfb814621d587b527dd5c533696d92cf3ee3fe9a71e93dc","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"pl","translated":"Ciche bulgotanie po dotknięciu","updated_at":"2026-07-10T04:50:34.303Z"} +{"cache_key":"a24d838e4427be2d4ff9d36d6624c1ec27ecc9f7cc74dcd4e0bcf1b5e5e1a681","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"pl","translated":"Wszystkie","updated_at":"2026-07-10T02:27:47.891Z"} +{"cache_key":"a30c61ea395361b37ea02d5a3f5057e111f5888c26e68f115a43cd912ba4669d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"pl","translated":"Nie zainstalowano opcjonalnych wtyczek","updated_at":"2026-07-10T02:27:47.890Z"} {"cache_key":"a46e0fe3af1e5850318eb677214e8cacc6531670f0000e72bef782878ad2439a","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"pl","translated":"{count} żądań","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"a4791d53db6b4d42c83dd27a67a0ecc9c72af1dd7f9df05f84f11af2fe3c9a94","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"pl","translated":"Szczegóły karty","updated_at":"2026-06-16T14:17:07.423Z"} {"cache_key":"a4b09e59e3172ea0008c9683614e44036a192b7a104e7d2858b39a8395cc19a3","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.loading","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Diving for stats…","text_hash":"81a616d9c5f179db9a23f119bd752b6c0445a3e37bcc28e76eab97fd29da7c74","tgt_lang":"pl","translated":"Nurkowanie po statystyki…","updated_at":"2026-07-09T11:28:29.733Z"} {"cache_key":"a4e001fc3b51305625c5e46b1713678465f65ea2878799adf6f48e696fb8aa05","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"pl","translated":"Domyślne systemowe","updated_at":"2026-07-06T17:34:00.024Z"} +{"cache_key":"a4eabf9760940e524f512773f0782faf85469afbb45238561fccdc970e1094c0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"pl","translated":"Konfiguracja","updated_at":"2026-07-10T02:27:54.952Z"} {"cache_key":"a560002dc5138c7fd5dd5b570834b85edb60010c6b1459f9721f09de4cbdc3a6","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"pl","translated":"Akcje","updated_at":"2026-07-05T21:01:26.445Z"} +{"cache_key":"a890fbbffeb6ed6dda34c3caba6958f6658dcde3ec15f784129fae3a17479f54","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"pl","translated":"Usuń","updated_at":"2026-07-10T02:27:54.952Z"} {"cache_key":"a9331e5f8d7dbdcaede42b3964d985034cedbc891e7010101047e83708eee80a","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.open","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Open split view","text_hash":"51e50f7be73433216ae62f58fdbc586372f5a6063ee9978cec96793ef75fa554","tgt_lang":"pl","translated":"Otwórz widok podzielony","updated_at":"2026-07-06T07:24:08.404Z"} {"cache_key":"a9a0f1ca756752a9be9d4b575538dfbe3f0f69e72d866bd7cc208802038c72c7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"pl","translated":"Wyszukaj sesje Codex","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"aa21ff42bc3a3139f08084c7429f9b347844c2fdc82b0d76f4090698d5b5f15e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"pl","translated":"Obszar roboczy sesji","updated_at":"2026-06-16T14:17:14.640Z"} @@ -218,11 +306,15 @@ {"cache_key":"aeeb1e4b5713edd0683c5777268dc17a591f1cb58545710bd33bce8d0bf1d568","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.legendMore","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"More","text_hash":"d47d7cb0e4f8fd2be5ee07826694c18917d83ca77d0a01698582d05f432db996","tgt_lang":"pl","translated":"Więcej","updated_at":"2026-07-09T11:28:29.733Z"} {"cache_key":"af581e6bfaf1c3da55719b56ab4ad2e41f26365afdb5e40e2cd6caa63907c2dd","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"pl","translated":"Dodano załącznik","updated_at":"2026-05-30T15:38:42.049Z"} {"cache_key":"afb1950ce5fd7b9ed8119514f976e251d85c7485d3eb523c96e8155d9705444e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"pl","translated":"Przypięte","updated_at":"2026-07-02T14:30:38.319Z"} +{"cache_key":"b02f5bcbbed9623e570615dfd905116231cb640430ede48acf36f58d4df84142","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"pl","translated":"ClawHub nie ma wyników dla „{query}”.","updated_at":"2026-07-10T02:27:43.503Z"} {"cache_key":"b0c891629180b79b33098cabd1116e976b9d4042b436bba10a79f155b68e550f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"pl","translated":"Zmień nazwę grupy","updated_at":"2026-07-06T23:41:14.105Z"} {"cache_key":"b107e5a8d94b6767e463fcf0af7cc9afffda3ed17180bd90fb5f3c22cf30f00a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"pl","translated":"60 s","updated_at":"2026-06-17T14:16:37.628Z"} +{"cache_key":"b11106fd03616bd14f243f3f53ca34f049eda23915404489242b255155d6f246","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"pl","translated":"Usunąć tę wtyczkę?","updated_at":"2026-07-10T02:27:54.952Z"} +{"cache_key":"b15571019aa1eb453be4b8cc0d3158e959225003d7a8b3a53916e155639c2d3a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"pl","translated":"Zainstalowane","updated_at":"2026-07-10T02:27:47.891Z"} {"cache_key":"b25fd3633ffb725cc8ec92f4e670aefac62535b06a0a474a8a060923d835efa0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"pl","translated":"{count} odczytanych","updated_at":"2026-06-16T14:17:21.494Z"} {"cache_key":"b30bc67a447278a1590b0c88ee4f0406b13a4de91cf84f584071ba175a4a1365","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightAgents","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Agents in the reef","text_hash":"050a0a3d70a5c89d65789f7983024ee9eb2539cee6c2e0b31677ac78b0cd3534","tgt_lang":"pl","translated":"Agenci w rafie","updated_at":"2026-07-09T11:28:32.832Z"} {"cache_key":"b30dccf841f91b64b983f3ba172ed39bd067e73a5c7b463da9e179b5b2392410","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"pl","translated":"Wejścia mikrofonu są zajęte lub niedostępne dla przeglądarki.","updated_at":"2026-07-06T17:57:07.854Z"} +{"cache_key":"b3572d1128a7d8481c578ef64bc18e5b18dc1f7ce6b5f1e1d8421f268ed10493","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"pl","translated":"Hash commitu skopiowany","updated_at":"2026-07-10T09:47:35.486Z"} {"cache_key":"b36af635d5402295d7aab8801d49d33c7925cdb6ba7c9109d7157216b48485c9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"pl","translated":"Wczytywanie sesji Codex…","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"b3e423e8f9d04f5f974f2424b59d88f651e958de68ca11b214be0617108ab080","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"pl","translated":"sesje","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"b403d30e80f32d63916b966022d4d2fa4802a6b1243829638409f35bfe6865b8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"pl","translated":"Brak dowodu","updated_at":"2026-06-17T14:16:32.528Z"} @@ -241,62 +333,87 @@ {"cache_key":"b8b00867e3339bcbcf4c9dedd90b8e1080c36856c5c6fae0f8e3ed6aeb774a36","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightModel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Most used model","text_hash":"a13c86cd4f835d2c2b5af940171ede2a27e0f805cef070d87628f1bd333bb706","tgt_lang":"pl","translated":"Najczęściej używany model","updated_at":"2026-07-09T11:28:32.832Z"} {"cache_key":"ba42e686cebfbea00ec464e9d29c60d351dc3b1d88cdd71f04a899b988f4154c","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.profile","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Your agent's stats, streaks, and life in the reef.","text_hash":"1fdc442e9cb9b6f4abdb44a4e6c4c304ab51c2dbe616e4c975add631108a4b28","tgt_lang":"pl","translated":"Statystyki, serie i życie Twojego agenta na rafie.","updated_at":"2026-07-09T11:28:29.733Z"} {"cache_key":"ba853a8ee00a503478191bcf613947a52bf3dac3d53ae805c181dfefd0b67a41","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"pl","translated":"zablokowane","updated_at":"2026-06-17T14:16:37.628Z"} +{"cache_key":"bbfa4473436e52b8dda674922a1370f39f7b32f0094a0d0d0aab2015bba332f4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"pl","translated":"Spróbuj ponownie","updated_at":"2026-07-10T02:27:43.503Z"} {"cache_key":"bc7b9aced9436ea5ca3f3d2531c2d49da0412d52babca4a40ce8686f39449732","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"pl","translated":"Otwórz w domyślnej przeglądarce","updated_at":"2026-07-09T11:03:05.340Z"} {"cache_key":"bd0b90ae68a715f6eebd19a54c68ce39d7aa44e0c2bf6f52b12469c5d60d4927","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"pl","translated":"Sortuj według","updated_at":"2026-07-06T23:41:14.105Z"} -{"cache_key":"bde5d552cb3f57d0b1e234df694c80cd43927dbf70487fa1c2a41a706522e757","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"pl","translated":"Dźwięki homara","updated_at":"2026-07-10T04:50:34.303Z"} +{"cache_key":"bd883897971f7b637702bb819b43ec8317d7f91c30a7b4c1b915055ed75df9b3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"pl","translated":"URL lub polecenie","updated_at":"2026-07-10T02:27:51.614Z"} +{"cache_key":"bdb8cb4c38769ed3122f862153fac7b1357dbc8056da167f7fd294ac7b819d6e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"pl","translated":"Przeglądaj ClawHub","updated_at":"2026-07-10T02:27:43.502Z"} +{"cache_key":"be46a66c6e4cd01501917add433a86ad4c9f846b6bb3a0a0f21db76445f04a73","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"pl","translated":"Zobacz szczegóły","updated_at":"2026-06-16T14:17:07.423Z"} +{"cache_key":"bed882f541e778ff89c3157643a069a5592e9daf62c9d81b225b102587aa2349","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"pl","translated":"Control UI i połączony Gateway tworzą tożsamość kompilacji.","updated_at":"2026-07-10T09:47:35.486Z"} {"cache_key":"beed2934dd96c465d012c23e9058c8d012a9e4aa4c0c51de5aed72ded1cf84b1","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"pl","translated":"Ostatnio ukończone, nieudane i anulowane zadania.","updated_at":"2026-07-09T21:53:34.725Z"} {"cache_key":"bf1fe541e18dbb5476e102031349c8f93606cdd991c3cd249ffaa0ca6b35a649","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"pl","translated":"Użycie kontekstu sesji: {used} z {limit} ({pct}%)","updated_at":"2026-07-05T10:16:26.554Z"} +{"cache_key":"c1f08404e37f98bf606f6be1965970dbe4e469263b9903e8d8ba4e7ab0c46f4a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"pl","translated":"Dom i multimedia","updated_at":"2026-07-10T05:22:35.966Z"} {"cache_key":"c214af0c0f6ccb20c9e5c6cf812d6902514e0955727f76a4ce88d60b18d2710a","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"pl","translated":"Tworzenie migawki nie powiodło się: {error}\n\nUsunąć bez migawki?","updated_at":"2026-07-05T21:01:26.445Z"} {"cache_key":"c25f8524c1983b153062db4f3d2d6504b4e1b79f3131def2c41a4a829cfbbd34","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"pl","translated":"Więcej w ustawieniach","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"c451a81d01f3ee9e112a58e80af57103d08b1bff0b0b611aa51647c863b5320f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"pl","translated":"Kod QR parowania wygasł","updated_at":"2026-07-01T10:33:32.568Z"} -{"cache_key":"c4925f12b9fd64b5590dc793c2461044a736004b176f21cec65c5858cda391f0","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"pl","translated":"Szukaj","updated_at":"2026-07-10T06:08:36.073Z"} {"cache_key":"c54775f5760f9a7ea4272c911619a5c6cf4f2e8fc636fecc7b3c6d205b4259ef","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"pl","translated":"Worktree","updated_at":"2026-07-05T21:01:26.445Z"} {"cache_key":"c58b34063fbebbe597fa2eb10be3437a3131fba28f4cc523ecdd9e5e229c3c9c","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.closePane","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Close pane","text_hash":"7fa0f9613d919e167b0f9aa03c22809d446af293eb6c3bac6866bae66d2656c9","tgt_lang":"pl","translated":"Zamknij panel","updated_at":"2026-07-06T07:24:08.404Z"} {"cache_key":"c6f33f6092383af5a4bf1d84e9dca0dd89ea9246a9c27388cdff24af2fb1e08f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"pl","translated":"Zmień nazwę sesji","updated_at":"2026-07-02T14:30:38.319Z"} {"cache_key":"c73d3f240348f95a9782047c1a8ed7f3fcc333de4b7224cfd3a841f4876b608e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"pl","translated":"Zwiń obszar roboczy sesji","updated_at":"2026-06-16T14:17:14.640Z"} {"cache_key":"c76cce9d340f2e0a3f2361517d44ba1b1c5b5d8d84d5081b37046ec05686a004","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"pl","translated":"{count} załączników","updated_at":"2026-05-30T15:38:42.049Z"} {"cache_key":"c787f798b2d5f3356d2c8b8b9a7173b7eafb7b3e62e38ceb91c03500ccded164","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"pl","translated":"{count} dni","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"c9480b64c35f57fb101ccd74b0f0fea51c69611ef50c6a0e81fee03b54a1c1f9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"pl","translated":"Połącz, aby przeglądać zainstalowane i polecane wtyczki.","updated_at":"2026-07-10T02:27:54.952Z"} +{"cache_key":"c9572e1295fd2a74d9f9d4fcf085315307f39b776dce7f8ddefd7b54b41d738c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"pl","translated":"Konfiguracja jest niedostępna; odśwież i spróbuj ponownie.","updated_at":"2026-07-10T02:27:54.952Z"} {"cache_key":"c989cb43963eff0b0a75e2ca1abe177a3da2b64ceddd17c286919c93395e1e80","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"pl","translated":"{count} gotowych","updated_at":"2026-06-16T14:17:14.640Z"} {"cache_key":"c99cc0f8cf1519602cdb276cf81cb5d43d6d41174c70fc594c76031ea37e45cf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"pl","translated":"Rozwiń obszar roboczy sesji","updated_at":"2026-06-16T14:17:14.640Z"} {"cache_key":"cab99c49eadbb51dd0e105b26f3e8173a6d7996f11a4eb5184a250dece978bae","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"pl","translated":"Przenieś sesję do grupy","updated_at":"2026-07-05T14:40:11.071Z"} {"cache_key":"cb4b8f959fc968909c5e822c8ce57b5bb5cf06e8a36dc6c6116e3666ecf46b2a","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLongestSession","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Longest session","text_hash":"7f727c1b85939ac165087fe5c3081e15ca00c6e6a0c0b6f8c908ff21eda7a4f2","tgt_lang":"pl","translated":"Najdłuższa sesja","updated_at":"2026-07-09T11:28:29.733Z"} +{"cache_key":"cb51a14c765c8e478ea52ed252bc6a398136f887532bb8be71a80804f992b06a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"pl","translated":"Zainstalowane","updated_at":"2026-07-10T02:27:43.502Z"} +{"cache_key":"cbd2a08c2c6a7528d445affeec58b6dad1a99b6a7b20652529d9fd2c1a6b9d0c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"pl","translated":"Dodaj serwer","updated_at":"2026-07-10T02:27:51.614Z"} {"cache_key":"cc1867ae4af932710b7e7366c488622e52a83ea25ac3ec38e66e7c013e0d7420","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"pl","translated":"7 dni","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"cd3a1beeb1ed7fb63a8e1b4510830747c3f6b9cc64a86bf3f8a9f44c55e82724","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"pl","translated":"Sortuj sesje","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"cda5955264ba33c53c159319b6c7047fc662bf91d22e3881ff64ef1d2afc923e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"pl","translated":"Opcjonalna funkcja OpenClaw.","updated_at":"2026-07-10T02:27:54.952Z"} {"cache_key":"cdc5367a38795760612f3723718ef9fa534c711f23b35c8c345208a7d5949093","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"pl","translated":"Brak aktywności","updated_at":"2026-07-05T14:40:11.071Z"} +{"cache_key":"cdf5de85e7b1004d0243e571cd66055b0780283b7e6c64be51e142236e8a68ae","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"pl","translated":"Wymaga uwagi","updated_at":"2026-07-10T02:27:54.952Z"} {"cache_key":"ce8536f8cf87a520cc2178f5d611771a7ac4e8678d5d69555f472183e0e7f321","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"pl","translated":"Brak aktywnych sesji na tym hoście.","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"cf5cee37dd9b71e7b12525099b2a287091beff9945846c58f50c64950bf8fd32","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"pl","translated":"{parent} (brak)","updated_at":"2026-06-16T14:17:14.640Z"} +{"cache_key":"cfbb3b7d62ad5ae9c18fa3a78ffd30e45a1171199054de40ef526f59fa0f3095","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"pl","translated":"Identyfikator wtyczki","updated_at":"2026-07-10T04:28:43.372Z"} {"cache_key":"cffa5e1a81843cfb3ac9410c74d6ea63c5436baaee5be35741015c9465b80572","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"pl","translated":"Domyślne","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"d05741fa45849f85fdd8e8002569393ae8df7762d0f409d3ed17c5646e7f8001","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"pl","translated":"MCP","updated_at":"2026-05-31T05:36:51.459Z"} {"cache_key":"d0c9de8dc0c6459107953c844d76684182f562771ce5c7fea5a603ba7e226eab","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"pl","translated":"Do przeglądu","updated_at":"2026-06-17T14:16:32.528Z"} {"cache_key":"d0d7b8e08873037b55cb835745cf3330464e575a66a892aead4fc4000461c017","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"pl","translated":"Brak plików w tym folderze.","updated_at":"2026-06-16T14:17:21.494Z"} +{"cache_key":"d1a1f0f8f27e713ab33b777be4827a6d93893ef4f40f16636de214103e7d639a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"pl","translated":"Uwzględnione","updated_at":"2026-07-10T02:27:54.952Z"} {"cache_key":"d20bc6fa0a77de3ef31365185ed2ff8daa1b66dc076ccbf588a3ecdfbfe14c4c","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"pl","translated":"Działania linku","updated_at":"2026-07-09T11:03:05.340Z"} +{"cache_key":"d22e21d541a588dc8c238124e66ff9e4d9c0056350f9375b9f323b93c4863b77","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"pl","translated":"Kopiowanie hasha commitu","updated_at":"2026-07-10T09:47:35.486Z"} {"cache_key":"d2e57280ffff210cca5ff1c1f454e99f8c1cd2ea9f0bf3a14ec9bcfc03aa72a9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"pl","translated":"Zaawansowane ustawienia Talk wymagają dostępu operator.admin.","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"d2f2c306d622829167a0bd792a5d0888636b4eb85983bbb6852189fa78333df3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"pl","translated":"Dodaj","updated_at":"2026-07-10T02:27:47.890Z"} {"cache_key":"d38336ad413141b2e4dfd09c86b1e1a48aa6cad1356cc58ab93595996e607bbf","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"pl","translated":"Brakujące","updated_at":"2026-06-16T14:17:21.494Z"} -{"cache_key":"d4628bc53eed0f6659eb704ce6300a53de51a67589958c0ba9e025f34cf98dd6","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"pl","translated":"Przeciągnij, aby zadokować po prawej lub u dołu","updated_at":"2026-07-10T06:08:36.073Z"} {"cache_key":"d4a886a6cccae4278ec57dcbee7c175d3e511359e2147393c7b7bb440a390b57","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"pl","translated":"Błąd systemu","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"d4ac3257435cc9d286233a708854ebf280ae12e63c10fdf90b1ce64b289d1766","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.sinceChip","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"In the reef since {date}","text_hash":"ded006c6417b781fc23bdac6fab292b69da412484cf516cfe8d6757551960dd7","tgt_lang":"pl","translated":"Na rafie od {date}","updated_at":"2026-07-09T11:28:29.733Z"} {"cache_key":"d4e0323d4a24701bef014e0220006436bf76e842145b84f3e7249ec0be0ade9c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"pl","translated":"5 s","updated_at":"2026-06-17T14:16:37.628Z"} {"cache_key":"d52e5682f56c40db9e88e8c495d2c3a662944d2901e7f9ceea71b13392a067f5","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"pl","translated":"Nowy czat w worktree","updated_at":"2026-07-06T04:56:35.905Z"} {"cache_key":"d5b2edffe64e8d06228281aec826d54c543c45978386335532ad9c0f7d6fa2f0","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"pl","translated":"Wpada od czasu do czasu","updated_at":"2026-07-09T20:51:47.820Z"} +{"cache_key":"d65542bbf9de3020fe33f30305e1f575b7a521c59842b80cceb97981d4fd839c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"pl","translated":"Serwery MCP","updated_at":"2026-07-10T02:27:51.614Z"} {"cache_key":"d657d9d4f507ea8080409534a7cf082d0230eb57a80e53afc2d835043e7911e2","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"pl","translated":"Wszystkie sesje","updated_at":"2026-07-03T07:40:09.757Z"} {"cache_key":"d672a40275dd2bad0d7401876ea3d0fdf6d7b834603abfefe5859d663354b19c","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitRight","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Split right","text_hash":"aa9997bb1d8c23d0b88521c4093fc8c3ee01b187f78635ae4d3e16d27e8a8475","tgt_lang":"pl","translated":"Podziel w prawo","updated_at":"2026-07-06T07:24:08.404Z"} {"cache_key":"d6a44defa1c26354f92183b101423b4b7bf38e9c813ff7670de2f594146c4df7","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.legendLess","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Less","text_hash":"ae5239ec63f28cd401ccd63e9f56e4ede8254a738a135ebcd33e844c18dd247f","tgt_lang":"pl","translated":"Mniej","updated_at":"2026-07-09T11:28:29.733Z"} +{"cache_key":"d6c8914707a0a317f903114817d8db84c3bca1d199820094a2088178d211c319","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"pl","translated":"Anuluj","updated_at":"2026-07-10T02:27:54.952Z"} +{"cache_key":"d8e7d21253c8641233684d68f3379a4e5dafcef30605199a1af021cf0338ff36","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"pl","translated":"Zainstalowano {name}.","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"db66204c35727fca9730df936e2dbc453a1a47fb504ca20385a8cedb30392e03","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadingMore","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"pl","translated":"Wczytywanie…","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"dba01cb4c4f5b280838377f2f4e896fb7c14ceb4eb8dfcd5e1eb77a47ba6a6ff","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"pl","translated":"Dodaj decyzję, blokadę lub notatkę dowodową...","updated_at":"2026-06-16T14:17:14.640Z"} -{"cache_key":"dc018e5c9514653e715bf365b88b61d4e82dd2b7dd051c363baf980cb5de4396","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"pl","translated":"Odwiedzono {seen}/{total}","updated_at":"2026-07-09T23:56:04.277Z"} +{"cache_key":"dc91f433bc141eac66dcc86c45d6e9cf46533b5bac936d18830be0219bd5dae6","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"pl","translated":"Wtyczki","updated_at":"2026-07-10T02:27:59.728Z"} {"cache_key":"dcc4a55db512fc0aff9aa6b90cc9f9520f2fab101021bfadc5c1f9333fffc242","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"pl","translated":"Brak zarządzanych worktree.","updated_at":"2026-07-05T21:01:26.445Z"} {"cache_key":"ddfc392ad2a249462259610859a6d8ef9bebdf66e5cdf852bd85cdd99c6bd4fa","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.streakDay","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} day","text_hash":"a4d254870473ab599749406cae968f3d24c7da6d9082093cf43ee4317175fd2d","tgt_lang":"pl","translated":"{count} dzień","updated_at":"2026-07-09T11:28:29.733Z"} {"cache_key":"deb00a4bd477bc1c463a6d2b341307e4fb3839061b73de4e1f349427cc618f86","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"pl","translated":"Przeglądaj, dopracowuj i stosuj propozycje, zanim staną się aktywnymi skills.","updated_at":"2026-05-31T21:48:36.995Z"} +{"cache_key":"df27b765107d3fbe2982a5d674a490b29446dbba851f05157f9efa6feb87c12d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"pl","translated":"Obszar roboczy","updated_at":"2026-06-16T14:17:14.640Z"} +{"cache_key":"df4f50aca6e41ae93a64ce5328d3356cd87abc181636253beb67c72a5e93f2c9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"pl","translated":"Dodano {name}. Uwierzytelnij za pomocą „{command}”, a następnie uruchom ponownie gateway.","updated_at":"2026-07-10T02:27:47.890Z"} {"cache_key":"df60720e3b3bbbc67451da811deefd661287403b3c482ff0182a08464727f9bc","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapCellTokens","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{tokens} tokens","text_hash":"507a17952dbcbb44f1b9ffff34ec5fc71563ca5d60c07c5fa9ab68339e462139","tgt_lang":"pl","translated":"{tokens} tokenów","updated_at":"2026-07-09T11:28:29.733Z"} {"cache_key":"df60c2eff745336c2518b2e1f4f5e8c4479003c1df233578f04ba7ae51eb8d4e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"pl","translated":"Wątek","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"dfb06ffdc6bd6cef93f228a0d97b594933c70b9f98de742e9b8a4742bab68dce","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"pl","translated":"Domyślny agent","updated_at":"2026-06-17T14:16:32.528Z"} +{"cache_key":"dfdc62b8faf58ddf2d5bb3c44065a5a7b2e6324f4a129cf5da095b163ef176fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"pl","translated":"Nazwa","updated_at":"2026-07-05T21:01:26.445Z"} {"cache_key":"e002b0cfe5ea7c721a12427d0a7948012dea82b61c88005f1a7a12f542eae9f2","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"pl","translated":"Ostatnia aktualizacja","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"e1901da6a86b3231c973491c3dc238a261ef44b69540686f3f02f685442731a6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"pl","translated":"Źródło","updated_at":"2026-07-10T04:28:43.372Z"} {"cache_key":"e323846129071b3c763754b18f1a5298b9216cfb94ea784da2f9ec61d30c5d94","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"pl","translated":"Wczytaj więcej","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"e3588a91d64474d8274acd311bc38b00040105b98c40c2539674e224f90acd3b","model":"gpt-5.5","provider":"openai","segment_id":"connection.retryNow","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Retry now","text_hash":"5148c3e20576923b589bd801ea84dc376213b82fbf8694f64437b621f1690615","tgt_lang":"pl","translated":"Spróbuj ponownie teraz","updated_at":"2026-07-05T21:55:48.401Z"} +{"cache_key":"e423aa280183dfe7a5bd1f763cc84fd73817e7f4b14d8663e95223e72560649f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"pl","translated":"Połącz serwery Model Context Protocol, aby zapewnić agentowi dodatkowe narzędzia. Zmiany mają zastosowanie do nowych sesji agenta.","updated_at":"2026-07-10T02:27:51.614Z"} {"cache_key":"e4329aa6f7f264722f4561c825055d7ada884b6242bc6c7da377c2acd8b54560","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"pl","translated":"Obszar roboczy","updated_at":"2026-06-16T14:17:14.640Z"} +{"cache_key":"e453ae8cd0a284503dce61826c12ec1db52d69a0c9b4d9cd4d2d1b5754f60d85","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"pl","translated":"Zamknij","updated_at":"2026-07-10T04:28:43.372Z"} {"cache_key":"e540128e586ccb863a84fa9f2b61468df5516e84e8eb32e8e9c218e3b0dabd2b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"pl","translated":"Nieaktualne","updated_at":"2026-06-17T14:16:32.528Z"} {"cache_key":"e544c21ba97b023a5805b9a12c81fd842688b1ec3ca863ec3249ace9d7da9674","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"pl","translated":"Brak kart pasujących do tego widoku","updated_at":"2026-06-17T14:16:37.628Z"} {"cache_key":"e64bff54d837cd6b0d3bb8e262128a8b4b0bc4433f40a2614340484305c1f45a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"pl","translated":"Ładowanie obszaru roboczego sesji…","updated_at":"2026-06-16T14:17:14.640Z"} +{"cache_key":"e89d9ac54678989be56e05901a37320d59a532f7fb3c60fe081ba741b03b1aae","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"pl","translated":"Silniki kontekstu","updated_at":"2026-07-10T02:27:51.614Z"} +{"cache_key":"e8f5280a9a2446624682c3f863116201cdc0abc93bd274246f1d31dd5f072348","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"pl","translated":"Oficjalne","updated_at":"2026-07-10T02:27:54.952Z"} +{"cache_key":"e9f743c4d2def315cc751d989afd64f7f30b9eae941685e466734774b4fe5649","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"pl","translated":"Dostawcy modeli","updated_at":"2026-07-10T02:27:51.614Z"} {"cache_key":"ea0ed2a63004bdb8e1a3f5389c5a0b2e5f517335a1419961475bedfc69ec0156","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"pl","translated":"Niedostępne hosty: {count}. Pozostałe hosty są nadal dostępne.","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"ea81f95c89a3e20dd979310140152d17d19d943542b71ac900eab4a790fe4f07","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"pl","translated":"Nie znaleziono żadnych wejść mikrofonu.","updated_at":"2026-07-06T17:57:07.854Z"} {"cache_key":"eadb59caa06a4724c35d6854b77417d81c2c1c912920543ac7ad1e36155e22cf","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"pl","translated":"Nigdy nie odwiedza","updated_at":"2026-07-09T20:51:47.820Z"} @@ -308,22 +425,29 @@ {"cache_key":"ed4c73ef1e8f31755a129a9d6ed365f3d03e17a5dcef7e744507f6f9498b024b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.restoreSession","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Restore session","text_hash":"35e4dc9befd3b3a29b50938839af0efb41b08051988dde53e1c1e73d1c2a039f","tgt_lang":"pl","translated":"Przywróć sesję","updated_at":"2026-07-02T14:30:38.319Z"} {"cache_key":"ee4cfb2bd47cbfa6630056ba1a26ffff94d9bd09b33184835909df5e47643ea2","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"pl","translated":"Agenci i narzędzia","updated_at":"2026-07-09T08:08:08.824Z"} {"cache_key":"eef389637b5d0a54653ef77928535138e9f7972a8319260be761dd3a40496613","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightSessions","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Sessions tracked","text_hash":"b1b77d34c51bc94340e818faacf7b2271593f409d75d7be9be7a5a12047775f0","tgt_lang":"pl","translated":"Śledzone sesje","updated_at":"2026-07-09T11:28:32.832Z"} +{"cache_key":"ef2166bd76f55bba1ae0e8b596214440638ac7e879d4c0c699dadfe4d1cfd2ed","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"pl","translated":"Usunięto serwer MCP {name}.","updated_at":"2026-07-10T02:27:51.614Z"} +{"cache_key":"f000ab420404edd2418ce3d20c95b526def0ecc8ae2503972485107473bfbf70","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"pl","translated":"Szukaj w ClawHub","updated_at":"2026-07-10T02:27:43.502Z"} {"cache_key":"f0e9d4e25d1e9ecf35e6702b493458cedb488b8ddbc95f84d5be1d3036e3af06","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightToolCalls","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Tool calls","text_hash":"da5122dc0f97b158bfbd27c5bd479322f34e0916a0cd4626d42c03bb0000e4b4","tgt_lang":"pl","translated":"Wywołania narzędzi","updated_at":"2026-07-09T11:28:32.832Z"} -{"cache_key":"f1186d4236abd51e41a6027ad54f77c8bd85f8db7b2ae67e5fd7d9465a9441d1","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"pl","translated":"Zadokuj po prawej","updated_at":"2026-07-10T06:08:36.073Z"} +{"cache_key":"f28b274d10d1c14f7d979674524966d2dbf5fd50059797c7225f803bbfbf6797","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"pl","translated":"Commit","updated_at":"2026-07-10T09:47:35.486Z"} {"cache_key":"f46ca3da5e1380ff5d60b94c6c9e60579d0a7446481c1ce16d8282e1f066d9a2","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"pl","translated":"Wejścia mikrofonu są niedostępne, gdy ta strona jest nieaktywna.","updated_at":"2026-07-06T17:57:07.854Z"} {"cache_key":"f5247a7367d4306375f6905fa51992abf2f0f598e45847385a0e2525a9babc00","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"pl","translated":"Brak","updated_at":"2026-06-16T14:17:14.640Z"} +{"cache_key":"f5fc7b47b55269d2b3f907f7e11487a4b34f7bcea65b968d2756b87f84793d91","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"pl","translated":"Ustawienia MCP","updated_at":"2026-07-10T02:27:51.614Z"} +{"cache_key":"f61a695c7eac4141e34f637800516f33b21eb04f6f3881fc35c7c8b686b4bfe7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"pl","translated":"Jednoklikowe konektory MCP i starannie wybrane wyszukiwania w ClawHub dla popularnych usług.","updated_at":"2026-07-10T02:27:47.890Z"} {"cache_key":"f693a8d19241381dde205aecb8036421ba584eac66d29f0f6cd202e323fdcd83","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"pl","translated":"Dostęp do mikrofonu jest zablokowany. Zezwól na niego w ustawieniach witryny w przeglądarce, aby wyświetlić listę wejść.","updated_at":"2026-07-06T17:57:07.854Z"} {"cache_key":"f6add581b820a0c857f9914d83fc188194bc5a656695312dfc45cafd060b22cc","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.streakDays","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"pl","translated":"{count} dni","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"f783a3f1eb2f94fca198e78c9957ddb6e0e076835975c341f0129284c1c3bf57","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statCurrentStreak","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Current streak","text_hash":"f1758c2815840f1bbef57663a13d2c243c6d0c052fcb09bc1a75319ebc9621d5","tgt_lang":"pl","translated":"Obecna seria","updated_at":"2026-07-09T11:28:29.733Z"} {"cache_key":"f7e506921279901bf0c3660a7496742def42f52c58808d870b5a203dd5530f1e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"pl","translated":"Grupy niestandardowe","updated_at":"2026-07-05T14:40:11.071Z"} -{"cache_key":"f874237dd4e9a0d505f7479a8a31bc14f9e44887202611558951a74d58b94b8c","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"pl","translated":"Cicho","updated_at":"2026-07-10T04:50:34.303Z"} {"cache_key":"f8bee415ef4dfca5ceb43da4351e8b5ef3015129aa0c77d9d4d55e86532412f5","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightMessages","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Messages exchanged","text_hash":"3e0eaa1c266dfdf2f9799c1f3c574da7533f63057934e0aa003eddabc517cfbe","tgt_lang":"pl","translated":"Wymienione wiadomości","updated_at":"2026-07-09T11:28:32.832Z"} +{"cache_key":"f8c3cd27d587e58fc432ef80ba1ce1ebaa8bc9955bdc4703770d17d9359df6b2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"pl","translated":"Kategoria","updated_at":"2026-07-10T04:28:43.372Z"} {"cache_key":"f94713d34bf32008e9560082a21f02a1bb59ea701e6519001ec5efccc5ab3d7f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"pl","translated":"Katalog sesji jest niedostępny","updated_at":"2026-07-09T10:01:43.766Z"} {"cache_key":"f98b315aa5fddb2ddacee5fab95cb6248de63aa74571120eb1b57007396114ea","model":"gpt-5.5","provider":"openai","segment_id":"connection.reconnecting","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Reconnecting…","text_hash":"27b80374e1151af6df7824a358606c77502548bff4d467e4ae2e146801f601ce","tgt_lang":"pl","translated":"Ponowne łączenie…","updated_at":"2026-07-05T21:55:48.401Z"} {"cache_key":"fafb060d0479fd3602a1a411ffc2c63e8e70f3e8d223a95da1fbcab97bd23b3f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"pl","translated":"Dodaj notatkę","updated_at":"2026-06-16T14:17:14.640Z"} {"cache_key":"fb7be9136957451450aa541fa92e429d4658ddf08bdc8a574f29913135f35d97","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"pl","translated":"pracownik {state}","updated_at":"2026-05-30T15:38:42.049Z"} +{"cache_key":"fbf480641d870933da2a600cb325071272af61edac6b0e53069fc1b4b45473c4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"pl","translated":"Usuń {name}","updated_at":"2026-07-10T02:27:54.952Z"} +{"cache_key":"fc06cbfbf949be13b20a9c64299317315da40ff9067e15411bbd12eee7321f2d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"pl","translated":"Włączone","updated_at":"2026-07-10T02:27:47.891Z"} {"cache_key":"fc90749f01146edd1abc5a4f364003c93a181c283048a35aadd7794d565a2e11","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"pl","translated":"Utworzyć migawkę i usunąć {name}?","updated_at":"2026-07-05T21:01:26.445Z"} {"cache_key":"fd5c39d7a54889aea94fec36e107c4aa09209c05873eb5b550c9ec69b30a9718","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.sessionSelect","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Pane session","text_hash":"0deb0759c3643f2659c0838326276513c119e7923672a118c4ed13c012c4b628","tgt_lang":"pl","translated":"Sesja panelu","updated_at":"2026-07-06T07:24:08.404Z"} {"cache_key":"fd63808d4d9186e5002dc33427be3d37525f52122ce88d5893af2658e0b2f9ed","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"pl","translated":"Dowód","updated_at":"2026-06-16T14:17:07.423Z"} {"cache_key":"fea19a6f124fc18bea74ed8cde68b6ff0fc63be70b28b4bd4d759db74d265178","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightsTitle","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Activity insights","text_hash":"ba3b52a117285b5aada2567de5773c4141fd7d70a62b9b7afda8db8f9aebb40b","tgt_lang":"pl","translated":"Wnioski z aktywności","updated_at":"2026-07-09T11:28:29.733Z"} +{"cache_key":"ff0c0181e7b10c490f5bfffc65dc65ced5e1d915cf89f3279327837175c01eda","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"pl","translated":"Wyłącz","updated_at":"2026-07-10T04:28:43.372Z"} {"cache_key":"ff51d5de61da4af84cfc30148dac2ad81fb8746435232da4aa898479bb4b8c5f","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/pl.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"pl","translated":"Kategorie kosztów","updated_at":"2026-07-06T06:40:15.357Z"} diff --git a/ui/src/i18n/.i18n/pt-BR.meta.json b/ui/src/i18n/.i18n/pt-BR.meta.json index a3059459b825..4001be814ae1 100644 --- a/ui/src/i18n/.i18n/pt-BR.meta.json +++ b/ui/src/i18n/.i18n/pt-BR.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:25.717Z", + "generatedAt": "2026-07-10T09:46:50.020Z", "locale": "pt-BR", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/pt-BR.tm.jsonl b/ui/src/i18n/.i18n/pt-BR.tm.jsonl index 13da1b5f3358..733e739a97af 100644 --- a/ui/src/i18n/.i18n/pt-BR.tm.jsonl +++ b/ui/src/i18n/.i18n/pt-BR.tm.jsonl @@ -1,5 +1,7 @@ {"cache_key":"00072be0a409bc28cef02b3bf2b2a55af66d82a0e58039a1c505acea5e992b76","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"pt-BR","translated":"Artefatos","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"0040569c17e1835d0532c2bcf09b32bca96392e040c2712389dbd33b82b323bd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"pt-BR","translated":"Execução","updated_at":"2026-06-16T14:13:11.260Z"} +{"cache_key":"00c7f8b79b8820496b55b78908b716434bf1eebb67dce8b1c6299b28786a870c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"pt-BR","translated":"Espaço de trabalho","updated_at":"2026-06-16T14:13:17.394Z"} +{"cache_key":"00dcadefb718f4d98d9f11d0aa955253856a81ac26454560ee16325eefec7e4c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"pt-BR","translated":"Gateway offline","updated_at":"2026-07-10T02:23:15.779Z"} {"cache_key":"010de259469d82fc29f89ec7ebee7a388dcbd5f590e856001d6ef608b90d6830","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"pt-BR","translated":"{count} tokens em cache","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"010eac8bb07c1a9ef8cd0a2f3044615f05b0391fed8d182319c68b21458cc6fb","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"pt-BR","translated":"Todas as sessões","updated_at":"2026-07-03T07:35:59.490Z"} {"cache_key":"01624f18a764576a446bf5f22744ca5b7380ed2eaf98bceed575132af524bf65","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"pt-BR","translated":"Comando","updated_at":"2026-06-16T14:13:27.459Z"} @@ -8,10 +10,13 @@ {"cache_key":"04a9180ada540aef42e5566f53cdd4d819fc2832bc3e06c1703b733a7a134899","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"pt-BR","translated":"Diagnósticos","updated_at":"2026-06-16T14:13:11.260Z"} {"cache_key":"04da2f98cafc20faae5ac30e17727066f82a43e0291137e4d4452f4e1b71f999","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"pt-BR","translated":"Pronto","updated_at":"2026-06-17T14:13:15.046Z"} {"cache_key":"059ee10300a541f2925f7654104033a07bace5b6a62fa40fbda965c832089f62","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitRight","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Split right","text_hash":"aa9997bb1d8c23d0b88521c4093fc8c3ee01b187f78635ae4d3e16d27e8a8475","tgt_lang":"pt-BR","translated":"Dividir à direita","updated_at":"2026-07-06T07:23:13.378Z"} +{"cache_key":"05ff01b427d69a219c17bddd71769931e29740eeb4023f3024d55033513d4720","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"pt-BR","translated":"Reconhecer o risco e instalar","updated_at":"2026-07-10T02:23:19.549Z"} {"cache_key":"0613deef39995601902688023959cd2e639c545495d1335fac099bae11d74c36","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.badge","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Expired","text_hash":"424a2551d356754c882d04ac16c63e6b50b80b159549d23231001f629455756e","tgt_lang":"pt-BR","translated":"Expirado","updated_at":"2026-07-01T10:31:00.782Z"} {"cache_key":"06ed3bbd65976bca561539be8be29a1b9262dc4f1a673ee84e1bc6ad7bf314ef","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"pt-BR","translated":"Nome","updated_at":"2026-07-05T21:00:34.411Z"} {"cache_key":"08dc6f4e955bf3f335d3afb9e544cc7a6ea39ba25f1d85a1f151ebe4119169d4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"pt-BR","translated":"Ausente","updated_at":"2026-06-16T14:13:17.394Z"} {"cache_key":"0b17963ffe2bea604a0ebcff0b8f7e5f403fbf86144e008256ec96fca50eeacc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"pt-BR","translated":"Automático","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"0ba49414c076c100bc819ba0749d79ed3476c6064627dc10df6566891f25ee04","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"pt-BR","translated":"Instalar {name}","updated_at":"2026-07-10T02:23:19.549Z"} +{"cache_key":"0bc06457d6a40fd6e2402cc988d77839a02041a52ebf3b5276ff4d527325bdca","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"pt-BR","translated":"Instale e gerencie recursos opcionais.","updated_at":"2026-07-10T02:23:04.448Z"} {"cache_key":"0c4a8a34d4da8f042218f03bc496031194eb381004b2444ebe813abfb350869d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"pt-BR","translated":"60s","updated_at":"2026-06-17T14:13:19.801Z"} {"cache_key":"0d2db769545ba0a007a592aa0c45a5943fff1e0d62d5884ee46a5a892a6b6212","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"pt-BR","translated":"Nenhuma entrada de microfone foi encontrada.","updated_at":"2026-07-06T17:56:11.051Z"} {"cache_key":"0df8199942950468868454b555bd73577bfb9a45f0844daf333920fe7e747164","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"pt-BR","translated":"Fixadas","updated_at":"2026-07-02T14:30:01.256Z"} @@ -22,24 +27,32 @@ {"cache_key":"10dce7dfe66936a2d2a07b68944f01f80479beac869a0dbeb382ca6a72bf476a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"pt-BR","translated":"Workspace: {workspace}","updated_at":"2026-06-16T14:13:11.260Z"} {"cache_key":"110ae46a7017718e8a55eccd65720463f259822631275f36a46535bb76ee9e7e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"pt-BR","translated":"{count} exibido(s)","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"12d3a94964f1ac1dc05049914677ba047514d529269c7ceb4db11174af808358","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"pt-BR","translated":"Padrão","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"12d8c93016440ffc3fb17ae2ca654989969806e4a12c2c2e0b312a0997b22901","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"pt-BR","translated":"URL ou comando","updated_at":"2026-07-10T02:23:12.679Z"} +{"cache_key":"132e6ddd945321a6ffe392f2942cc888459faaf63a399f160b86c115d5dfc056","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"pt-BR","translated":"Somente navegação. Alterações de plugins exigem acesso operator.admin.","updated_at":"2026-07-10T02:23:19.549Z"} {"cache_key":"1343e541a5724299b3bb8660b378a7a2303dc123dafba12282f201f3d1405bab","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"pt-BR","translated":"Última atualização","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"14253f5cfeaaaeb483be1a9f6f5495ba61c55dfbf37793b50229c5daa7a4b7a2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"pt-BR","translated":"5s","updated_at":"2026-06-17T14:13:19.801Z"} +{"cache_key":"157b3c34c8169baae8f757d8c15c84a1bd8b750af130b32717bc7f64a70614ef","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"pt-BR","translated":"Disponível","updated_at":"2026-07-10T02:23:15.779Z"} {"cache_key":"157f47dacadc72698e7aacc146098c8f6af3940ae17c60604e05eb6f0028a75f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"pt-BR","translated":"Nenhum host do Codex encontrado","updated_at":"2026-07-09T10:01:43.718Z"} +{"cache_key":"15f148233d024f775e5f84e3415f4c86650ba6b228ac4bc444a3fd0e7dd4c080","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"pt-BR","translated":"{name} adicionado. Atualize o endpoint e as credenciais nas configurações do MCP antes de usar.","updated_at":"2026-07-10T02:23:08.336Z"} +{"cache_key":"1602d908d006375f5831d3f31cb9db2f047d096c02fab2c2941742419e562011","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"pt-BR","translated":"Tente uma busca diferente.","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"160ef9a5963d2c85d043f9fe2e6452b3de2d0de0199a32d1aef6d411dcb3cffd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"pt-BR","translated":"Falha na atualização","updated_at":"2026-06-17T14:13:19.801Z"} {"cache_key":"17111a46ebef85957bf42e2afb1a608b1f5f097c92fa8f883ed65fdc2d0266b7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"pt-BR","translated":"Nome do novo grupo","updated_at":"2026-07-05T14:39:34.196Z"} {"cache_key":"17422ecf0bc90c153382b8990b7134262e501bdaf0aec7a105e1fd5f75a6e609","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.planUsage","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Plan usage","text_hash":"eb55e9232d2a7503c819491be60761e99458daf4947df9676c5cc86b653f59f4","tgt_lang":"pt-BR","translated":"Uso do plano","updated_at":"2026-07-09T11:48:56.309Z"} +{"cache_key":"1757b4c7edf05b42017d5a2cc7963f4b3cc9b58fb3abee79fdb811d52fcf6e9e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"pt-BR","translated":"Pesquisar plugins","updated_at":"2026-07-10T02:23:04.448Z"} +{"cache_key":"178fa436f47f5c9d4d34fad9155902560d13cffeb7f51cc565dc20705c04f9ef","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"pt-BR","translated":"Oficial","updated_at":"2026-07-10T02:23:15.779Z"} {"cache_key":"179ff53453e338a4a508f8623a8cd80e1fcbf425786ad6a22da05aba53bf211e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"pt-BR","translated":"Integridade do workboard","updated_at":"2026-06-17T14:13:19.801Z"} {"cache_key":"17a7dba7d4ec0b80f44d268faa9c7bc381231e03b271d04d11f33dd3f211a040","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"pt-BR","translated":"Catálogo de sessões indisponível","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"17c4bf108f22b3623556e0a280ee06c459e988a9dcfb05698622e9b4648054f0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"pt-BR","translated":"Grupo","updated_at":"2026-07-05T14:39:34.196Z"} {"cache_key":"17cda38b413436a4e1b1d8099e216056f0d91f0092d59bb66bd0315315c02e29","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"pt-BR","translated":"Não agrupado","updated_at":"2026-07-05T14:39:34.196Z"} {"cache_key":"187177708c0c5271a44b1f7e814eeb40f07fa18d7c4fa4fb7233e38accc30b89","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"pt-BR","translated":"Janela de contexto","updated_at":"2026-07-05T10:15:58.131Z"} -{"cache_key":"18b1624e379641baf7cc728577cbcdb7f663cf157de7b42bf874e73cbf333286","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"pt-BR","translated":"Pesquisar","updated_at":"2026-07-10T06:07:47.122Z"} +{"cache_key":"1872cbcf9948f36c1966aac0947baa190c64855f5c386ba34d1ecd81e577be9d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"pt-BR","translated":"Requer atenção","updated_at":"2026-07-10T02:23:15.779Z"} {"cache_key":"193cf41e702e12d201f1a223890c21c6b8ad9a5178310ed836c91629548710e2","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"pt-BR","translated":"Worktrees","updated_at":"2026-07-05T21:00:34.411Z"} {"cache_key":"1a9710b3c9e635f7a54a4f0851b5e3a8def1828a980ee3400f7abaa118fce7ec","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"pt-BR","translated":"Atualizado: {time}","updated_at":"2026-06-16T14:13:11.260Z"} -{"cache_key":"1cbe3f73c1fc750e057b51bfa5d194e57be2fb176705a2816f75f561daa71e06","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"pt-BR","translated":"{seen}/{total} visitados","updated_at":"2026-07-09T23:55:45.637Z"} {"cache_key":"1d53c3631e9cdc4c0a02576d6ca7f31ace557acaaf56ab724c9fbee8a9460c65","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"pt-BR","translated":"{agent} (não configurado)","updated_at":"2026-06-17T14:13:15.046Z"} {"cache_key":"1e31a74cefeb52fb3311b33d14bb190c97c5fdf1c9c9c223bf6d45a29bc916c8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"pt-BR","translated":"Nenhum arquivo modificado nesta sessão ainda","updated_at":"2026-06-16T14:13:17.394Z"} +{"cache_key":"1e6fa512fede3a891ae365e06adf3600fa8108076ba5c4ebae18a0d6138d79ba","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"pt-BR","translated":"{name} ativado. É necessário reiniciar o Gateway para aplicar a alteração.","updated_at":"2026-07-10T02:23:19.549Z"} {"cache_key":"1ec36022ada661893c6569732d5cfecfe97dd2a41c04e5401e34dba00ec94e77","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"pt-BR","translated":"Reconecte-se ao Gateway para atualizar as sessões do Codex.","updated_at":"2026-07-09T10:01:43.718Z"} +{"cache_key":"1ef744bf3960b6f1d90f71a106b982fd11de67ddddbaad599931add3166e0503","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"pt-BR","translated":"Servidor MCP com um clique","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"1f1aaf961f7d8e17c917ac6e2c7731587b7e4e9ac189baa1b415d2f66d3eabf7","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"pt-BR","translated":"Conexões","updated_at":"2026-07-09T08:07:47.561Z"} {"cache_key":"1f5691e6ef32d4bf079eff1ec1ab43ab5a9783ad551c98b5e9fd9e596e3e98f7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"pt-BR","translated":"Pesquisar sessões do Codex","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"1ff2d3b312f54e5a469543a208af652134d07d72968589c9e6eb3a55611d62a2","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"pt-BR","translated":"Checkouts isolados de repositórios pertencentes ao OpenClaw.","updated_at":"2026-07-05T21:00:34.411Z"} @@ -47,7 +60,9 @@ {"cache_key":"20b497a56ed8bd32b399511bf37926f3d3a6fcda3dee19e8c823c3d19ce019f2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"pt-BR","translated":"Dependências","updated_at":"2026-06-16T14:13:17.394Z"} {"cache_key":"216a459f4b2f329cd92517d86c30f48f15fc19665eeb29686793ffac4ce4d495","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"pt-BR","translated":"Arquivadas","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"21788d450f4387a29e1c624ef20d53cd6de55f58063c62f819f0951e5036d25f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"pt-BR","translated":"{count} sessão","updated_at":"2026-07-05T14:39:34.196Z"} -{"cache_key":"2323997ffa5938fc573bb92be73003b41ebc836b9160ea2975d0281798d369a4","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"pt-BR","translated":"Arraste para fixar à direita ou na parte inferior","updated_at":"2026-07-10T06:07:47.122Z"} +{"cache_key":"22e3ecad60c2e675d829856b7a940058a3cdac94cbc2740cc79e1d577dc05906","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"pt-BR","translated":"Conectores MCP com um clique e buscas selecionadas no ClawHub para serviços populares.","updated_at":"2026-07-10T02:23:08.336Z"} +{"cache_key":"23527572e7854f2a2d70e66fba82ee15fcf162ddcef3e2c578c4485f3a3e8ca1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"pt-BR","translated":"Nome","updated_at":"2026-07-05T21:00:34.411Z"} +{"cache_key":"238a3956a44619ee2eff023654c539f2c9e901be664b0c3b7e29843e9ea5a27a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"pt-BR","translated":"Configuração","updated_at":"2026-07-10T02:23:15.779Z"} {"cache_key":"23e62615ae72efe1a36a998fbf6a7503c7997cc9e87b8eb15d8b1f042aafbce3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewAll","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"All cards","text_hash":"2306120917506b5998ec702f3661068b102dac538ba4c9e4634d65fe33eea98a","tgt_lang":"pt-BR","translated":"Todos os cards","updated_at":"2026-06-17T14:13:15.046Z"} {"cache_key":"241b1c4abae9165d1f13a8bf225e3b87ab2f1a533c0ea5f1b77680ccf8da63e7","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.title","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Context usage details","text_hash":"0e04e44654b5a2abf769dcd2f82a32e0501a41689d6635d7f718978c160958f0","tgt_lang":"pt-BR","translated":"Detalhes do uso de contexto","updated_at":"2026-07-05T10:15:58.131Z"} {"cache_key":"2470200449f02fc3e36b0461fde5f10789c205dd37a411ff2fa0c9f345be016d","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"pt-BR","translated":"Voltar ao app","updated_at":"2026-07-09T08:07:47.561Z"} @@ -56,11 +71,11 @@ {"cache_key":"25d9fb5fa0b8df9753131abdd138962e2c444e526fc18da9e2d0b12fe047d323","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"pt-BR","translated":"Média","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"2817fc682cb8dfe96ab382151d263b508ef0c8e0923b7ea75d89df7931002b8e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"pt-BR","translated":"Em execução","updated_at":"2026-06-17T14:13:15.046Z"} {"cache_key":"28668a02cb2681672396a70daa274c4364cce32882d43c2f58969eefaf947fee","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"pt-BR","translated":"Não atribuído (usa {agent})","updated_at":"2026-06-17T14:13:15.046Z"} +{"cache_key":"28acc743b9202d31c9e8ae7c3dbe11119326206ea783918c11d25a0f36b72108","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"pt-BR","translated":"Digite pelo menos dois caracteres para encontrar plugins de código e de pacote.","updated_at":"2026-07-10T02:23:04.448Z"} {"cache_key":"28c27af456a182c9efa65eb3ce7c2fb224e6d11572d42bb2dc9e4612ffa1cd45","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"pt-BR","translated":"Novo chat no worktree","updated_at":"2026-07-06T04:55:51.818Z"} {"cache_key":"28fd08f745525853e7e3e4c1237975f8c07d07cf4256c45d176d31c2cd1f0f88","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"pt-BR","translated":"Manter comentários após a resposta final","updated_at":"2026-07-01T01:06:19.014Z"} {"cache_key":"292754bb8a397f3615ed08bdeb6289aca2416d602e6437abc88aca6e0d3b77f7","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"pt-BR","translated":"Abrir detalhes do uso de contexto","updated_at":"2026-07-05T10:15:58.131Z"} {"cache_key":"29a3bfdf9cb14ec24751f2be576b51d0cd47954b5ba67562df34b35cf115b3c5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"pt-BR","translated":"Usar conversa atual","updated_at":"2026-06-16T14:13:11.259Z"} -{"cache_key":"2a5e9602f25d13d8e39c6e3067ea85fa207d3e2fb9fa53c03ec4c69bd9ccf1bf","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"pt-BR","translated":"Pequenos blubs ao tocar","updated_at":"2026-07-10T04:49:53.408Z"} {"cache_key":"2a6b55bd02cddd364a7b1464ec13a1b141da6d9889b97ec3bfc7a252346fe09b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"pt-BR","translated":"{count} artefatos","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"2a84468c8bca58951d134fd050e2cf5142ae0596bafc2e621e71a64816baa1ea","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"pt-BR","translated":"Sistema","updated_at":"2026-07-09T08:07:47.561Z"} {"cache_key":"2b5f6b5471c21d5d4a6fb037d707b3db112d3903b48e24cfe2e79782e7ac2233","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"pt-BR","translated":"Comprovação","updated_at":"2026-06-16T14:13:11.260Z"} @@ -68,9 +83,11 @@ {"cache_key":"2c8754fe0c71e9279703ad3e85cf4be89e08ae7cd96bf102297ec43296f63b4c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"pt-BR","translated":"Uma visualização somente leitura das sessões do Codex neste Gateway e em todos os computadores conectados que as compartilham.","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"2cc26199dd8364292a5bf914820a7968ec35b8829f5377edd895c2198dad2ff4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"pt-BR","translated":"Nenhum cartão corresponde a esta visualização","updated_at":"2026-06-17T14:13:19.801Z"} {"cache_key":"2d440683dcdc1f2a6014267ec37197b9401f2088180d948a601d177fd739b218","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"pt-BR","translated":"Atualização automática","updated_at":"2026-06-17T14:13:15.046Z"} +{"cache_key":"2d51c79b9cd1c8475cfd89cc1605eb91f9799f0d413bfe055039c18ec6b1cc7f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"pt-BR","translated":"Casa e mídia","updated_at":"2026-07-10T05:21:57.578Z"} {"cache_key":"2d72431956bb4e3f2f59aa41d8c8b830e7aa07d8270f585ee9abcf1a56c33a6f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"pt-BR","translated":"Esta semana","updated_at":"2026-07-05T14:39:34.196Z"} {"cache_key":"2e70ed1778cd433ffa352c27e101e5654b5249ab0556685513c6a4526cd4a648","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"pt-BR","translated":"Dividir","updated_at":"2026-07-06T22:56:16.035Z"} {"cache_key":"2e728de38c036086ac443c7963c6eb7f8cdef8a1d6bc161e7d428afd7ad4fb02","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"pt-BR","translated":"Entrada de microfone","updated_at":"2026-07-06T17:33:35.115Z"} +{"cache_key":"2e8b449c934a56eb3fa83429e5e9b9b558dd8f459f0e19a5b0aaf22e25b0afae","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"pt-BR","translated":"{name} ativado.","updated_at":"2026-07-10T02:23:19.549Z"} {"cache_key":"2e96fe8a39f2d5d5c4540db5ecfd13fafafb36f7f917e21c16c127802a547db4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"pt-BR","translated":"Voz","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"2eeef23403bf900df82006215ad440ee45b24cb7e75801167765f7bef800171b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"pt-BR","translated":"Notas do operador","updated_at":"2026-06-16T14:13:11.260Z"} {"cache_key":"2fd1b0311df8702e5bf88078211dfe1d867e780f15f2584a0363775a27951100","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"pt-BR","translated":"{count} bloqueadas","updated_at":"2026-06-16T14:13:17.394Z"} @@ -79,17 +96,24 @@ {"cache_key":"322e3115a45abec088171ecf487f91e3f9d146428872caedfcaff50e560e9d1d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"pt-BR","translated":"Sessões em todos os seus computadores","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"328b16b2532ada2bf594d3cc589637f1ec809902df1194b6f7644d4a2a78c033","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"pt-BR","translated":"Sessão","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"331a07a121ef71e48cafebfc387eda6d96f99f77da8aed536a8647c4ff9f6236","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"pt-BR","translated":"Acionar despachante","updated_at":"2026-05-30T15:38:08.357Z"} +{"cache_key":"3360a9f756d9d8808c8cbfc0ae9abf818cdd1e4fc2ab035ddc96f089e3857e21","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"pt-BR","translated":"Remover este plugin?","updated_at":"2026-07-10T02:23:15.779Z"} {"cache_key":"3518cbfb0e85236490a50261f944620db0b51a022b63f7329e48b94af7049055","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"pt-BR","translated":"Status","updated_at":"2026-07-05T21:00:34.411Z"} +{"cache_key":"35360c4e457c998893072a76b615a44200815ba45846b2c4e1e5765c412cc386","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"pt-BR","translated":"Adicionar","updated_at":"2026-07-10T02:23:08.336Z"} +{"cache_key":"361d1d4cbbabc2e0bd0245144ec661b0e996f9c632264836cf3545ae43665fbc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"pt-BR","translated":"Revise o aviso do ClawHub antes de instalar este plugin.","updated_at":"2026-07-10T02:23:19.549Z"} {"cache_key":"36525534b1f413e589721c84f48933c18fdcbe054592b7fada7ccfe3213aab52","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"pt-BR","translated":"Violação de protocolo","updated_at":"2026-05-30T15:38:08.357Z"} {"cache_key":"37233dbab84389f5a7d80ed7cbfb4337dd368ded90cda5c60d7841413633d82f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"pt-BR","translated":"Mais em Configurações","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"3787cb051c50cfd1d726ae393887dc627c26cfca46bf9152db3911cdb310c29e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"pt-BR","translated":"Carregando espaço de trabalho da sessão…","updated_at":"2026-06-16T14:13:17.394Z"} {"cache_key":"37ce9fb07f07eb4380a4bdc80ccd6ba219b5306cc5e180754e06b5fba9918bf0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"pt-BR","translated":"{count} prontas","updated_at":"2026-06-16T14:13:17.394Z"} -{"cache_key":"3a24b1b65396a0f55c200dd794edf5ffa2b3ed05e162e4d851a9574be1fed2ed","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"pt-BR","translated":"Fixar à direita","updated_at":"2026-07-10T06:07:47.122Z"} +{"cache_key":"387df9e6c336b829bbe3bd464400dd0d2a54b8519b0147bd8cecbce6b81a8d2c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"pt-BR","translated":"Plugin de código","updated_at":"2026-07-10T02:23:15.779Z"} +{"cache_key":"397b313455192da7f70fc149ea68100a4e6f002b7d8677fd3bcd5144a5e889aa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"pt-BR","translated":"Instalar","updated_at":"2026-07-10T02:23:19.549Z"} +{"cache_key":"3a33a8adc956854454ebb44b00cb6aed71581be4cfcf11738113beb534f71927","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"pt-BR","translated":"Desativado","updated_at":"2026-07-10T02:23:15.779Z"} +{"cache_key":"3a63e83782296b412a302a31325115dc7ff5babc52d5afea7b205163caad5432","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"pt-BR","translated":"Hash do commit copiado","updated_at":"2026-07-10T09:46:50.017Z"} {"cache_key":"3c0cbfff49a72a30736ff7e0d40e5401f3644c2d048ecf5019dfaeb0250a8092","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"pt-BR","translated":"Atualizado {time}","updated_at":"2026-06-17T14:13:19.801Z"} {"cache_key":"3d1a839c1f2a735dc7d387a278b6b6aa8e7e12f5f73fee73b6b34d64ca8bba53","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"pt-BR","translated":"Checkouts isolados de tarefas de agentes e snapshots de recuperação.","updated_at":"2026-07-05T21:00:34.411Z"} {"cache_key":"3d4dcc4505a4934b851fcc18f8b4c646a4f02c41d5117c454c501a37f3004697","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"pt-BR","translated":"Nota do objetivo","updated_at":"2026-05-29T20:59:56.109Z"} {"cache_key":"3d781ed9fcf319f3503349999a113070f1527991f450a98d6cc0abe66e894afa","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"pt-BR","translated":"Nenhuma sessão arquivada neste host.","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"3db3fde74d93d13f98149ab002d27ece9388777dcc3fc0f77734ff269253f1d0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"pt-BR","translated":"Alta","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"3dbb0bfd7ce11f776418679373ff0668fde2dccd6d20e383ccb32e6a11683a26","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"pt-BR","translated":"Versão do Gateway conectado","updated_at":"2026-07-10T09:46:50.017Z"} {"cache_key":"3f27693b80940c2c981ec597589a533cf36e8a73a2d5bc016297e1290a9dbbb6","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"pt-BR","translated":"Este navegador não consegue listar as entradas de microfone.","updated_at":"2026-07-06T17:56:11.051Z"} {"cache_key":"3f9f57b8ae0a5e634b80c74fd8470fa6296dc94732e00204bb84035566b050a8","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitDaily","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Daily limit","text_hash":"1e4ce9cd955f07b1b79cddb1bec9df28d4033d4238c0e54b0b766239133afc8c","tgt_lang":"pt-BR","translated":"Limite diário","updated_at":"2026-07-09T11:48:56.309Z"} {"cache_key":"402277477557b54c4b799fd1e7c5033b98e9106d14ecd965fd57f75dc2b26950","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"pt-BR","translated":"O acesso ao microfone está bloqueado. Permita-o nas configurações de site do navegador para listar as entradas.","updated_at":"2026-07-06T17:56:11.051Z"} @@ -99,50 +123,71 @@ {"cache_key":"43672d960af312eb307deb0924f2e8ec05f673998fd377f741aed82f4fecec5b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"pt-BR","translated":"hosts","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"43bd66fc2906bf5bbf47aaf0b4f6e57beedad3d0bffcf37a03f9e185493dec6c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"pt-BR","translated":"As configurações avançadas do Talk exigem acesso operator.admin.","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"43beabc7d9dd27bd7544f7f4184c0277f1f546a9d1c493b2b2e3cc7268e93100","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"pt-BR","translated":"Skills: {skills}","updated_at":"2026-06-16T14:13:11.260Z"} +{"cache_key":"44ff5ac608f02d281573493a59f2170b2f9d9001fd3ef3e3363dfca03746b5ff","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"pt-BR","translated":"Não foi possível atualizar a configuração da Control UI: {error}","updated_at":"2026-07-10T02:23:19.549Z"} +{"cache_key":"45c36fd8e3c050c0476d1c9638a783876853a581d58180f04ff892bd48c775ca","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"pt-BR","translated":"Desativar","updated_at":"2026-07-10T04:28:10.596Z"} {"cache_key":"461315d8326ced955434f248acaf391fadb15501a232468f1a432a629fef76a3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"pt-BR","translated":"Atualizado","updated_at":"2026-06-16T14:13:11.260Z"} +{"cache_key":"46a2d0b00513ad6223e66c2099f490f61dc7c933c5417f5a47c9b81032ae989a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"pt-BR","translated":"Adicionando…","updated_at":"2026-07-10T02:23:12.679Z"} {"cache_key":"46affb56fbfa7b0a2b6bf5dc087c6121207204b4b7f6d3b621e889848dccb971","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"pt-BR","translated":"Pesquisar arquivos","updated_at":"2026-06-16T14:13:25.058Z"} +{"cache_key":"4712465be7aaa24a57942d2d0f0ad471b92333e6610ec6e3ea55db295c65787f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"pt-BR","translated":"Global","updated_at":"2026-07-10T02:23:15.779Z"} {"cache_key":"478f01a843e6d69215936919aedf163dee6c42b0a5e9213df5937dd401a736e0","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"pt-BR","translated":"Uso de contexto da sessão: {used} de {limit} ({pct}%)","updated_at":"2026-07-05T10:15:58.131Z"} {"cache_key":"47d09d96e635944076682677fbed44e8fb9ddeb33223ea1c43eb6f57d590e95a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"pt-BR","translated":"Visualizar","updated_at":"2026-06-16T14:13:27.459Z"} {"cache_key":"482afc286937744af0a18b7ad981042a45b13e00ebad051fc0c70ac8f658f598","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"pt-BR","translated":"{count} solicitações","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"4877de28eb9350460666567fe4b53743080b4da2e993e994412c596135de8079","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"pt-BR","translated":"Hosts indisponíveis: {count}. Os demais hosts continuam disponíveis.","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"49b935b88338f8622dfbca6c134110a464bfb43ae4fd181d4607ecea373e7cba","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"pt-BR","translated":"Sessão do Codex sem título","updated_at":"2026-07-09T10:01:43.718Z"} +{"cache_key":"4a63e497cd07da7a4b113cb820abe28029f60648126a0e00f470764e72914193","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"pt-BR","translated":"Adicionado","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"4aa7af80ba21a7756661fd6fe268c9cf9c020ca56c94638a31e72b196b104e32","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"pt-BR","translated":"Densidade de card compacta","updated_at":"2026-06-17T14:13:15.046Z"} -{"cache_key":"4b392aef59caf74639ca5546bb73c4971cd90c6e2bb7054d8ab936292c437c03","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"pt-BR","translated":"Fixar na parte inferior","updated_at":"2026-07-10T06:07:47.122Z"} -{"cache_key":"4bcd7c551fc193ac2d06e6bc55bcff3362c28d1c6779dd777f413f44fe311b1b","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"pt-BR","translated":"Mostrar arquivos da sessão","updated_at":"2026-07-10T06:07:47.122Z"} +{"cache_key":"4b94023c911b66ba72cf9943265ea99f70f83a361305e4bb5c7b50619d769343","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"pt-BR","translated":"Um servidor MCP chamado “{name}” já existe.","updated_at":"2026-07-10T02:23:12.679Z"} {"cache_key":"4c141982c159e6b1a839ec6b46ab77faea50e89fe14a0750d7e831529ac680f0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"pt-BR","translated":"Resultados da pesquisa","updated_at":"2026-06-16T14:13:25.058Z"} +{"cache_key":"4c9907aa7805ae50feffce0ee5c02aa6cc307b4ef9e0dd4370251530ac3de054","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"pt-BR","translated":"Conecte seu mundo","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"4cf3d018b1f4209358a6c53d3da47e0c444bfdc94cba3e21dbf105cad0c51d00","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.sessionSelect","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Pane session","text_hash":"0deb0759c3643f2659c0838326276513c119e7923672a118c4ed13c012c4b628","tgt_lang":"pt-BR","translated":"Sessão do painel","updated_at":"2026-07-06T07:23:13.378Z"} {"cache_key":"4d57a0fba3cfedfd987e9b2cc324617c02de402d44fafce0682c5e9d137df51b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"pt-BR","translated":"Nenhum arquivo correspondente.","updated_at":"2026-06-16T14:13:25.058Z"} +{"cache_key":"4df5f60fe0e66a70eb6f734f71fc033bca367947e13578228852bc751914dde0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"pt-BR","translated":"Provedores de modelo","updated_at":"2026-07-10T02:23:12.679Z"} +{"cache_key":"4e95d19dc61bc293ded13a6075eb47fce8ae446bf34a05d77ac9bf67e2aeedc2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"pt-BR","translated":"Configurações de MCP","updated_at":"2026-07-10T02:23:12.679Z"} {"cache_key":"4f015b7247310e7db6d80de0129d60608a832a0ca6aef5811070e485355ff03a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"pt-BR","translated":"Altere a visualização, a busca, a prioridade, o agente ou o filtro de arquivamento.","updated_at":"2026-06-17T14:13:19.801Z"} {"cache_key":"509311a7820bce56b08c1b5cd0d453c5990fd3e51a75e12a44b29fec538828a3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityLow","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Low","text_hash":"f793de205ead5ac302c4a1627829dea41f176b1068b993a32373fc869918374b","tgt_lang":"pt-BR","translated":"Baixa","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"50ae27c131148ff1450464935f8235d862e36fd807cf0987494af7955d30b58a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"pt-BR","translated":"Ativados","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"51bbd963ad611486b06c0752c6bb9cc30116028ffe990fa1e86774ea9818e8fc","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitHours","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{hours}-hour limit","text_hash":"c9091350c3c5c4e3c54dae43eec58cd35555724276a0acc388b98239a573f9df","tgt_lang":"pt-BR","translated":"Limite de {hours} horas","updated_at":"2026-07-09T11:48:56.309Z"} +{"cache_key":"51fd9fffd9f9ae94538e977fe3e94563b3df9b317f512a7c3bff7a6d86a2f1be","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"pt-BR","translated":"Somente navegação. Este gateway não permite alterações de plugins.","updated_at":"2026-07-10T02:23:19.549Z"} {"cache_key":"52a9feec0c469310241b70cb9eb738808938cc679594311dca976d59e9b03eef","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"pt-BR","translated":"Resumo: {summary}","updated_at":"2026-06-16T14:13:11.260Z"} {"cache_key":"538528394e7d3162c1612f25896eb6830e5124d73a5773188041612e25e80507","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"pt-BR","translated":"Conectado","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"5404d80ea119717cb979cc07112f14dd22d6135bef3b2116db406277f85f9f5d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"pt-BR","translated":"Ociosa","updated_at":"2026-07-09T10:01:43.718Z"} +{"cache_key":"561958f82b1012ee3c7c278ea5688708e7ee57fcd9a153633f313592b5e45682","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"pt-BR","translated":"Catálogo de plugins","updated_at":"2026-07-10T02:23:04.448Z"} {"cache_key":"56527849fb4f30cd42301746ad5168b5389e161274548ec099829b2e071ce346","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"pt-BR","translated":"{count} logs do worker","updated_at":"2026-05-30T15:38:08.357Z"} {"cache_key":"572dc7edba73a113d2ece65375cc3a60e337b11f6646ed24539e24424f8bbdfd","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"pt-BR","translated":"Agentes e ferramentas","updated_at":"2026-07-09T08:07:47.561Z"} {"cache_key":"589c51adf895652c2966137daf40b94fcaf36c0d03c6d04ba0f46d973e806a13","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"pt-BR","translated":"{count} tokens de entrada","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"58bd43433edec67c7e5bee58053bf2c5cb7eb59bce3bc3f44b0edae90afc2729","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"pt-BR","translated":"Fixar sessão","updated_at":"2026-07-02T14:30:01.256Z"} +{"cache_key":"58ed1bc53ef054ec36b45773df277392bc106c94403ca4e1bf21a3ace3abae79","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"pt-BR","translated":"Do ClawHub","updated_at":"2026-07-10T04:28:10.596Z"} +{"cache_key":"593d28b0587ef44c912fc65592003f15703878f467ccf4a31b9f5cc6edb4566a","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"pt-BR","translated":"Não foi possível copiar o hash do commit","updated_at":"2026-07-10T09:46:50.017Z"} +{"cache_key":"59db106b0b79916a1f3a1709db765ea160c4d121733c842e52ed6646489edfc3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"pt-BR","translated":"Trabalhando…","updated_at":"2026-07-10T04:28:10.596Z"} {"cache_key":"5a6b897f7bb8f1881075744d214e4ca670db2c38dffa36d7ff736412a3d35dac","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"pt-BR","translated":"Recolher espaço de trabalho da sessão","updated_at":"2026-06-16T14:13:17.394Z"} {"cache_key":"5c0075d0dae0d9637c557c9a2b95561d5b95514ccb63348119f369fb8b757d28","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"pt-BR","translated":"Sensibilidade","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"5d13edebfeac4cb80217c58a835dd3e0043fc536b08e561bfcbbd5173fab541f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"pt-BR","translated":"comprovação ausente","updated_at":"2026-06-17T14:13:19.801Z"} {"cache_key":"5d4d0ec11dba787328994a28e38659b27d4f6170947ba80a4cdf1aeca212d753","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"pt-BR","translated":"Concluído recentemente","updated_at":"2026-06-17T14:13:15.046Z"} +{"cache_key":"5dff798c57ae637ded6de6496d78d945bebe7b57cb8dd18b7c69c3709635bb08","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"pt-BR","translated":"Remover {name}","updated_at":"2026-07-10T02:23:15.779Z"} +{"cache_key":"5e642bfe33d65b59efb2fe2f7cac54bf97d91e983e195162f6dd2eea31bb4b3e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"pt-BR","translated":"Pacote","updated_at":"2026-07-10T04:28:10.596Z"} +{"cache_key":"5e9a1610367d0eb0a585ed17d82917572debfdef30598e532713ad3ab0882fa5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"pt-BR","translated":"Nenhum servidor MCP configurado ainda. Adicione um aqui ou escolha um conector em Discover.","updated_at":"2026-07-10T02:23:12.679Z"} {"cache_key":"5f60ba9632eb8dea22316d4e4e0011b147c4850075ce6c0f95cea53a623b9c4b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changed","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Changed","text_hash":"2a6141e43be0c2125e3b5d9f74b4ff1261a0b320ff927c83d4d9b1b65585bad7","tgt_lang":"pt-BR","translated":"Alterado","updated_at":"2026-06-16T14:13:25.058Z"} +{"cache_key":"5f94c2cd952837d8b9222a8316c5d7d4ae2d6e413ed05900e79849964b921055","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"pt-BR","translated":"Tentar novamente","updated_at":"2026-07-10T02:23:04.448Z"} {"cache_key":"608011fd1684ab21843f93b54e3dc7a3c7453771a8d491cd370a6b118579933f","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"pt-BR","translated":"Servidores MCP, autenticação, ferramentas e diagnósticos.","updated_at":"2026-05-31T05:36:33.676Z"} -{"cache_key":"60a14eefb7040dc18722e1621021249dec0b2424f4ca07d5e29a5e984164c87c","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"pt-BR","translated":"Silencioso","updated_at":"2026-07-10T04:49:53.408Z"} {"cache_key":"60aa5d8874a6e6059e4da1c67bdc1baf6f9ada7005dbf41946228f1541c27b87","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"pt-BR","translated":"O microfone selecionado está indisponível. Escolha outra entrada ou o padrão do sistema.","updated_at":"2026-07-06T17:56:11.051Z"} +{"cache_key":"611225e08577cf1f53ebc120d2327274521900b6905c9570b64cdb86640a051a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"pt-BR","translated":"{name} desativado. É necessário reiniciar o Gateway para aplicar a alteração.","updated_at":"2026-07-10T02:23:19.549Z"} {"cache_key":"612196f05682d1cd80927990a47588b0eea28b1ea71cc35874a8c70797451be7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"pt-BR","translated":"30s","updated_at":"2026-06-17T14:13:19.801Z"} {"cache_key":"61fb40177f7f6a4e7eef0b84057bf09a089e894303d50021a60cfcfc38002220","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"pt-BR","translated":"Restaurar","updated_at":"2026-07-05T21:00:34.411Z"} {"cache_key":"62addd8685de3b46c8bde90e8b563d4345332b5374ed0e4d0f4dcd6974a72184","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"pt-BR","translated":"Enviar solicitações de revisão para a sessão de conversa atual em vez da sessão de workshop da proposta.","updated_at":"2026-06-16T14:13:11.260Z"} {"cache_key":"6381f74ef0123c11e31e9968c4e41a91caf084ef44cdb1ac3f9f555a814e5a00","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"pt-BR","translated":"Ações","updated_at":"2026-07-05T21:00:34.411Z"} +{"cache_key":"638252d2a7ccf8244652977fe45d565f7286c3bcedf7155b7c2b163dacb26b39","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"pt-BR","translated":"Detalhes da build da Control UI","updated_at":"2026-07-10T09:46:50.017Z"} {"cache_key":"659b01d3919b07b4973be8e47f5f482c712369db0c50178c538f9c2e679278d7","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.open","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Open split view","text_hash":"51e50f7be73433216ae62f58fdbc586372f5a6063ee9978cec96793ef75fa554","tgt_lang":"pt-BR","translated":"Abrir visualização dividida","updated_at":"2026-07-06T07:23:13.378Z"} {"cache_key":"6647c5abd27a864d10572e7fbe6b451093ae21ed6eac7c56eda75ed693f9cc47","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"pt-BR","translated":"Nenhuma worktree gerenciada.","updated_at":"2026-07-05T21:00:34.411Z"} {"cache_key":"675a9c80fafd60ad91b2873a489ff28ad9c5a43c8898713e638dac1bc0b26851","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortCreated","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"pt-BR","translated":"Criado","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"67d032f8dd9ade60e9e0ac5dc332822dc17140e456a6e4c87e1de9b3ae926b80","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"pt-BR","translated":"Erro de sistema","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"681a65bf65fc3a38c13a12f8e68c0b6c0918e2c92aaf13990c6674376d8a7c60","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"pt-BR","translated":"Tarefas mais recentes concluídas, com falha e canceladas.","updated_at":"2026-07-09T21:53:07.275Z"} +{"cache_key":"689aab073a44bb94f6ceeae815984f12b521b1140cf347c0b4a0e1159a971317","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"pt-BR","translated":"Programação e infraestrutura","updated_at":"2026-07-10T05:21:57.578Z"} {"cache_key":"6a74017e37f35472190c4f57ee1fc5aaa5329be4ade6526b43a597993a5ab067","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"pt-BR","translated":"Cards sem um agente explícito.","updated_at":"2026-06-17T14:13:15.046Z"} {"cache_key":"6ab5ef14a8bb6844ec275afe3e70ee5979960a5cf83efb7b095ca349c897f3d6","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitWeekly","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Weekly · all models","text_hash":"144f0e5ca031e40c0cba8a53a9dcb4d9534c74edd976587231da2cd14b4944df","tgt_lang":"pt-BR","translated":"Semanal · todos os modelos","updated_at":"2026-07-09T11:48:56.309Z"} {"cache_key":"6ab671a864dd54de5b1c3d2b9a0f071ecbc114a47151e7f90f57b301d8a543e0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"pt-BR","translated":"bloqueado","updated_at":"2026-06-17T14:13:19.801Z"} +{"cache_key":"6ac93c3038115735b4a6679237fe3f44675473988b3e91b19a105e13968c416c","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"pt-BR","translated":"Versão","updated_at":"2026-07-10T09:46:50.017Z"} {"cache_key":"6bd3eef6e1978232e97b68dd337256f651d59a337d8f94586abd38d3f8fed72e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"pt-BR","translated":"{count}h","updated_at":"2026-06-17T14:13:19.801Z"} +{"cache_key":"6c9e17a5924e85c6e12f0186c168307ef4980189bc8ad41be3f8fd7e92da5c32","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"pt-BR","translated":"Ativar","updated_at":"2026-07-10T04:28:10.596Z"} {"cache_key":"6cd236863099df01cab0d3187fdc065b6d8ddd65eef4bf799b7c2ea3c83d9d39","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"pt-BR","translated":"{count} dias","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"6dbbe3649180dce471671a5bb3a0351a162a190345b6e0c5fefe094e20bf3f83","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"pt-BR","translated":"Nenhum arquivo nesta pasta.","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"6e61762ce31db633d77e2c2eab324a11a89b4bfdfdead4f8bbf7b5898d55efe4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"pt-BR","translated":"Visualização do workboard","updated_at":"2026-06-17T14:13:15.046Z"} @@ -151,45 +196,67 @@ {"cache_key":"702ea1241e859ad8a888c2de327fe57f5f0d679f19ee2c8f245f6ac402e50c5b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"pt-BR","translated":"Hoje","updated_at":"2026-07-05T14:39:34.196Z"} {"cache_key":"71a68f2f8fa85b6074691a84169abb6fa3e682b9677eba5c69635d0638daa187","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"pt-BR","translated":"Execute /pair qr novamente para gerar um novo código de configuração.","updated_at":"2026-07-01T10:31:00.782Z"} {"cache_key":"7205b9c0cbf5c14a98831775d414f281af7f1b2eb9fbbdcdc2a1025e388c1b31","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"pt-BR","translated":"{count} tokens de saída","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"720941e8c1dd3f90453e198d6d6dbb055e9b6df42e55ba2987a01725de893606","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"pt-BR","translated":"O ClawHub não tem resultados para “{query}”.","updated_at":"2026-07-10T02:23:04.448Z"} {"cache_key":"7247c1882cad266a33da0f6d10e2b04a959861305ab416298d243e51c6f3f4e8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"pt-BR","translated":"Arquivada","updated_at":"2026-07-09T10:01:43.718Z"} -{"cache_key":"74aafd6f3f26ee9a28bbd426121fc80f1607878e61a5bdac5fab50d480d555bf","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"pt-BR","translated":"{name} · visitado pela primeira vez em {date}","updated_at":"2026-07-10T04:20:25.022Z"} +{"cache_key":"73d2b1b631c790396e12f9e9e02c17dbd69d586c668be75a139a6328baf44f06","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"pt-BR","translated":"Criado","updated_at":"2026-07-10T09:46:50.017Z"} +{"cache_key":"74f51faafa2103f8e8e42c66621075354786f8577c78c24784776ff3d55f9877","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"pt-BR","translated":"Nomes de servidor usam letras, números, pontos, hifens ou sublinhados.","updated_at":"2026-07-10T02:23:12.679Z"} {"cache_key":"74fcd9889d4c41ccf8ef32728b424f1c0b71c6848579bb9e6cdab0bfb8a1c358","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"pt-BR","translated":"Resumo do workspace da sessão","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"750a9377c380348c88a5facec2d5229e09860286605a8f67be549f6c5f9143d4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"pt-BR","translated":"Modelo","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"752de2364dd74aa322d65999e1c50f09f62a8225b63a9696969c8362e629bfb6","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"pt-BR","translated":"Abrir na barra lateral","updated_at":"2026-07-09T11:02:40.000Z"} +{"cache_key":"756f77de48c32f5c51bd65a17e0e4ecaa8bf690e06b8c05e80a4c7539b9ad511","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"pt-BR","translated":"Pesquisar plugins","updated_at":"2026-07-10T02:23:04.448Z"} +{"cache_key":"76bf1a11a705395b72261582975dcd1b8a616fb03a0071d88b70b77c0b70d3b2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"pt-BR","translated":"Nenhum plugin instalado corresponde","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"77c5918867d611b7c15e4cee328340eb9be4902695bddcaf58f63ae632883aad","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.actions","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Workspace file actions","text_hash":"461817d921bc7672e95fe4a3b23f4ac2a4a20e35b3d6eef3f02e8f5ba4201050","tgt_lang":"pt-BR","translated":"Ações de arquivos do workspace","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"791282826039ef4afd4ea2b7282eb45b466139b0387e16bc08f4fae0b4dc4ca0","model":"gpt-5.5","provider":"openai","segment_id":"languages.hi","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"हिन्दी (Hindi)","text_hash":"fab2abfce45382f3031c59477017700a8cb5dfaf8d15379dc24304809b97c7d5","tgt_lang":"pt-BR","translated":"हिन्दी (híndi)","updated_at":"2026-06-26T21:43:22.390Z"} {"cache_key":"799a398aba7661758e2f79394e89c5e68b9a277e680ad0c76d14ce486c5c1f38","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"pt-BR","translated":"Ações de link","updated_at":"2026-07-09T11:02:40.000Z"} {"cache_key":"7a36b55390955775cbe56f1e822100787337feba448d4eb94c87fb403a9fa655","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"pt-BR","translated":"Usar conversa atual para solicitações de revisão","updated_at":"2026-06-16T14:13:11.260Z"} +{"cache_key":"7a76cd9d3309141c3aa2a84a2d8ef717a99924a920b419c585c73442cd82f706","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"pt-BR","translated":"Indisponível","updated_at":"2026-07-10T02:23:19.549Z"} {"cache_key":"7ae00e46fd77f41d7bfdfd1025f499aa9b26e7dcb946846f1052602284786190","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.runDuration","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Run duration","text_hash":"b5e9698b25697ec71f0947df28e6b08438033fe73b1b87ac7362766d77b45b97","tgt_lang":"pt-BR","translated":"Duração da execução","updated_at":"2026-07-09T10:13:14.097Z"} {"cache_key":"7d064865e923b7dbc2f3e296e6ab3c5bfe569890aa63dce5dadb8232c49e2ee5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewBlocked","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Blocked","text_hash":"18f2a0947f9d6523991b29b450307f22773f57d65f7efb98d48a167df04d6b1d","tgt_lang":"pt-BR","translated":"Bloqueado","updated_at":"2026-06-17T14:13:15.046Z"} {"cache_key":"7d7b62dd2bcc8a8cbec3a15c5b6daf795929b82bb88eed5d2df917ab2a87863e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"pt-BR","translated":"Renomear grupo…","updated_at":"2026-07-06T23:40:46.278Z"} +{"cache_key":"7e89d9e0a39260cb42d29a29821274faff1efb0c734814288398fa6fa674ec0b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"pt-BR","translated":"Conecte servidores Model Context Protocol para fornecer ferramentas extras ao seu agente. As alterações se aplicam a novas sessões do agente.","updated_at":"2026-07-10T02:23:12.679Z"} +{"cache_key":"7f0ef5ebcf02d04b46c79a4f9da80c0dc47a0c4fc3fa8731beb15a9f75ee6d8e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"pt-BR","translated":"O servidor MCP “{name}” não foi encontrado na configuração.","updated_at":"2026-07-10T02:23:12.679Z"} {"cache_key":"7fb0a0c4f9f4504ac791452533287dc30c984bc75a83a02bb5b6d418656f4ebd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"pt-BR","translated":"Cards atribuídos explicitamente ao agente padrão configurado.","updated_at":"2026-06-17T14:13:15.046Z"} {"cache_key":"7fda2f6109c75c2891fedcf97e66008fa3852062f1d6ce74342a0f0ac50863e8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"pt-BR","translated":"Mostrar somente sessões arquivadas.","updated_at":"2026-07-02T14:30:01.256Z"} +{"cache_key":"7febfdd18d7422d503f389d1d9ae351bb22a3fa7b4bb35c94a83f851fd4375b5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"pt-BR","translated":"Servidor MCP {name} removido.","updated_at":"2026-07-10T02:23:12.679Z"} {"cache_key":"82a5a19940637c87f1abd6643bca76ce6d6cc66b4a6e9313544265a8bf7cb3f2","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"pt-BR","translated":"online","updated_at":"2026-07-09T10:01:43.718Z"} +{"cache_key":"83bf7bb0b10bb9b223f1ee23780b9a7299cd652bcd437dacdf6483ccba660ac0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"pt-BR","translated":"{name} instalado. É necessário reiniciar o Gateway para aplicar a alteração.","updated_at":"2026-07-10T02:23:19.549Z"} {"cache_key":"853cb0f9600dc2cd1ae17153422f5de657e10a14f7e6f2618adb44926a238c38","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"pt-BR","translated":"Limpar agora","updated_at":"2026-07-05T21:00:34.411Z"} {"cache_key":"85cb4e6c4de65570dd4475c45d5dba088ff2f3357fbff1e733d3ab8faea26343","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitDown","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Split down","text_hash":"8730b89df7caaf5b5090f9b7365a0a03e0a13d9682dc6418f556b8a676d9e98f","tgt_lang":"pt-BR","translated":"Dividir para baixo","updated_at":"2026-07-06T07:23:13.378Z"} +{"cache_key":"8616b6c8ae5946da347addf77bad3cedbd7d24c15ee1e21b6d09494743f97df2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"pt-BR","translated":"{name} instalado.","updated_at":"2026-07-10T02:23:19.549Z"} {"cache_key":"8626b07aa9a791dc6a5438a7bad1b0b86ce826ee1f24ea14c96e5d3daad755f7","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"pt-BR","translated":"Microfone {number}","updated_at":"2026-07-06T17:56:11.051Z"} {"cache_key":"869adaaf933f58ebce0de74cca77566e54c11d15467234708b2838d31d125536","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"pt-BR","translated":"Pesquisar títulos de sessões","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"86fa07b1257cbd171d5a8324393b9a00a3ed0e5676d6e48331ef01a07cae7777","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.budgetValue","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{used} of {limit}","text_hash":"e191398f92416f35cb6279f7206d2b67cdee04ce46932a1ece17c8c18ca3636e","tgt_lang":"pt-BR","translated":"{used} de {limit}","updated_at":"2026-07-09T11:48:56.309Z"} +{"cache_key":"88a3675112343e3c481cccf064192dfade29c470aae49cd1b06da235a24c27fb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"pt-BR","translated":"Servidores MCP","updated_at":"2026-07-10T02:23:12.679Z"} +{"cache_key":"88a3c5c8a179d11f1962b7c83ff9687253a395ebebd9099b5f3a5764055f8f84","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"pt-BR","translated":"ClawHub","updated_at":"2026-07-10T02:23:04.448Z"} +{"cache_key":"88cd609d416145a46f95334d7f41b68137af4861389dc9ff50a111e73de250fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"pt-BR","translated":"Requer atenção","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"8922f38063d15d1416eff0fcb59469c7166aee8fd3af92db2d14d752d91ecb0c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.restoreSession","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Restore session","text_hash":"35e4dc9befd3b3a29b50938839af0efb41b08051988dde53e1c1e73d1c2a039f","tgt_lang":"pt-BR","translated":"Restaurar sessão","updated_at":"2026-07-02T14:30:01.256Z"} {"cache_key":"89e202d7c5e0861b81ecba36f93dd58e1302098e882651cf808dad1fdf94ee20","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"pt-BR","translated":"Ordenar por","updated_at":"2026-07-06T23:40:46.278Z"} +{"cache_key":"89f9cebef07239cf5311e2859bb054d1a91e948dfadacdd6e4783a1208b16dd9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"pt-BR","translated":"Servidores MCP","updated_at":"2026-07-10T02:23:12.679Z"} {"cache_key":"8a4c1ba0dde3db6bc2fe7eec30bedcd565b85ccd6326c09ac27446d62d1c8d64","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"pt-BR","translated":"Raiz","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"8a5394bf53b38de5b08d8c7fb25c98d145b9f8808056b2b3e181824fb52f5888","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"pt-BR","translated":"Desconhecido","updated_at":"2026-06-16T14:13:17.394Z"} {"cache_key":"8b46b3a9420a33cc7c0da76ddcfba982382f4aea1e048f6ed070572051f2a5ae","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"pt-BR","translated":"Restaurável","updated_at":"2026-07-05T21:00:34.411Z"} {"cache_key":"8b913e04cb18c20446ee3e359176c63f12f6e7a43aa80223ae7b217a04bd9486","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"pt-BR","translated":"Padrão do sistema","updated_at":"2026-07-06T17:33:35.115Z"} {"cache_key":"8ccf14b416212eb4ea46f6ffe079d7e843ba58066274fe7bc0cc80799408e026","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.openUsage","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Open usage dashboard","text_hash":"bae5e40b055c195a780a0dc06042d60353da51ab582610096c5cb0d269484c00","tgt_lang":"pt-BR","translated":"Abrir painel de uso","updated_at":"2026-07-09T11:48:56.309Z"} {"cache_key":"8d75c4bcf08133241fdbdd59d14dc525c86bd22b603fb8ec3a5a21368c887e5a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"pt-BR","translated":"Ativas","updated_at":"2026-07-09T10:01:43.718Z"} +{"cache_key":"8d8b4d75e69ce0f5605becfd23edfa3fbb4a67faeae5195d47918e9fa11ebad4","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"pt-BR","translated":"A Control UI e o Gateway conectado criam a identidade.","updated_at":"2026-07-10T09:46:50.017Z"} {"cache_key":"8dba3e3b066e7ea0004b8f2311e9913c0d068575ac584e3f5b52d5763a4cbcaa","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"pt-BR","translated":"Data","updated_at":"2026-07-05T14:39:34.196Z"} {"cache_key":"8dc397b6b255a6c5f4942112a5f5062eb723d8408b8b13405d49354d2d660afe","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"pt-BR","translated":"Sessão","updated_at":"2026-06-16T14:13:17.394Z"} {"cache_key":"8e1c2d333d02c273b744521138e75609eab4ec76e20f26213d6d272263500736","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"pt-BR","translated":"Agrupar por","updated_at":"2026-07-05T14:39:34.196Z"} {"cache_key":"8ecc8913371195e3f3ad39da423cd813f88a57ed99f6377ceee62566171d1257","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"pt-BR","translated":"Русский (russo)","updated_at":"2026-06-26T21:43:22.390Z"} {"cache_key":"8fe25f322b4d8ceb82728919e7f9931ca8245aab2e515b118bad138ab2e4337c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"pt-BR","translated":"Comentários","updated_at":"2026-07-01T01:06:19.014Z"} +{"cache_key":"9011e222d6e143fc6e51c814cb1022d4c4291e9dc10996c0dac699cacb522a98","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"pt-BR","translated":"Copiando hash do commit","updated_at":"2026-07-10T09:46:50.017Z"} {"cache_key":"90ccb537cd248496ee547476b10bec0e580cdaf3cf1ddb4726e64f95e14cd072","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"pt-BR","translated":"pronto não atribuído","updated_at":"2026-06-17T14:13:19.801Z"} {"cache_key":"911b56a2b8e2d77c6e1557404f7bb7c2bfd2f8a379f4bce680596df600808d83","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"pt-BR","translated":"Frota do Codex","updated_at":"2026-07-09T10:01:43.718Z"} +{"cache_key":"9159629646197b618b80a757832f0393713975bbfa8c224cfd5fc29417eea8bd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"pt-BR","translated":"Fechar","updated_at":"2026-07-10T04:28:10.596Z"} {"cache_key":"91a9cfbbe6b8d1cab7ee71cf5a3479fbc95226eee06490a8e1ccf1c52050256f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"pt-BR","translated":"Obsoleto","updated_at":"2026-06-17T14:13:15.046Z"} +{"cache_key":"91e59d8fec13601864177af374ae0cb8bd66943fcc70549ecf2a97467755ff4b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"pt-BR","translated":"Instalando…","updated_at":"2026-07-10T02:23:19.549Z"} +{"cache_key":"91e5d4a9c55f6f05b7da09778878fcd427812d16872e93026162cc777860d05d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"pt-BR","translated":"Pesquisar no ClawHub","updated_at":"2026-07-10T02:23:04.448Z"} +{"cache_key":"92ae9089ccfa86632172337b7b1ad54e878a9521fc8ab6e6e90b4195353f1552","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"pt-BR","translated":"Nenhum plugin opcional instalado","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"936c9592ff4ec8fa573cf76fa03fa84c01e98c03e244d2926f69b4d1aa735270","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitFiveHour","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"5-hour limit","text_hash":"26d04fad786b1e3a08fd957ec893b0457b72a2926da0ee63847aea9037951d24","tgt_lang":"pt-BR","translated":"Limite de 5 horas","updated_at":"2026-07-09T11:48:56.309Z"} {"cache_key":"937af4172e5b08ee8da5d350ac2b59f3eeeeb4706dd58ddedc959a315b71bb2b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"pt-BR","translated":"Filtro de arquivamento de sessões","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"93b768ff784841bdfdc538358fa42ed51e1710f59942037a3436d5cd70638bd8","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"pt-BR","translated":"As entradas de microfone ficam indisponíveis enquanto esta página está inativa.","updated_at":"2026-07-06T17:56:11.051Z"} +{"cache_key":"93f6a9a972832196fb09fcf2ef07bf954871fb7de98e6a68c97f9321532c9cd0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"pt-BR","translated":"Servidor MCP {name} adicionado.","updated_at":"2026-07-10T02:23:12.679Z"} +{"cache_key":"945022edeba5df5733f0e466b622aef34746cbac78bcd0d59bad1383990c55dd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"pt-BR","translated":"Ver detalhes","updated_at":"2026-06-16T14:13:11.260Z"} {"cache_key":"945fb4725e382dbce447cf68c998e902cd347429a820c41057cf46d5c3707fa6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"pt-BR","translated":"Logs do worker","updated_at":"2026-06-16T14:13:11.260Z"} {"cache_key":"9465b725c1a5ba23766847fd6c2eef03b472c733ae2fbc2cb3aec7c3d80cddb7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"pt-BR","translated":"As configurações avançadas exigem acesso de administrador","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"948a99f0aac5f1186110715ff864cc93a4ec23a1612907d7a3f09cca0cd94652","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"pt-BR","translated":"Armazenada","updated_at":"2026-07-09T10:01:43.718Z"} @@ -197,11 +264,16 @@ {"cache_key":"9af413b20a33b33d349367ad12d3eaf62693bd323556bd5ee42afa1e4f704a8d","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"pt-BR","translated":"Visitas da lagosta","updated_at":"2026-07-09T20:51:23.604Z"} {"cache_key":"9b3893e474ebb32250a73599ba7cfbaef8276a95cc0e705cc7faf2b2f91e8ea3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"pt-BR","translated":"{count} exibido(s)","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"9b3ad76185ddae5fcd8f5079b83c9b1a01490fa5c18286071524958ae525b969","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"pt-BR","translated":"Expandir espaço de trabalho da sessão","updated_at":"2026-06-16T14:13:17.394Z"} +{"cache_key":"9b84cc1d36a52b2d6c639f5596f279cb943bc70410e75f64cceed008ea477279","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"pt-BR","translated":"Desativar {name}","updated_at":"2026-07-10T02:23:19.549Z"} {"cache_key":"9b8eb5148dc0052b50054f8e924d3d80377d5fbdb65113d644bc3efd6ce64da8","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.closePane","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Close pane","text_hash":"7fa0f9613d919e167b0f9aa03c22809d446af293eb6c3bac6866bae66d2656c9","tgt_lang":"pt-BR","translated":"Fechar painel","updated_at":"2026-07-06T07:23:13.378Z"} {"cache_key":"9bf0862fb7b9409d9fd7e49477c5ade19af6b7368058d7811d6b28c791bfc57a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"pt-BR","translated":"Abrir chat","updated_at":"2026-07-09T08:27:12.271Z"} {"cache_key":"9cf1b98e953b723af8c2f112568ab1f099a2221e5dc780ff12b0c3b7dfb70bd4","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"pt-BR","translated":"Agendador","updated_at":"2026-07-09T21:53:07.275Z"} {"cache_key":"9d8838a7bceff9fee18509291eb0847b4a17fef0f73b7a47869655218ec05aba","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"pt-BR","translated":"Adicionar nota","updated_at":"2026-06-16T14:13:17.394Z"} +{"cache_key":"9e67eceab8e75249a59ebb4ca29025bd92b7fee3c0290e1f1b66e94a97cf4eb0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"pt-BR","translated":"Adicionar servidor","updated_at":"2026-07-10T02:23:12.679Z"} +{"cache_key":"a1c2836ce5efc0e0f0001bc49a91e1e2528c47c8360be6014e35ee2352b32c59","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"pt-BR","translated":"Conecte-se para procurar plugins instalados e recomendados.","updated_at":"2026-07-10T02:23:15.779Z"} {"cache_key":"a1cb01b3761d31fd13681276eca4d60dc8faae6502644c7ac2944e231234af6f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"pt-BR","translated":"CWD","updated_at":"2026-06-16T14:13:27.459Z"} +{"cache_key":"a29f4c4d4bd9919b6f9f65abfe31cf7d934c2fac70ac8af056cef15d6fe70631","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"pt-BR","translated":"Plugins","updated_at":"2026-07-10T02:23:19.549Z"} +{"cache_key":"a339f12c43881aa7a20785baf7c5ee3e088cdd984c9bedbda6f052fdd60dc369","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"pt-BR","translated":"A configuração não está disponível; atualize e tente novamente.","updated_at":"2026-07-10T02:23:15.779Z"} {"cache_key":"a3ed8aac7b293199f786dec9533b299d5197f9282dd722fda4a63279c2309462","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"pt-BR","translated":"Orquestração","updated_at":"2026-05-30T15:38:08.357Z"} {"cache_key":"a42348a92c7f2b355caffb2211845c06851100e590b3b519aa6329e19fcbf6f5","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"pt-BR","translated":"worker {state}","updated_at":"2026-05-30T15:38:08.357Z"} {"cache_key":"a4cbc63a239c27514d8ccf31297b0dbc656ce8d77541b9ffd37a3fcf0fad3881","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"pt-BR","translated":"Carregando microfones…","updated_at":"2026-07-06T17:33:35.115Z"} @@ -209,16 +281,22 @@ {"cache_key":"a52784003a2b897319f0a6d6fc3279d9597c8abc88a09136a4f5cabf5f3aec76","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"pt-BR","translated":"Protocolo do worker","updated_at":"2026-06-16T14:13:11.260Z"} {"cache_key":"a5526bd762d9e76408aada93436cd59bdedfffb1649f0309150781a235fd2a13","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"pt-BR","translated":"Gateway","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"a55abe372fcb1d57141e4a250ec9bc556e6150dbcaddab28b5852d2dc401caf7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"pt-BR","translated":"Desconhecido","updated_at":"2026-06-16T14:13:17.394Z"} +{"cache_key":"a93d44034ba8e373442153a361c8d334e5b50461bb4f27a9e82dd834065a080f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"pt-BR","translated":"Carregando plugins…","updated_at":"2026-07-10T02:23:04.448Z"} +{"cache_key":"a9506496013b04ed8d419afe8d2bed6b7d2cc96253f07e5f0ff92d2c869cdd94","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"pt-BR","translated":"Cancelar","updated_at":"2026-07-10T02:23:15.779Z"} {"cache_key":"aa337e84020475d2edd913e8d7097e01a598df578d4db6d2fb743affc46764d7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"pt-BR","translated":"Nenhuma sessão neste host corresponde à sua busca.","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"aa44e722e4738fe52ff96a5b1a0c8fb63aa5e14da0df47f5b42f25f0731a2079","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"pt-BR","translated":"{percent}% do contexto usado ({used} / {context} tokens)","updated_at":"2026-07-09T07:06:13.539Z"} {"cache_key":"aa62dd0e02dfbec991e592f27a72451c4d48f6be27bb81233125268b1d4ded23","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"pt-BR","translated":"Falha ao criar snapshot: {error}\n\nExcluir sem um snapshot?","updated_at":"2026-07-05T21:00:34.411Z"} {"cache_key":"aae3e4c2771dadd4bb5ed4c32f94e44a13ec9e97b00f864b54bcb255a760cadc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"pt-BR","translated":"{count} lido(s)","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"aae437b6a949776a04a7903a6847200de96d1e4e52a4b7ad02df6f11b068f82f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"pt-BR","translated":"heartbeat {age}","updated_at":"2026-06-17T14:13:19.801Z"} {"cache_key":"ab5cdcb2290b3fa0305107f2aa4b8b46dba91270e042b2df0ca869f6d5a387d3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"pt-BR","translated":"tentativas com falha","updated_at":"2026-06-17T14:13:19.801Z"} +{"cache_key":"ab775364f6d719410eb6cdfd196a7410a2673482bfb87ee7d4b1d2d7dad0453b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"pt-BR","translated":"{name} adicionado. Novas sessões de agente podem usá-lo imediatamente.","updated_at":"2026-07-10T05:21:57.578Z"} {"cache_key":"abd11f2c4e4dd7656dffc572cb915a9a60866de169bdee86b1827eea173845c6","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.resets","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Resets {time}","text_hash":"5a0f8c1b2755ee505e02e19fadc7377ad48df63cc7d3399c20228fe3edc37cb1","tgt_lang":"pt-BR","translated":"Redefine em {time}","updated_at":"2026-07-09T11:48:56.309Z"} {"cache_key":"acc6c8c3fc33923523ab66513541bd3b1a4a5c9fb44ba33b88da97be210b7e3a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"pt-BR","translated":"Ontem","updated_at":"2026-07-05T14:39:34.196Z"} {"cache_key":"ad8ed5de23d762dd82e7cc56247cf1e9fe3183b020433004d2c35f9472fdb6e9","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"pt-BR","translated":"MCP","updated_at":"2026-05-31T05:36:33.676Z"} -{"cache_key":"aff6b76bb73147412bd09e23085e2c9c24b70d25ec8c8fa33e13b3072c0878cf","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"pt-BR","translated":"Lobsterdex","updated_at":"2026-07-09T23:55:45.637Z"} +{"cache_key":"ad970c32f3334d2c7a1ee1930e80b7e7c823bead58f62160943e348be60fb61d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"pt-BR","translated":"Ativar {name}","updated_at":"2026-07-10T02:23:19.549Z"} +{"cache_key":"adccf8e75d2afebdbbf9ab04914746472a9ce8b7307e62c5813255966fba65dd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"pt-BR","translated":"{enabled} habilitados, {disabled} desabilitados, {issues} com problemas","updated_at":"2026-07-10T06:08:30.994Z"} +{"cache_key":"b072196203519ea3781fb8da08ff81c972541b7593b5a85ab30ca1a9c52dd8ab","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"pt-BR","translated":"{name} removido. É necessário reiniciar o Gateway para aplicar a alteração.","updated_at":"2026-07-10T02:23:15.779Z"} +{"cache_key":"b113ccce4bf60647217ca24bbed763f163d39c7cc79fcc1b3c906ec5209c3361","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"pt-BR","translated":"Pesquisar no ClawHub","updated_at":"2026-07-10T02:23:04.448Z"} {"cache_key":"b42f47158cd5593f085bf82670134b024167a2ab5bc9c49a62f4cea6e83c034c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"pt-BR","translated":"Carregando sessões do Codex…","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"b4fecfbcc0f636a846f75cf7dc84cf779b41ddefd07a25d845428646f72a7503","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"pt-BR","translated":"Excluir grupo \"{group}\"? Suas sessões serão movidas para Sem grupo.","updated_at":"2026-07-06T23:40:46.278Z"} {"cache_key":"b50ad7d9145a6a7208035e4bb4b0b996f87630c1467991d90fdbb84fddf0d0f8","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"pt-BR","translated":"Revise, refine e aplique propostas antes que elas se tornem skills ativas.","updated_at":"2026-05-31T21:48:16.734Z"} @@ -227,27 +305,51 @@ {"cache_key":"b65bdce4e71ce28444509ba524111356b2a35f4f2fe7970390fc4a908355117b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"pt-BR","translated":"Arquivos do projeto","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"b7e0d3670497eadf0f79edd7a87081f6e5fe131ee063832911ddf941eb089681","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"pt-BR","translated":"obsoleto","updated_at":"2026-06-17T14:13:19.801Z"} {"cache_key":"b9ac968e00d3b327d9d0a6638a6a9484990139c5b17a98c10947e4225f85812d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"pt-BR","translated":"sessões","updated_at":"2026-07-09T10:01:43.718Z"} +{"cache_key":"ba3aa007eb71d2c969323672a65168c62f9563e69e3aad76299476bc26a34ed9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"pt-BR","translated":"{name} desativado.","updated_at":"2026-07-10T02:23:19.549Z"} +{"cache_key":"bad8cc4c75d5d1aa5d1ef991561e7f1fadaf73f4d1794e94083c87b45777d315","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"pt-BR","translated":"Conecte-se ao gateway para alterar plugins.","updated_at":"2026-07-10T02:23:19.549Z"} +{"cache_key":"baee1d49e957f43178fa38e4861da5001a1d6c5d1f06b5706321affee7ad7740","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"pt-BR","translated":"Plugins oficiais","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"bb76a41dd82e6591923b3b8957fc6211f7743b55cb5ccf51f9da9aa908680fc9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"pt-BR","translated":"Exibindo os primeiros arquivos correspondentes. Refine a pesquisa para restringir os resultados.","updated_at":"2026-06-16T14:13:25.058Z"} +{"cache_key":"bbd4ef75e067b0b0d4168ab5b0b75653cbdb63c5347415de58b3ad27eacf3272","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"pt-BR","translated":"Control UI","updated_at":"2026-07-10T09:46:50.017Z"} +{"cache_key":"bc83258a3aace3bb55dbabffe31956df295423fdd114c01541fd1611f7575204","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"pt-BR","translated":"Commit","updated_at":"2026-07-10T09:46:50.017Z"} {"cache_key":"bdd521107afdb42db676e8e0da464a5ae9712339b762fc357cefb8f1c2e53028","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"pt-BR","translated":"Renomear sessão","updated_at":"2026-07-02T14:30:01.256Z"} {"cache_key":"be9470e1af78556298cff727b8c6d819efa5ae7addfce81bc309e5b9eed5b955","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"pt-BR","translated":"Principais modelos","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"bf3463a93c015fd59ce9b0d57dc58de7c5cc3295df9e67877bb09eada14d8f6e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"pt-BR","translated":"Em destaque","updated_at":"2026-07-10T02:23:04.448Z"} {"cache_key":"bf5d0d78c050f9e4e5347bf603a69da4e5799d7204beb7a36c67fb884b7aa61c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"pt-BR","translated":"QR de pareamento expirado","updated_at":"2026-07-01T10:31:00.782Z"} +{"cache_key":"bfc17542aa6206874e1f9f96db6d43a29a224ed6703166251bc93b2ffce0d5c7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"pt-BR","translated":"Instalados","updated_at":"2026-07-10T02:23:04.448Z"} +{"cache_key":"c042d240a2ac21f476574961fcbdf337c83bff62108a81fb31607a812f35d2bc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"pt-BR","translated":"Insira uma URL http(s) ou uma linha de comando.","updated_at":"2026-07-10T02:23:12.679Z"} +{"cache_key":"c11a6aaf5dda8c43a989cb98c37f9c5ff8cfb83394bd8a71b72ef464469c3098","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"pt-BR","translated":"{name} adicionado. Autentique com “{command}” e reinicie o gateway.","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"c185def9ac253d6c864073cd7d693adadd004b902bbad271d7c20b9c4a23882d","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"pt-BR","translated":"Abrir no navegador padrão","updated_at":"2026-07-09T11:02:40.000Z"} +{"cache_key":"c3aacefba50b93eef5a9734db66e804208a1b9b4f72159999d97d58637c2ed28","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"pt-BR","translated":"Remover","updated_at":"2026-07-10T02:23:15.779Z"} {"cache_key":"c434861697e533c8617971120993836b4c551e540f42b36a6a8d0d5658a77009","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"pt-BR","translated":"Agente padrão","updated_at":"2026-06-17T14:13:15.046Z"} +{"cache_key":"c46955d86e4421230fc9ed27238486e8aa5bf12e17ebf6eb3614acdde3ab638f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"pt-BR","translated":"ID do plugin","updated_at":"2026-07-10T04:28:10.596Z"} {"cache_key":"c47a8164a46a7bcf752fb340b07a59ed6f0b18f404897a04a74ee0bb69714236","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"pt-BR","translated":"Densidade de card confortável","updated_at":"2026-06-17T14:13:15.046Z"} +{"cache_key":"c4895b2cf366c79ebfcadfdcc7691e8838b06827e90fe7f4f2db60a4765d6747","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"pt-BR","translated":"Canais","updated_at":"2026-07-10T02:23:12.679Z"} {"cache_key":"c57769d62c377e80d924d00cd4c5cc639615dc3b2ecb28082be44fc48d3e8e44","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"pt-BR","translated":"Erro da ferramenta","updated_at":"2026-05-31T06:43:47.543Z"} +{"cache_key":"c5808666f09f4707003874d8539031916575ca8eab10934185bb12b6a44b6a71","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"pt-BR","translated":"Nada para descobrir corresponde","updated_at":"2026-07-10T02:23:04.448Z"} {"cache_key":"c66b1c5c0333eafeb99ecf3eaf5fcf34445e057499401ea86664c6c7757438fa","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"pt-BR","translated":"Resumo das sessões do Codex","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"c6883f9a362a9500c3a805e89675c9ea091bc2f76a35c9a456149e90376c1086","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"pt-BR","translated":"Restaure esta sessão para enviar mensagens.","updated_at":"2026-07-02T14:30:01.256Z"} {"cache_key":"c68b4639d8b8a0732c9be1f5308f3a23aaadd1f0f2182b065c92692c053f0ced","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"pt-BR","translated":"Ausente","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"c7e16061fc21b999ee6e20022f5930ab50b5de2c51b0bf19be873f9c973f632a","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"pt-BR","translated":"Não foi possível acessar as entradas de microfone.","updated_at":"2026-07-06T17:56:11.051Z"} +{"cache_key":"c813ac13cc8c66b235cfcfaf3f874426cde5f8c6adadd0fc20f135b60ae73750","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"pt-BR","translated":"Fonte verificada","updated_at":"2026-07-10T02:23:15.779Z"} +{"cache_key":"ca0edfb016e16a10966012de12b3b0ec3fafc591f9b8a8d95538026322ac4617","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"pt-BR","translated":"Preparando pesquisa…","updated_at":"2026-07-10T02:23:04.448Z"} +{"cache_key":"ca576ff806a560328ab2144ce5ca8f9160ffa66d7c0e15eaccfa3f6a10dabcf3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"pt-BR","translated":"Ferramentas","updated_at":"2026-07-10T02:23:12.679Z"} +{"cache_key":"cb413fdb35488044fb899f04f160024fa64671cf879f542820e70904f6250b2c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"pt-BR","translated":"Removendo…","updated_at":"2026-07-10T02:23:15.779Z"} {"cache_key":"cb42f01cf764e3219d75b7f7b3d734df26c5c23d5ca6b67296cc19d678208874","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"pt-BR","translated":"Offline","updated_at":"2026-07-09T10:01:43.718Z"} -{"cache_key":"cbd07cf5a35a839a79040a3d9a8b9112c79934fc99c48318f9265053122fd4eb","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"pt-BR","translated":"Sons de lagosta","updated_at":"2026-07-10T04:49:53.408Z"} +{"cache_key":"cc85f3031cf79e2ad38d067b87d45fe8009250b798e8b8a408c1edbaa1b9f2de","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"pt-BR","translated":"Atualizar","updated_at":"2026-07-09T10:01:43.718Z"} +{"cache_key":"cde83008d5d2bc235d61df2ca68fdaa1ee06e97f0f3d7e823cf66d4100efb5fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"pt-BR","translated":"Plugin de pacote","updated_at":"2026-07-10T02:23:19.548Z"} +{"cache_key":"cfdc21b92238a1bf2a75c297199a36763a94e808ea6c52e0104b5a7e441f3c20","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"pt-BR","translated":"Trabalho e produtividade","updated_at":"2026-07-10T05:21:57.578Z"} +{"cache_key":"d1d2151842f327f21e78982619196bf9be0d65f47f77b73bb31632e995f0aa0f","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"pt-BR","translated":"Identidade incorporada quando este artefato do navegador foi criado.","updated_at":"2026-07-10T09:46:50.017Z"} {"cache_key":"d23a8d2922fc9bd7f120a8394f1b53bfa74808430b8a94127987450d6a574592","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"pt-BR","translated":"Arquivar sessão","updated_at":"2026-07-02T14:30:01.256Z"} {"cache_key":"d2938a4d955ba9e9de4328296f5203fd6bf6e83656539a2463236aefb575c857","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.estimatedCost","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Est. cost","text_hash":"3199f14286736527bfc6ad9165629415a5aa087517acd2c0e9b1ae8bb5d26766","tgt_lang":"pt-BR","translated":"Custo estimado","updated_at":"2026-07-05T16:00:07.193Z"} {"cache_key":"d3ccd1c486f3eb3783240a09489026c7d8b68dc49b8ef7339c681227f52bc85f","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"pt-BR","translated":"Trabalhos em segundo plano na fila e em execução.","updated_at":"2026-07-09T21:53:07.275Z"} +{"cache_key":"d3d9a7d83563364eea106e07c6cc07aad7c0d2ff1495d7509dca8bccf487d258","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"pt-BR","translated":"Indisponível","updated_at":"2026-07-10T02:23:19.549Z"} +{"cache_key":"d44af1694dcdb53a5540b6f5dcc8e0bca3ce4c4f0e2e4b443496e0407180d3ef","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"pt-BR","translated":"Outros","updated_at":"2026-07-10T02:23:12.679Z"} {"cache_key":"d50ec3d6cdda5e85f94e7ffb61547f3f5696d9b39d9612ffd7221d90ab11d005","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"pt-BR","translated":"Nenhuma nota do operador ainda.","updated_at":"2026-06-16T14:13:17.394Z"} {"cache_key":"d53ff5244d91ad975a6a9456c61a132022d022391883f9703524f240e769ac93","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.usageCredits","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Usage credits","text_hash":"fbc841b791a14110e06a9913d3d69153b9cc4cf9542b856821b357a09a7c08a4","tgt_lang":"pt-BR","translated":"Créditos de uso","updated_at":"2026-07-09T11:48:56.309Z"} {"cache_key":"d54e130ea95e9c4b23bac3149fe4730de8ecf8c063e278d8e8eb59daf59382ab","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"pt-BR","translated":"Sem comprovação","updated_at":"2026-06-17T14:13:15.046Z"} {"cache_key":"d66ada3975a18ef7bef1ec6f4cdc3944b4a9b1ee5cd97a3d591ebb62dc0389da","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"pt-BR","translated":"Tenant: {tenant}","updated_at":"2026-06-16T14:13:11.260Z"} +{"cache_key":"d683cad8ef7a968b47b2d2105365689b52251684e3187126e3d2be9bb9d612c1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"pt-BR","translated":"Ativado","updated_at":"2026-07-10T02:23:15.779Z"} +{"cache_key":"d7450e743cccaeace5de0f3bc93abb109c9dfea419099d1f062812fa62b8dc88","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"pt-BR","translated":"Mecanismos de contexto","updated_at":"2026-07-10T02:23:12.679Z"} {"cache_key":"d77c54c95fde6661931fa9c02f685997d8bd8a47ede33c9e4c9a78b209eeb86b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"pt-BR","translated":"Caminho do workspace","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"d7a74137ca8557480101f8f3916e6d3f5f24e7d3ef8e6ada5bf46f7568a70cf4","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"pt-BR","translated":"Anexo adicionado","updated_at":"2026-05-30T15:38:08.357Z"} {"cache_key":"d8d4b4e03ca6780c2ce6d5c3970a5a7a142706dbbfcf5de42a4f472ed8024ae6","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"pt-BR","translated":"7 dias","updated_at":"2026-07-06T06:40:15.357Z"} @@ -259,6 +361,7 @@ {"cache_key":"dd2e6bf65a182d58a88aa87e99268ae7052a151638bb76802e6f3f732436833d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"pt-BR","translated":"Revisão","updated_at":"2026-06-17T14:13:15.046Z"} {"cache_key":"ddbb0289ae5b91e0a9688084957209cdb3937f57b1a5b0b7373d3b1e6fccf9d4","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"pt-BR","translated":"Mais antigas","updated_at":"2026-07-05T14:39:34.196Z"} {"cache_key":"ded6e3d7d3158311cb662e26f85c0b48ef769e1e29753346718738495e8354a7","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"pt-BR","translated":"Tokens da execução mais recente","updated_at":"2026-07-05T10:15:58.131Z"} +{"cache_key":"df33d88a84cfb696e08a704ad78f2ce18032937ea702c14822e44b2f567e8bb5","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"pt-BR","translated":"Copiar hash completo do commit","updated_at":"2026-07-10T09:46:50.017Z"} {"cache_key":"df40760376ba5c34595486af450c8cf0022bfc3bd8099c96553a032ca3881311","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"pt-BR","translated":"Excluir grupo…","updated_at":"2026-07-06T23:40:46.278Z"} {"cache_key":"df4d38784c33723d120aa957461cad3f3854d1f6f0c219d58f3fdd42d20cf082","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"pt-BR","translated":"Geral","updated_at":"2026-07-09T08:07:47.561Z"} {"cache_key":"df7d88c8daf5e169476d0d828dd2a51921f3e61a14ef31423345f1ddcef4e9f8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"pt-BR","translated":"Sem atividade","updated_at":"2026-07-05T14:39:34.196Z"} @@ -273,33 +376,54 @@ {"cache_key":"e27861e63616e21a32b7e6de4e3886ef63ff3054ffcfe40c0546181f1d5b3123","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"pt-BR","translated":"Agente","updated_at":"2026-07-05T14:39:34.196Z"} {"cache_key":"e31cd66e142bae39642471c7b1981a3205507bfaaae9d715bc162caa0faad452","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"pt-BR","translated":"{count} anexos","updated_at":"2026-05-30T15:38:08.357Z"} {"cache_key":"e36e98a27829705c8bde292653357921fc62ac38e935a401935f263cf4d78105","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"pt-BR","translated":"Ativa","updated_at":"2026-07-09T10:01:43.718Z"} +{"cache_key":"e3c2480a4e2ef88c64bdbd7cae860f550378c081a12807a904d0e427f5052bec","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"pt-BR","translated":"Incluído","updated_at":"2026-07-10T02:23:15.779Z"} +{"cache_key":"e4072074b40dde5b06d2e53dcbf4e1f6536c997e8fc65818de75ff97e1b46515","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"pt-BR","translated":"Ações de {name}","updated_at":"2026-07-10T04:28:10.596Z"} +{"cache_key":"e5db5132815d5204649678490f123e93daf817ed45bc1f66d92040475cfc3487","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"pt-BR","translated":"Vida cotidiana","updated_at":"2026-07-10T05:21:57.578Z"} +{"cache_key":"e60d452c0a415d11e439d03dda645a6680f6688939a3dfa7a6a3ac33282a97f8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"pt-BR","translated":"Encontrar no ClawHub","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"e67fbd2381e4037fa51378a2553b422e7e84ad182a1ef99f80223a2c5849af61","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"pt-BR","translated":"Atualizar espaço de trabalho da sessão","updated_at":"2026-06-16T14:13:17.394Z"} +{"cache_key":"e734160658c429f5345bf21daa08a4bb128113a3879d6fcf534b0d70a94faf43","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"pt-BR","translated":"Origem","updated_at":"2026-07-10T04:28:10.596Z"} {"cache_key":"e9f2b19159823e2c1f2fbcf5c13d56bd99778ebf90f0a0f7cbc3ef62ac134364","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropOpenHere","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Open here","text_hash":"b08e2fd2e872adcb575b305187b9db8482369325806953ce80190fc2dc1ab9fb","tgt_lang":"pt-BR","translated":"Abrir aqui","updated_at":"2026-07-06T22:56:16.035Z"} {"cache_key":"ea39326411d6647b16a232138b1b10db501ed97ae30a19983787088f7259b6b7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dragSessionHint","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Drag to move between groups","text_hash":"3e8692b1cd1c1f9a606a779f1037aa390c885fde224ddb841df9259e8aab03ae","tgt_lang":"pt-BR","translated":"Arraste para mover entre grupos","updated_at":"2026-07-05T14:39:34.196Z"} +{"cache_key":"ea5c828f1895909dd6de39ac1effe6222242922c5ea5d3ff40bc91bef4552360","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"pt-BR","translated":"Plugins da comunidade no ClawHub","updated_at":"2026-07-10T02:23:08.336Z"} +{"cache_key":"ea8f3d703bf6c12c543ad283bf84e888b4e5cacadd6dd4f8c7cf60cc9dc4c869","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"pt-BR","translated":"Problemas","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"ea9deb7b47e4cdfa527378dcdc35ca2a92b1c3afa75d8071627f2b3c76f34320","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"pt-BR","translated":"Lido","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"eb37354b7038031ee05185ebdece89d174157129408775a325a71dda5fa297f8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"pt-BR","translated":"Renomear grupo","updated_at":"2026-07-06T23:40:46.278Z"} {"cache_key":"ebe39d6e36c4397b72a96efaaadf80bc4dfbe81ba857e5ce04faf75e826e4b8d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"pt-BR","translated":"Nó","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"ebecbea7da4ec0a5e38fb4a255731972be493cad9001cff3ef2634d09d207467","model":"gpt-5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"pt-BR","translated":"Atualizar","updated_at":"2026-07-09T10:01:43.718Z"} +{"cache_key":"ece6d222abe62f2df0b4837c16802c9e79a96fb7dee405ef0ded2ff0ccb19175","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"pt-BR","translated":"Descobrir","updated_at":"2026-07-10T02:23:04.448Z"} {"cache_key":"ed2a87b13d6372d493087e37f8ac2013fa200dc8323122a31c3923fcaa1e4949","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"pt-BR","translated":"Espaço de trabalho da sessão","updated_at":"2026-06-16T14:13:17.394Z"} {"cache_key":"ed3b118a416d9f9ed34a98794d65c166f71fae7c19b9161dfaf16380c383418b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"pt-BR","translated":"As entradas de microfone estão ocupadas ou indisponíveis para o navegador.","updated_at":"2026-07-06T17:56:11.051Z"} {"cache_key":"ed712f1f5a40d696e38be09d397fcd14163721abc2b704649f0bb73105869ff3","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"pt-BR","translated":"Renomear sessão","updated_at":"2026-07-02T14:30:01.256Z"} +{"cache_key":"ee0970d2fd415d17d7217ba057aa8f42c18d0cc9a4f2ddff58bd02487110cf7f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"pt-BR","translated":"Recurso opcional do OpenClaw.","updated_at":"2026-07-10T02:23:15.779Z"} {"cache_key":"ee9f3fcdbf390537125469d10fdd3fa41485a9f94541f408854c6060ae001884","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"pt-BR","translated":"Carregar mais","updated_at":"2026-07-09T10:01:43.718Z"} {"cache_key":"eef7c73fdcad94e35086277b7e4b0d7832346407a2fff070c8aadbd0812fac3c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"pt-BR","translated":"Quadro: {board}","updated_at":"2026-06-16T14:13:11.260Z"} {"cache_key":"ef1797c3b71150753c536676682bb0eeefc4d2ab674b44b4d8af63d4b7f9b324","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"pt-BR","translated":"Espaço de trabalho","updated_at":"2026-06-16T14:13:17.394Z"} +{"cache_key":"ef749829cc6757141d2015145340ffd0527b1b768a2657eec02280156a0ec902","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"pt-BR","translated":"Todos","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"efd794d81e11134018026a23bf1c2ec8eb5f948d3bc0f4bca6cb6d8b2f772735","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"pt-BR","translated":"Pasta superior","updated_at":"2026-06-16T14:13:25.058Z"} {"cache_key":"efe8a0787adb86cbcf78b9b62a55a57a536379d1a94e82f341f842b4e77fe2f2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"pt-BR","translated":"{agent} (padrão)","updated_at":"2026-06-17T14:13:15.046Z"} +{"cache_key":"f088bf02bb6388b0556f5795a2584aaeb3577baa9fd812dfcc86e3e6b492db04","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"pt-BR","translated":"Sobre","updated_at":"2026-07-10T09:46:50.017Z"} {"cache_key":"f09f2517f09740aff2cc8fa779c97ef7285d461a9a94469f02fe56fb6de53aeb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"pt-BR","translated":"Automação","updated_at":"2026-06-16T14:13:11.260Z"} +{"cache_key":"f0ca84a894c1f04444cb9aa42b1461ac22b2208e7aa5c2d74a608883741d2b84","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"pt-BR","translated":"Pesquisando no ClawHub…","updated_at":"2026-07-10T02:23:04.448Z"} +{"cache_key":"f0e55fb45674991d3c001fe985d2386aab9682976db24a9bf1bc33f0faf34090","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"pt-BR","translated":"Memória","updated_at":"2026-07-10T02:23:12.679Z"} +{"cache_key":"f106f0863dbec25f0dc6a048441c8a7aff44df34e924b255989e07d49fff8b1a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"pt-BR","translated":"Filtrar plugins instalados","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"f10cdace99035e6239ce03f5c2b0d0f74c7cd02a6f3e60ba81d20fc9388b5ee8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"pt-BR","translated":"Mover sessão para um grupo","updated_at":"2026-07-05T14:39:34.196Z"} {"cache_key":"f18cc211f6d17a9591c2afffdfe9b3159d5ce8ff503fbd707562d7a4b25093a0","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"pt-BR","translated":"Repositório","updated_at":"2026-07-05T21:00:34.411Z"} {"cache_key":"f29d636436aacfe57b931e5e4771d43062f44dd3c9912c3c335bfd35bd06718f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"pt-BR","translated":"Nenhum microfone adicional encontrado","updated_at":"2026-07-06T17:33:35.115Z"} +{"cache_key":"f2a192cf7f4006dddec8b1843a81b9437765080c9f5aa292292e5b539b4a3c29","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"pt-BR","translated":"Explorar o ClawHub","updated_at":"2026-07-10T02:23:04.448Z"} {"cache_key":"f2f51a0996d691ef35cc517d6a98be6ae2160ceb9c023ac17d7cea0e8151a4ac","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"pt-BR","translated":"em execução","updated_at":"2026-06-17T14:13:19.801Z"} +{"cache_key":"f5222cda16d088c0a607e5b2c745ea1a92da6bb5878fe84f745840496f30ded4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"pt-BR","translated":"Instalados","updated_at":"2026-07-10T02:23:08.336Z"} {"cache_key":"f8137ce5753347e712c07f3ffb474960e0c2a29728e39a98be5b40aa6c3c85ca","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"pt-BR","translated":"Grupos personalizados","updated_at":"2026-07-05T14:39:34.196Z"} {"cache_key":"f81631c0007ebf7ce1171fb3f60e5495ee5eaf400f96bf94369937442486dd21","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"pt-BR","translated":"A entrada de voz em tempo real requer acesso ao microfone do navegador.","updated_at":"2026-07-06T22:41:54.231Z"} +{"cache_key":"f82c335814249a08dfbcf01a1ac4c5da089618ae20bb09efb226c2fa34155d1e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"pt-BR","translated":"Categoria","updated_at":"2026-07-10T04:28:10.596Z"} {"cache_key":"f894db690363139ef5bb5dbffb097a8fdf753a2e91437b503207bc900550f439","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"pt-BR","translated":"Canal","updated_at":"2026-07-05T14:39:34.196Z"} {"cache_key":"fa1c138ca0102f123b9c1ca43a2c9cb32e89c6f90b758abad15bfb459a914635","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"pt-BR","translated":"{count} sessões","updated_at":"2026-07-05T14:39:34.196Z"} {"cache_key":"fd22d9880ab337f9ee368da7ff3d0f26c051d8b6b6d2b71fef881b3e7d6c303d","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"pt-BR","translated":"Nunca aparece","updated_at":"2026-07-09T20:51:23.604Z"} {"cache_key":"fd587e677a6fab1699155302642242711c95431c2f5f45cb8ff30fff73e45d88","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"pt-BR","translated":"Adicione uma decisão, bloqueio ou nota de comprovação...","updated_at":"2026-06-16T14:13:17.394Z"} {"cache_key":"fd94af84717b680ce5aff29147c87c69bc0e7a6a83801ac9f5ea2389a917a75e","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"pt-BR","translated":"Oficina de Skills","updated_at":"2026-05-31T21:48:16.734Z"} {"cache_key":"fdfde15dc80930ed3c2d17449755e36aad0d589bd14f514c5726a50dbbd3db62","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"pt-BR","translated":"Aparece ocasionalmente","updated_at":"2026-07-09T20:51:23.604Z"} +{"cache_key":"fe982bf8cccb19ae4d8e5c086ef39da3e53cea131cc51e6a9f50080ee09d1a9b","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"pt-BR","translated":"Plugins","updated_at":"2026-07-10T02:23:04.448Z"} {"cache_key":"ff56bf8c96eae6f882b8c3ddda88697b6cd14165569be390c7cb4b3954250fb5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"pt-BR","translated":"Copiar caminho","updated_at":"2026-06-16T14:13:27.459Z"} {"cache_key":"ff68238382e9b6baaecc2aa3f795d700f86bb7f04f5e2b96d2fec991d376849c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadingMore","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"pt-BR","translated":"Carregando…","updated_at":"2026-07-09T10:01:43.718Z"} +{"cache_key":"ff9fd282ff74550d9a5f936d304a5b580e93c0f396c64ba82735904571c0cc7f","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"pt-BR","translated":"Informada pela conexão ativa do Gateway; separada desta build da Control UI.","updated_at":"2026-07-10T09:46:50.017Z"} +{"cache_key":"ffae95898c349e1d2337e5a22f6d2860b50f4fe29cf1b9c4d93b8b277dcb02a7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"pt-BR","translated":"Nenhum plugin encontrado","updated_at":"2026-07-10T02:23:04.448Z"} +{"cache_key":"ffe74fd1899ae15a529c43aafcd6994bfeff0a88b597a0926f5c58c2dd577184","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/pt-BR.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"pt-BR","translated":"Descubra um plugin em destaque ou pesquise no ClawHub para expandir o OpenClaw.","updated_at":"2026-07-10T02:23:08.336Z"} diff --git a/ui/src/i18n/.i18n/raw-copy-baseline.json b/ui/src/i18n/.i18n/raw-copy-baseline.json index 7c2966fc6cde..6f12b25a9a73 100644 --- a/ui/src/i18n/.i18n/raw-copy-baseline.json +++ b/ui/src/i18n/.i18n/raw-copy-baseline.json @@ -4194,6 +4194,230 @@ "path": "ui/src/pages/overview/view.ts", "text": "ws://100.x.y.z:18789" }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "A personalized daily briefing: news, weather, and tasks in one message." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Ask questions about any public GitHub repo. Free, no account needed." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Browse, search, and summarize subreddits and threads." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Capture notes to Markdown, Obsidian, Notion, or Bear." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Check payments, customers, invoices, and subscriptions in your Stripe account." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Cluster operations and troubleshooting from chat." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Control lights, climate, and automations across your whole home." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Crash alerts explained and triaged the moment they fire." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Create and edit Canva designs, manage assets, and export results." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Create, search, and triage Jira tickets from chat." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Extract, merge, convert, and OCR PDF documents." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Flight and hotel search with fare watching and trip memory." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Grafana know-how and community connectors for dashboards and alerts." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Live stocks and crypto with price alerts and daily digests." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Mailbox triage, summaries, and drafts with send-on-approval." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Places, routing, and travel-time answers." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "PR review queues, issue triage, and repo Q&A through the official GitHub MCP." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Query and update records, tables, and bases in Airtable." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Read, add, and complete tasks and projects in Todoist." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Read, create, and get briefed on events — your agent owns your schedule." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Search models, datasets, and papers; run Spaces as tools." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Search, create, and update pages and databases in your Notion workspace." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Search, queue, and soundtrack your day with mood-based playlists." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Translate and localize text and documents." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Triage issues, update cycles, and file bugs straight from chat." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Turn audio and video into clean, structured transcripts." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Version-specific library docs and code examples while coding. No signup needed." + }, + { + "count": 1, + "kind": "object-property", + "name": "description", + "path": "ui/src/pages/plugins/presentation.ts", + "text": "Whole-home audio: play, group rooms, and queue by chat." + }, + { + "count": 1, + "kind": "html-attribute", + "name": "placeholder", + "path": "ui/src/pages/plugins/view.ts", + "text": "context7" + }, + { + "count": 1, + "kind": "html-attribute", + "name": "placeholder", + "path": "ui/src/pages/plugins/view.ts", + "text": "https://mcp.example.com/mcp · npx some-mcp-server" + }, + { + "count": 2, + "kind": "html-text", + "name": "text", + "path": "ui/src/pages/plugins/view.ts", + "text": "MCP" + }, + { + "count": 1, + "kind": "html-text", + "name": "text", + "path": "ui/src/pages/plugins/view.ts", + "text": "OAuth" + }, { "count": 1, "kind": "html-text", diff --git a/ui/src/i18n/.i18n/ru.meta.json b/ui/src/i18n/.i18n/ru.meta.json index d6f6b83f95d6..98df7dd70fd4 100644 --- a/ui/src/i18n/.i18n/ru.meta.json +++ b/ui/src/i18n/.i18n/ru.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:27.656Z", + "generatedAt": "2026-07-10T09:47:55.880Z", "locale": "ru", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/ru.tm.jsonl b/ui/src/i18n/.i18n/ru.tm.jsonl index 5efde6b6f8e4..ade150400969 100644 --- a/ui/src/i18n/.i18n/ru.tm.jsonl +++ b/ui/src/i18n/.i18n/ru.tm.jsonl @@ -43,6 +43,7 @@ {"cache_key":"04a4995bb964666936e0e68ea5c79d04e03cf31d2899f894bbe91ae5f13c43c2","model":"gpt-5.5","provider":"openai","segment_id":"overview.access.showPassword","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Show password","text_hash":"6aeaa6a53d09dcad071fdda6280b1e7c42aa164cd0514304ff162e7da440ffaa","tgt_lang":"ru","translated":"Показать пароль","updated_at":"2026-06-26T21:40:18.156Z"} {"cache_key":"04cd99083fc8da84bd18d2061cda407a0cfd79c82a50a6a8281a901dc249b461","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.whenHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Pick a schedule. You can fine-tune it later.","text_hash":"afaccdbedfd69f7618dc57e8b77feb2baf257aa8b5d425cd6baf5ac5f689b67a","tgt_lang":"ru","translated":"Выберите расписание. Вы сможете настроить его позже.","updated_at":"2026-06-26T21:42:18.092Z"} {"cache_key":"0500884c313d64b201f0bddd5aa516561639a091f75d515b1d61f1e01fe58e80","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"ru","translated":"Переименовать группу","updated_at":"2026-07-06T23:41:27.246Z"} +{"cache_key":"05467afe3b57cf9979837f83776a50761ab1b84865e1395ce57b5dd8801c8d43","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"ru","translated":"Отмена","updated_at":"2026-06-26T21:42:44.768Z"} {"cache_key":"054b9ad85f0917d26e3e3eff262fd43e847ca3c1a5b8d1a1db80878e1909c646","model":"gpt-5.5","provider":"openai","segment_id":"usage.query.apply","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Filter (client-side)","text_hash":"77e09b6867cffeb5bdf24c22b34dfe5eca471bf52337bfc8c372e3cead606eae","tgt_lang":"ru","translated":"Фильтр (на стороне клиента)","updated_at":"2026-06-26T21:41:03.285Z"} {"cache_key":"05792eda408380a998f2b4a599ea7655503991991e8feea85d4c5b1af0b94f7c","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.security.toolProfile","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Tool profile","text_hash":"7fddfc798851c46789ef9d249867eb179988e4ec4b48205b0e8871a92e5715ce","tgt_lang":"ru","translated":"Профиль инструмента","updated_at":"2026-06-26T21:39:17.817Z"} {"cache_key":"05cf45b9d283959ff266a5fb5dd63ca0c2bcea2285fa95fce9a3e75f0a8d7516","model":"gpt-5.5","provider":"openai","segment_id":"workboard.archived","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"ru","translated":"В архиве","updated_at":"2026-06-26T21:39:43.912Z"} @@ -52,9 +53,11 @@ {"cache_key":"064d992a3415d8dd908996300be71fd2e7abe616cf64548fdeb4f52ec361bc46","model":"gpt-5.5","provider":"openai","segment_id":"usage.breakdown.tokensByType","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Tokens by Type","text_hash":"d27ec373ce7c31e25b570de9efd370c081820fa0469371072c6b200168eb8603","tgt_lang":"ru","translated":"Токены по типу","updated_at":"2026-06-26T21:41:08.400Z"} {"cache_key":"065de01f2a1fec332d2fbb8660db31eb1eae8c85f904d25abb28dc0939c584af","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"ru","translated":"Команда","updated_at":"2026-06-26T21:42:47.554Z"} {"cache_key":"065e6e533f82eb1b9504e24bc945db5fd2c8f19498c73e2b20209e4882c6c056","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolsTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Most used tools","text_hash":"8bc3f9b213a6e4c632b3c09d45d7c373a07c75389ab5d6c17cc053352ea16847","tgt_lang":"ru","translated":"Наиболее используемые инструменты","updated_at":"2026-07-09T11:29:24.217Z"} +{"cache_key":"0665de04b737c4368d87da4bebabcbac5dd862a4366193fbdc3524341d6ca773","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"ru","translated":"MCP-сервер в один клик","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"06a16576077cda76a17970a542c6ce179ce217d6be09eeed68866c5f701a75ae","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.websiteHelp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Your personal website","text_hash":"53b16b8c3ad0dd04970b1988ac06507a2927c2cd378897e57d5c5f9768d5a938","tgt_lang":"ru","translated":"Ваш личный веб-сайт","updated_at":"2026-06-26T21:38:44.774Z"} {"cache_key":"06bdae82495c2b6e6d6493c31b1cae59929b91f477e02a1ab91019ca52299520","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.origin.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Browser origin not allowed","text_hash":"9cd35644ce04b4c9c5fa5378ab58eb3c92f7333d3a02ce4fb485ea4d9f57ce09","tgt_lang":"ru","translated":"Источник браузера не разрешен","updated_at":"2026-06-26T21:41:46.401Z"} {"cache_key":"06c3c0a033447bd24228adbe51c81065a4d64d74bc8af63ad69ce2dc8cb8b3bd","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"ru","translated":"Этот браузер не может отобразить список входов микрофона.","updated_at":"2026-07-06T17:57:33.379Z"} +{"cache_key":"06dd1af219f0d434acad120193842fc545d840e300836938f8d42b60411cd2a3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"ru","translated":"Попробуйте другой поисковый запрос.","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"06de86746a0efb31f8f144c4767549b1324eb12c8b4849fcdf40076948248512","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.checkpoints","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} Checkpoints","text_hash":"5b31fb29b5c99fbeb74c6ee7557daa5ddeffe1b624a277bb6321a88221d457eb","tgt_lang":"ru","translated":"{count} контрольных точек","updated_at":"2026-06-26T21:38:57.762Z"} {"cache_key":"06f773ea73ff994ad569e98f53e502d777d8b9626e1fd27fe73b8d954ec60de4","model":"gpt-5.5","provider":"openai","segment_id":"chat.showCronSessions","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Show cron sessions","text_hash":"0cc0314eb8ffe4f1b14e774b3eec8f0433cc0ab073f396ca789d6ee35cb37385","tgt_lang":"ru","translated":"Показать сеансы cron","updated_at":"2026-06-26T21:41:50.918Z"} {"cache_key":"0715993e201e0273ea20ac9e22da88961eb271d3af41a9b8e21972b86eed9d9a","model":"gpt-5.5","provider":"openai","segment_id":"nav.resize","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Resize sidebar","text_hash":"243854b4d0c709a06e41005bc74a72d6b49463cc2d9ac5bc2967666f6b988c88","tgt_lang":"ru","translated":"Изменить размер боковой панели","updated_at":"2026-06-26T21:39:23.906Z"} @@ -90,6 +93,7 @@ {"cache_key":"0b5ad6807a8d58febdc71b6f55298cedd0cbaf28a50c53d240952ff6c425a0ed","model":"gpt-5.5","provider":"openai","segment_id":"activity.argumentsHidden","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} arguments hidden","text_hash":"b07c2a42573925aefc0b23619e69a34fef45b58350020a985e00a1bd343f7814","tgt_lang":"ru","translated":"{count} аргументов скрыто","updated_at":"2026-06-26T21:39:35.030Z"} {"cache_key":"0b654c2cd80e14d9a4b785b5921f4fd292077015b87bc46e0c4127ff0a4f4542","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.seconds","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Seconds","text_hash":"381a8e9699052f3a958001510611a9634e7cef8aa6a1421cb7e7f6e119f91edc","tgt_lang":"ru","translated":"Секунды","updated_at":"2026-06-26T21:42:44.768Z"} {"cache_key":"0bdede52b982225e9e919a87921f9b60c496e8a58d1ac8576d02a5e55616dd0b","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.refresh","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"ru","translated":"Обновить","updated_at":"2026-06-26T21:42:18.092Z"} +{"cache_key":"0be6a77a8fb3b14aae982cd19b26e500aedce6fd2147b559379a9b386636f086","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"ru","translated":"Подключитесь к Gateway, чтобы изменить плагины.","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"0bf23024f2b928ed2c08035a3f6aeb879a4f7afdabbd4864f7dd035be34b7c67","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"ru","translated":"Поиск сеансов Codex","updated_at":"2026-07-09T10:01:43.745Z"} {"cache_key":"0c2a94700c8c24bf21bb3791095e0eb46b38979044c865375f2790ea9785be3a","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.ofInput","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"of input","text_hash":"475574dee216ac12f860bf64f68223a82c7538b30eb25cc28bc7d1fddd65f0f5","tgt_lang":"ru","translated":"от ввода","updated_at":"2026-06-26T21:41:28.060Z"} {"cache_key":"0c3f7512f81efaf8a21f206e0354a7e5745a3056096ecb83c7ea4b0a60e40845","model":"gpt-5.5","provider":"openai","segment_id":"chat.showCronSessionsHidden","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Show cron sessions ({count} hidden)","text_hash":"8175e33283e11f6d241ff8694d757db4e30940794be9e2f9546d10aef0470c56","tgt_lang":"ru","translated":"Показать сеансы cron (скрыто: {count})","updated_at":"2026-06-26T21:41:50.918Z"} @@ -117,6 +121,7 @@ {"cache_key":"0f0b184cb2f6945b2a013f3aacb402876197792fe9d0017d5be2d06f3956414e","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.sessionsCount","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"ru","translated":"{count} сеансов","updated_at":"2026-06-26T21:41:03.285Z"} {"cache_key":"0f1d6e22d9d633a1bc50ca97eb8257640204b3a67676d066e1239a5ee70547de","model":"gpt-5.5","provider":"openai","segment_id":"languages.es","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Español (Spanish)","text_hash":"b785e11e822c061a3a5368c55fbeb3f436766ef1e9b3448a605083d0b06ecddb","tgt_lang":"ru","translated":"Español (испанский)","updated_at":"2026-06-26T21:42:06.902Z"} {"cache_key":"0ff7003128fbb2f629cd6c0123af3c10c540e9798383776d1dccc5cfca530c11","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"ru","translated":"MCP","updated_at":"2026-06-26T21:39:27.659Z"} +{"cache_key":"10177443872ae7decb113827335aa22faa89f51dc6e5fa58aaa7717de47eecb7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"ru","translated":"Поставщики моделей","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"102d7998284dcdf0aade2e7715176bd8d58fa16f7aa0cd0a4458da98c97b1d2f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"ru","translated":"Чувствительность","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"1061e548c0461ac12101dbc1c98c6d0618a02d9808aed135b3f43d0245aae896","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.legendMore","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"More","text_hash":"d47d7cb0e4f8fd2be5ee07826694c18917d83ca77d0a01698582d05f432db996","tgt_lang":"ru","translated":"Больше","updated_at":"2026-07-09T11:29:21.881Z"} {"cache_key":"1074098cc65ed7d519dd3547a3c3e4b26b7d1542e76c845118ae0018b6ccb78d","model":"gpt-5.5","provider":"openai","segment_id":"usage.mosaic.thu","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Thu","text_hash":"7da11212ed340ea7976a39891c56c6f1e791a175a4bad537ba1cf21f5c83f6fd","tgt_lang":"ru","translated":"Чт","updated_at":"2026-06-26T21:41:31.698Z"} @@ -157,12 +162,14 @@ {"cache_key":"143044398b1ae01880826b668f57b631d14fc44d4dcf72178e791e9bf87f2b03","model":"gpt-5.5","provider":"openai","segment_id":"agents.tabs.tools","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"ru","translated":"Инструменты","updated_at":"2026-06-26T21:39:04.015Z"} {"cache_key":"145e1ac7efe6e79c7ebd73ce0be6d8825a7075c4911aaf3d84187ce4d44d101c","model":"gpt-5.5","provider":"openai","segment_id":"chat.gatewayStatus","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Gateway status: {status}","text_hash":"5778a6ee172589bbd9027790e112d2f90264f86b112308924bf1acabc6b31935","tgt_lang":"ru","translated":"Статус Gateway: {status}","updated_at":"2026-06-26T21:41:50.918Z"} {"cache_key":"146b2017c19afe21937c60d333c111c29f2b2d14b9ac1268e4cb8d754f5dcd36","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.copy","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Copy","text_hash":"e21f935f11d7e966dbbae78da9daa378fe8142a14e7c0cd7434183005faa6c5c","tgt_lang":"ru","translated":"Копировать","updated_at":"2026-06-26T21:41:23.762Z"} +{"cache_key":"147faac3773191eb8549ff463d5925ebdd5935905dbb9385ea9a54416e5ccb2f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"ru","translated":"Официальные плагины","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"148c7092f457ead1c0d9a3139081f978edfe9a27a9e7b72d3f76c570e24cf659","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"ru","translated":"Включите общий доступ к сеансам Codex на Gateway или сопряжённом компьютере, затем обновите эту страницу.","updated_at":"2026-07-09T10:01:43.745Z"} {"cache_key":"14f41ba9fe8c7a0ce44929ecbdf843eba46ddaff1d42e1c066b217f96c5fa98d","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.shown","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"ru","translated":"Показано: {count}","updated_at":"2026-06-26T21:41:20.199Z"} {"cache_key":"150a681f244346db7562b21fd474a3ab6515d42ae01f3712d2d6ac5a6f1c1a24","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.rawError","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Raw error","text_hash":"50bcf13313a85342bd4a8f611595659ff835c894c0740b093106fb69e5488dfc","tgt_lang":"ru","translated":"Необработанная ошибка","updated_at":"2026-06-26T21:41:35.342Z"} {"cache_key":"15866e05050e3e8dc8dcbe142aec6dc8978182fb3d00401e9fa998f70391a918","model":"gpt-5.5","provider":"openai","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"ru","translated":"Компактная плотность карточек","updated_at":"2026-06-26T21:39:57.757Z"} {"cache_key":"15cd946ce58e91d06c4c45b61906d16b3c3b3a3824f9778ba2efd8ae3aa45d3e","model":"gpt-5.5","provider":"openai","segment_id":"activity.session","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"ru","translated":"Сессия","updated_at":"2026-06-26T21:39:35.030Z"} {"cache_key":"16219c9ae9d6b32efc13fa48ba91cc0dcc57bb746a6429e9b5cb6e6dd75b8e56","model":"gpt-5.5","provider":"openai","segment_id":"overview.eventLog.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Event Log","text_hash":"ad46380cee0c03bd2d8f9c6d0d91b724118c796a9d9eb5f167fc8da4d7cfd2b7","tgt_lang":"ru","translated":"Журнал событий","updated_at":"2026-06-26T21:40:31.548Z"} +{"cache_key":"16323e61ee2d11b72ef1382ac057c4eba78493a6fc50be7d4fe487b5bea95ee0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"ru","translated":"Каталог плагинов","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"1647ca5c0bf5ad63958c705641cfcacb1bd1412cdede4fb7612d69513f830047","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.stream","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"stream","text_hash":"dca83e717b1f64eb141057a7415a330ad1361f51703efa2e4776f40047898a04","tgt_lang":"ru","translated":"поток","updated_at":"2026-06-26T21:38:54.164Z"} {"cache_key":"166cfdefd34208f674a0378ce7b2d7367164535b1daf71a306f806169e14e70a","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.authRequired.stepGenerate","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"If no token is configured, run openclaw doctor --generate-gateway-token on the gateway host.","text_hash":"6d1eae106bbcdaa7e1f99d992837e643506a2c593c225ca8a57caf3cd3474fdc","tgt_lang":"ru","translated":"Если токен не настроен, выполните openclaw doctor --generate-gateway-token на хосте шлюза.","updated_at":"2026-06-26T21:41:35.342Z"} {"cache_key":"1682fb15ba05d5dc120f4ae66db8eccc86cdd988cc3eb5abb6d4c161d984ad6c","model":"gpt-5.5","provider":"openai","segment_id":"workboard.editCardHelp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Update queue metadata and session handoff.","text_hash":"5d3ecbef24c1ed547507a469717a250d0aa6c472275b03c8b2a2cc6e52fe8cee","tgt_lang":"ru","translated":"Обновите метаданные очереди и передачу сеанса.","updated_at":"2026-06-26T21:39:43.912Z"} @@ -171,6 +178,7 @@ {"cache_key":"16d247437fa4e5c5b8c0833a1122db0632818f8f7e04ac159ff7c870088ac96a","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.tokensPerMinute","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"tok/min","text_hash":"313de81ab59056211afd431da067fe437d905d9f29f51d64b016222a777c9526","tgt_lang":"ru","translated":"ток/мин","updated_at":"2026-06-26T21:41:16.423Z"} {"cache_key":"16e3aab666e5228473c96a200497e2440933b4a36c271bef57579702ffa02f0c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"ru","translated":"Сеансы Codex на этом Gateway и всех подключённых компьютерах с общим доступом. Только для чтения.","updated_at":"2026-07-09T10:01:43.745Z"} {"cache_key":"16ec6e3bbd6ec0f9edfc2e0f7f9d5ff70c4fb8480db8fff98fcbb9328990c318","model":"gpt-5.5","provider":"openai","segment_id":"common.loadConfig","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Load config","text_hash":"f76a62485a8c7d1c9687ca870a15baee71a2d70ca6edd2132e41b8211a786ade","tgt_lang":"ru","translated":"Загрузить конфигурацию","updated_at":"2026-06-26T21:38:30.975Z"} +{"cache_key":"170f642b9576f50206393a4e7ef56647163a9ee57d93e5bd3999203f4d1ded8f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"ru","translated":"MCP-серверы","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"1754e25086a835fee7792c7927da57d3ccb28e6d1f5d110f5ac705eef91314ff","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.modelAuthExpiresIn","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"expires {when}","text_hash":"a70e9d68758ae6b1c6bbe34b53bfe111aaad9a6ef498e98f3b8210d43be64196","tgt_lang":"ru","translated":"истекает {when}","updated_at":"2026-06-26T21:40:31.548Z"} {"cache_key":"175ac62da18c72e958da779bf4119cf6728ea496b2beb74cc2f3865bc7f5de78","model":"gpt-5.5","provider":"openai","segment_id":"logsView.subtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Gateway file logs (JSONL).","text_hash":"21e20de54e40ec4f79656620af6f2c7ab13905e908c29da02c30876108c3842b","tgt_lang":"ru","translated":"Файловые логи Gateway (JSONL).","updated_at":"2026-06-26T21:39:38.402Z"} {"cache_key":"175d7acf1adb9492e29c1fc81fef10ad2f7f2514181054e104a3f936c737c7ee","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttempts","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} attempts","text_hash":"98c22f516faa183eb6d50d193d91217aed5b50abe4a284be111c13d28007ca6f","tgt_lang":"ru","translated":"{count} попыток","updated_at":"2026-06-26T21:40:00.644Z"} @@ -178,6 +186,7 @@ {"cache_key":"17980345585e2a3e870b68f0117e102b348ab80e2b4dd3db1f2fbe38620445bb","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.markdownPreview","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Markdown Preview","text_hash":"149c33c417f8eba8d0210417f14d288792510e0c350e4dd020ea30563aa3eeb9","tgt_lang":"ru","translated":"Предпросмотр Markdown","updated_at":"2026-06-26T21:39:11.166Z"} {"cache_key":"17ac66b5d3f038b53c091327782490cd349a6738f48397a2abae90b59b9e1e57","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.everyAmountPlaceholder","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"30","text_hash":"624b60c58c9d8bfb6ff1886c2fd605d2adeb6ea4da576068201b6c6958ce93f4","tgt_lang":"ru","translated":"30","updated_at":"2026-06-26T21:42:31.568Z"} {"cache_key":"17e9a428fb8a3f32ad0ca7e01f7d8abefc0a35e692795aed5ea549eb908f8c74","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.labels.resolved","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Resolved","text_hash":"5be3c2c8354e1eb924b03a3dcc7fa4172e9aa0f4917b46b44fcc7daf8835d7a7","tgt_lang":"ru","translated":"Разрешено","updated_at":"2026-06-26T21:39:20.621Z"} +{"cache_key":"180cb9cb585fd024ea6d26c9e73be4058d7c155bc65a1bf3e6876d27b28071c5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"ru","translated":"Установка…","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"1837a4da881b3e23a3acba713d35368d7c95a3695f9c74a2eaf45f0e74dd92f6","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.updatedPrefix","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"updated","text_hash":"27eb5e51506c911f6fc4bb345c0d9db6f60415fceab7c18e1e9b862637415777","tgt_lang":"ru","translated":"обновлено","updated_at":"2026-06-26T21:40:48.120Z"} {"cache_key":"184895a65993334af605d248ba2154c2cb5cb4811b73888f5e6ca80ae03143bf","model":"gpt-5.5","provider":"openai","segment_id":"debug.modelsSubtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Catalog from models.list.","text_hash":"2c7b4707e3fc276fcce56d3635eb6e120ac440d5c23ac613b1b3f882165c72fe","tgt_lang":"ru","translated":"Каталог из models.list.","updated_at":"2026-06-26T21:39:17.817Z"} {"cache_key":"18b6e560410e70f18c416d1cd0e1147df8d6c2d2002185106b641ae84f4e02f8","model":"gpt-5.5","provider":"openai","segment_id":"usage.scope.familyHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Roll up known rotated transcript-backed session ids.","text_hash":"14ca28df8e7b2cf85b184d8954fefb0b2945e3a908a945af7d2e8bf664cb4c7e","tgt_lang":"ru","translated":"Свернуть известные идентификаторы сеансов, подкрепленные ротированными транскриптами.","updated_at":"2026-06-26T21:40:59.486Z"} @@ -196,9 +205,11 @@ {"cache_key":"1b54dc1444e7224c55d904c830d2d53ae9a512d7fc5cea69219921c02869f4a5","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"ru","translated":"О себе","updated_at":"2026-06-26T21:38:40.558Z"} {"cache_key":"1b7285f4f44ddfb7d59b7c74ce373a27003573af53f9005475248fa7a83550e4","model":"gpt-5.5","provider":"openai","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"ru","translated":"Выполняется","updated_at":"2026-06-26T21:39:50.999Z"} {"cache_key":"1bea0006e8ff48b6e8c2dd6ff9f1c0c4ba930a23636e3649be9f66788e22a986","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.cacheHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Cache hit rate = cache read / (input + cache read + cache write). Higher is better.","text_hash":"f27052f7e631b9a9897b95074717bca434b3de90e0e469526cfab6695e6ef339","tgt_lang":"ru","translated":"Доля попаданий в кеш = чтение из кеша / (ввод + чтение из кеша + запись в кеш). Чем выше, тем лучше.","updated_at":"2026-06-26T21:41:16.423Z"} +{"cache_key":"1c1b96cf789d829f215d7ce7c1ddfdec7829ad9eea796dd8891cfc9bfbb8f6a8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"ru","translated":"Установлен {name}. Для применения изменения требуется перезапуск Gateway.","updated_at":"2026-07-10T02:30:00.008Z"} {"cache_key":"1c2ab269873ac17858cb987abca957a236ee43bc1883cb2849af6113b2433896","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.scene.repairCache","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Repair Dream Cache","text_hash":"137618c99bf41b88cb335b627d02c1ad61336cfd9a4c4575c53893b167053d0a","tgt_lang":"ru","translated":"Восстановить кэш Dream","updated_at":"2026-06-26T21:40:41.209Z"} {"cache_key":"1c3173b63ed41c6ce311f6bc1f02bee481655c467c26c22cdae36d36ac58b1c7","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.all","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"ru","translated":"Все","updated_at":"2026-06-26T21:42:18.092Z"} {"cache_key":"1c45ac1a6df4d8f24b0371cd14b718e4964b70b83104dcd251621e748f4204fd","model":"gpt-5.5","provider":"openai","segment_id":"activity.empty","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No tool activity yet.","text_hash":"62ba1d3915f1b9030bc691af4f480bd7f5c0443a85a885b08d298e347db7cc59","tgt_lang":"ru","translated":"Активности инструментов пока нет.","updated_at":"2026-06-26T21:39:35.030Z"} +{"cache_key":"1c4bfe0dd4e9cbc9fdbc721045953cea6a7b40dd708aaddc10b07e71514253c8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"ru","translated":"Нет подходящих установленных плагинов","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"1c64e4ac4bc966877f13e1912953ec44f4de62231d794c04f44089f302d292ee","model":"gpt-5.5","provider":"openai","segment_id":"usage.daily.byType","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"By Type","text_hash":"26901eeda3b27dae03e02ed92d2af1757fefe9929a2cbaf8bc17e193256d1ba8","tgt_lang":"ru","translated":"По типу","updated_at":"2026-06-26T21:41:08.400Z"} {"cache_key":"1c86104ba60997594082c363b3feb4382c0988d888df02bd366ddcd5443d2ef2","model":"gpt-5.5","provider":"openai","segment_id":"activity.statusFilters","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Status filters","text_hash":"9bfa1c5a7d114a46d8ac9fd44cc0d11bfd837eb705927fbd4789ba2b01d30e06","tgt_lang":"ru","translated":"Фильтры статуса","updated_at":"2026-06-26T21:39:35.030Z"} {"cache_key":"1cc9a0d9f0abb4c4dc69d96c014833cbdaddb1910048c04772e32c278e5febbd","model":"gpt-5.5","provider":"openai","segment_id":"debug.security.runSuffix","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"for details.","text_hash":"c14ed31f0bdf407b54d5074863c6ac679b898c5123e7d0a89c9d016215894177","tgt_lang":"ru","translated":"для получения подробностей.","updated_at":"2026-06-26T21:39:17.817Z"} @@ -206,26 +217,30 @@ {"cache_key":"1cda5fb383a5ee0af796a613afe1bed3bc58b2c1ef0a0a538112974f24c4125b","model":"gpt-5.5","provider":"openai","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"ru","translated":"Сохранять комментарии после окончательного ответа","updated_at":"2026-07-02T14:31:15.336Z"} {"cache_key":"1d02503bccb559edb5b3c44795640ceeafc0c7d96387b188b2e1c5737a309a28","model":"gpt-5.5","provider":"openai","segment_id":"workboard.open","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Open","text_hash":"ed077f3d8125d60dca1979c7133601bd187d47c73ed9975028f677e49e709942","tgt_lang":"ru","translated":"Открыть","updated_at":"2026-06-26T21:39:54.162Z"} {"cache_key":"1dbc3875e2227281b200a0b63e2ba9bbe87ba8bd9644af0471f6564571b3b3dc","model":"gpt-5.5","provider":"openai","segment_id":"common.resources","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Resources","text_hash":"e89b30aa1dc30a6ad8c34610689bede83b3ef645a24c3a84a0990826687fb735","tgt_lang":"ru","translated":"Ресурсы","updated_at":"2026-06-26T21:38:30.975Z"} -{"cache_key":"1dbf497627accb5523c59ab782106b5679e5ba5783aea0c328c27ef01843145c","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"ru","translated":"{name} · первое посещение {date}","updated_at":"2026-07-10T04:20:49.464Z"} {"cache_key":"1deeff59af97bdcb8f6de9c7bde79e9fb3e42df4927da89485f41cabc2c1968a","model":"gpt-5.5","provider":"openai","segment_id":"overview.access.hideToken","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Hide token","text_hash":"ae132305cb4bfbfe5508d7a36a29a914ce321156b8b2e26d5cbddd29d033c713","tgt_lang":"ru","translated":"Скрыть токен","updated_at":"2026-06-26T21:40:14.690Z"} {"cache_key":"1e174705bc3d2efb9d11dc5b9bcb41f294712ef4b292b09dc0dccf28022882d0","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.days","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Days","text_hash":"e08c0aa8f558f39fa99077e92036cf7d2210fe88ffae4d3b30fd489d9ac99e02","tgt_lang":"ru","translated":"Дни","updated_at":"2026-06-26T21:42:31.568Z"} {"cache_key":"1e32d53923a0721fa1a2d4b2f2205b25abe48baba26337499f6117e149b45bce","model":"gpt-5.5","provider":"openai","segment_id":"nodes.binding.node","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"ru","translated":"Узел","updated_at":"2026-06-26T21:38:48.084Z"} {"cache_key":"1e62e51d33d894b09ec85ec3d082c3d1a36488c808dfcbb5e5b76967af649de6","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.insecure.stepLocalCompat","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"For local token-only compatibility, set gateway.controlUi.allowInsecureAuth: true.","text_hash":"027ab46d3c93ef0e616da424293e30c762ce6f1686dc7eda6d68536ed0aedf00","tgt_lang":"ru","translated":"Для локальной совместимости только с токеном задайте gateway.controlUi.allowInsecureAuth: true.","updated_at":"2026-06-26T21:41:46.401Z"} {"cache_key":"1e68fed014cc5ebfffe5bf88cdba005dbf601c1755d7383faafd08d0f61dbaff","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.consolidatingMemories","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"consolidating memories…","text_hash":"89baaaae1f0e1ad3d02d40be2987273190f86bf34e8a27dd35c8e7faa76e2841","tgt_lang":"ru","translated":"консолидация воспоминаний…","updated_at":"2026-06-26T21:40:53.979Z"} +{"cache_key":"1e6f22299b47b927f23f41b18812b95e8637c81b856fd94db0f7fe014e4a7a27","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"ru","translated":"Включить {name}","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"1e713a6c569556d3dc2d5357667c22631af47b06e3335f310403339ab08ac640","model":"gpt-5.5","provider":"openai","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"ru","translated":"Агент по умолчанию","updated_at":"2026-06-26T21:39:50.999Z"} {"cache_key":"1e715934745d11fd632e21c0717923347652b48548fcb35797a71aae95fd398d","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.runAt","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Run at","text_hash":"4b4c31294fb5b71b1b7b022c0fcc15a8295e19ecf0788db48cdeeab0d5623433","tgt_lang":"ru","translated":"Запуск в","updated_at":"2026-06-26T21:42:31.568Z"} {"cache_key":"1e72889c666479f36ecdd241a629e3e04933e53b7a06f459d07c155b94905a8a","model":"gpt-5.5","provider":"openai","segment_id":"tabs.workboard","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Workboard","text_hash":"48d4659e64e383e94d3bc3badcf8e6e8c162ada4e5254958994531748fd7ab3b","tgt_lang":"ru","translated":"Рабочая доска","updated_at":"2026-06-26T21:39:23.906Z"} {"cache_key":"1e8f5128721349b374ab8bdaea1162717f3797d66e5b6e470b2716136a869124","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.selectedJob","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Selected job","text_hash":"e8262f191cf46042f768de21dc32acfec69dea069022bb4a6ad55f62752556f8","tgt_lang":"ru","translated":"Выбранное задание","updated_at":"2026-06-26T21:42:21.706Z"} {"cache_key":"1e9bcbf8c1e530098bc8fb02044934b03ba6245c21a4efd164d1f1f5ca874f76","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.whenHeading","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"When should it run?","text_hash":"272d37d4ef0408390f6b30ab3362cb5a85990c228cd26a176d5b7b3c337463b4","tgt_lang":"ru","translated":"Когда запускать?","updated_at":"2026-06-26T21:42:14.996Z"} +{"cache_key":"1ea35c7e08130df3d7faea8a1ca4fb1dd0fefd64341c7c0cc99d8e415ed533b4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"ru","translated":"Поиск в ClawHub","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"1ea4e4c98d8490da1ed50b7986dd9378c6776e2d9afa402f39f30c936a9674ca","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.noErrorData","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No error data","text_hash":"bcd5ab2cea9c09c2f1d333e8b7b27e1fbef2447b8c4f7955ac0c0fcc6879f617","tgt_lang":"ru","translated":"Нет данных об ошибках","updated_at":"2026-06-26T21:41:20.199Z"} {"cache_key":"1ea99739cd4b6534cdb37909e5adb55d2b755f3f5e541e62b516697a8095f03c","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.timeZoneUtc","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"UTC","text_hash":"7e5f76c94a635c217e282f79db4fc7ee4bfd9b64044166714067602cc4be620c","tgt_lang":"ru","translated":"UTC","updated_at":"2026-06-26T21:40:59.486Z"} {"cache_key":"1ecaf41cfa91c939fb621ad0a2b52d06bf32b5fb14d0cae428f36b0112b0ebc2","model":"gpt-5.5","provider":"openai","segment_id":"usage.export.label","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Export","text_hash":"3664895579f0a7e68c4aa09c91316e20239bc74499010e6423ece40cad7c28f7","tgt_lang":"ru","translated":"Экспорт","updated_at":"2026-06-26T21:41:03.285Z"} +{"cache_key":"1f247186bc0750eede97e48ab07679629b2f8f8d4ca7f2961e6dd4f96db39ea2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"ru","translated":"Добавлен {name}. Выполните аутентификацию с помощью «{command}», затем перезапустите gateway.","updated_at":"2026-07-10T02:29:49.002Z"} +{"cache_key":"1f28213b3c068a85cf73f31cb838dbbbb9c728c3a344f2a18063ad0324514c31","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"ru","translated":"Другое","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"1f36a965846ac39a482536d8da7ce273e75c0167b7457fdc61acf84902dc433b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"ru","translated":"Сохранён","updated_at":"2026-07-09T10:01:43.745Z"} {"cache_key":"1f3798eba3d69110584494d5d01575c24a6bae98e33b3bbce152eb9f2a0caebc","model":"gpt-5.5","provider":"openai","segment_id":"tabs.logs","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Logs","text_hash":"ea2100dc89ae9fe21fa9b08ab1bf18662dca1e53a3eebd7d03afebcaf5d57515","tgt_lang":"ru","translated":"Журналы","updated_at":"2026-06-26T21:39:27.659Z"} {"cache_key":"1f3c635a97f34a2a82bce6d5467bf3a71d985d5216681fa0a4287d60381595b7","model":"gpt-5.5","provider":"openai","segment_id":"agents.channels.enabledCount","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} enabled","text_hash":"06657a73495329606edc6995665febd5d3a88548251b1a7c9d6f21a507aaf3d2","tgt_lang":"ru","translated":"включено: {count}","updated_at":"2026-06-26T21:39:07.415Z"} {"cache_key":"1f4ca816cc573f277af2e699c7569891cd47ad14d02243086b4d95d2fd686012","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.header.refresh","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"ru","translated":"Обновить","updated_at":"2026-06-26T21:40:37.573Z"} {"cache_key":"1f65d72258921e28d0dd46d468548f629456e13b58a2f7043c79aac11f0585bd","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventSpecified","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Specified","text_hash":"5a67e2985706e8d4172ebbac55b0fcc3ad1aa5668820341070e28a444a0e7926","tgt_lang":"ru","translated":"Уточнено","updated_at":"2026-06-26T21:40:10.976Z"} {"cache_key":"1fa487ce58892b4c969f6ab05e407ef2c1b35e792f90887a6ca97bbe67a2d77f","model":"gpt-5.5","provider":"openai","segment_id":"common.configured","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Configured","text_hash":"84aebc69a1bf739a343be9c66edfd3160f77220ea69789a8147dd4ae261fd188","tgt_lang":"ru","translated":"Настроено","updated_at":"2026-06-26T21:38:28.190Z"} +{"cache_key":"1fb9a1bab7769033136e3b32d3913bdd4e218eb560386048dee068d2c8299b05","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"ru","translated":"Имя","updated_at":"2026-06-26T21:38:40.558Z"} {"cache_key":"1fea337ac2053b9f13dd5af1743086e270be1eccc9307adb4756255a91616b0f","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCallsToggle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Toggle tool calls and tool results","text_hash":"3f0b9d1bac10f5a440a582bc49b27c3a912dbd72fb09b4afdc8c8460f53efa89","tgt_lang":"ru","translated":"Показать или скрыть вызовы инструментов и их результаты","updated_at":"2026-06-26T21:41:50.917Z"} {"cache_key":"203ddd682c47f8258c3d3755af3a76a8ef837717367f95bf4a06f7ba9e559a79","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"ru","translated":"На этой неделе","updated_at":"2026-07-05T14:40:26.836Z"} {"cache_key":"207ab4674076133937011dcf71291063bd978323ac35b92dd1f878a37e0abc95","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.selectAllOnPage","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Select all on page","text_hash":"f47f99dde01bd07bd800879220c76522d006ac17a7fdd02ac92191f72b419a7f","tgt_lang":"ru","translated":"Выбрать все на странице","updated_at":"2026-06-26T21:38:51.115Z"} @@ -247,17 +262,21 @@ {"cache_key":"232b8750a9d5842813daf84e9c8832a9a08730bdfa989e466177c53e070a0100","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.assistant","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"assistant","text_hash":"a39a7ffad4a3013f29da97b84f264337f234c1cf9b3c40c7c30c677a8a18609a","tgt_lang":"ru","translated":"ассистент","updated_at":"2026-06-26T21:41:12.411Z"} {"cache_key":"234f06f04e4a051173221a677abb9c2be89878b168f2466ca3bd7442211ea73f","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.categories.navigation","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Navigation","text_hash":"3db65f8c2a7d1861b4bca37da3adec5aa7905931eb6faddbc595a35f75e6ca40","tgt_lang":"ru","translated":"Навигация","updated_at":"2026-06-26T21:40:31.548Z"} {"cache_key":"2378a0744fba71e7de4281eecfe1d6843115cf86c7b0bb62ba9d0e0f0af5b741","model":"gpt-5.5","provider":"openai","segment_id":"usage.cacheStatus.status.refreshing","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"refreshing","text_hash":"0b61ac5d9426518ad7908a62037255c6881f9a5fa404ef3b99c24baa2111a174","tgt_lang":"ru","translated":"обновляется","updated_at":"2026-06-26T21:41:03.285Z"} +{"cache_key":"23848d81a74f717d9065d5912446d773285be85ffc30d98b9da901a162d1b332","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"ru","translated":"Поиск плагинов","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"23cc5835e9eea4e9b9862897c7431cd3674496dfdb073967b6617b583b80a7f1","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.nip05Help","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Verifiable identifier (e.g., you@domain.com)","text_hash":"621809d0907c8a18fa79d4d21f7d41bed3ddccb2a2dd5cd134957ef4e7b3f0f3","tgt_lang":"ru","translated":"Проверяемый идентификатор (например, you@domain.com)","updated_at":"2026-06-26T21:38:44.774Z"} {"cache_key":"23e5d424bb4724e9d349334dff3ed263db14b456a26a4ebb2e6f9c99d6fc3f6a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.status.review","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"ru","translated":"На проверке","updated_at":"2026-06-26T21:39:43.912Z"} {"cache_key":"241404bd42fbeb68c9e51d121b8380cf4283c1af48a9d5b86bd8434fe7d9ef4e","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.description","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Review what came from the daily log, what is waiting for promotion, and what was promoted recently.","text_hash":"2e7bad7c9bd052bb3a5c0bb3c9a5f59cb202ec91db37f4f547926689ff37bf12","tgt_lang":"ru","translated":"Просмотрите, что поступило из ежедневного журнала, что ожидает повышения и что было недавно повышено.","updated_at":"2026-06-26T21:40:44.743Z"} +{"cache_key":"24335ef9372d9339bbdf735fd507d414e14ae785ff584f29de26e2e7ec2f2ae4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"ru","translated":"MCP-сервер «{name}» не найден в конфигурации.","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"2440f0c8148436c60dc9dba04a3586c839f6880bc0c52059549dc2a939dbd6b8","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.avgTokensHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Average tokens per message in this range.","text_hash":"bbd6264e7d1f78cedb1fa94a36a3cc55900f5f9c4c63171482b3c3ceb6898bdf","tgt_lang":"ru","translated":"Среднее число токенов на сообщение за этот период.","updated_at":"2026-06-26T21:41:12.411Z"} {"cache_key":"2450a1199c9b12165d9c74d649127d352ca83be0e3fbea01cb51033290fbfd03","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.deliveryNotRequested","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Not requested","text_hash":"2bb186b55caf8791978bf5137df84ff6bf7e8110db38db6c85c1485679e8e679","tgt_lang":"ru","translated":"Не запрошено","updated_at":"2026-06-26T21:42:24.729Z"} {"cache_key":"24e02743651f69a6b0d657c5192c2c369a2256021c5a6e2547e8c5517ba9519e","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.payloadKind","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"What should run?","text_hash":"f423c2d1d8d13f8f14f4da2f04d0e6182664f363edabbaddba2e82bc735989b1","tgt_lang":"ru","translated":"Что нужно запустить?","updated_at":"2026-06-26T21:42:36.583Z"} {"cache_key":"24e9ffec735913cff8accea6118ed75ac216941637a4fcab938e7b2339e76f29","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.diary.newer","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Newer","text_hash":"718c45696575a3aae41c3701a734767de3f3d1d7658c292804a6e3e90b1ce3a5","tgt_lang":"ru","translated":"Новее","updated_at":"2026-06-26T21:40:53.979Z"} {"cache_key":"24fcc37d7ce65fda32561906e0de73a2bf421c75d7624f33ca61d3c148d8be3d","model":"gpt-5.5","provider":"openai","segment_id":"lazyView.unknownError","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Unknown module load error.","text_hash":"aac7340f2785adb609e98dd446aa05dff6d6a839e94c666cf3663aaab9ec75da","tgt_lang":"ru","translated":"Неизвестная ошибка загрузки модуля.","updated_at":"2026-06-26T21:38:44.774Z"} +{"cache_key":"252630e8573aa7b4bfae93eb5149c97d2ea71817fadc51db5b3f97659572b542","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"ru","translated":"Сообщается активным подключением Gateway; отдельно от этой сборки Control UI.","updated_at":"2026-07-10T09:47:55.878Z"} {"cache_key":"25630bb8980cb45384cbf022e9ffc78f967661e715e5cf3ade7721badcdbd6a6","model":"gpt-5.5","provider":"openai","segment_id":"overview.pairing.roleUpgradeTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Role upgrade pending approval.","text_hash":"358d4d3574c1351dc700fe71baca6dfec0b95cd935b9db716db31855aa6e3a2d","tgt_lang":"ru","translated":"Повышение роли ожидает подтверждения.","updated_at":"2026-06-26T21:40:23.750Z"} {"cache_key":"2572209c8cdaa321de9a17160770711a103b7573ed59bebc26c272508936070d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteSelected","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Delete","text_hash":"e2d0a54968ead24efc0dffa6ac78fc606dceec34a0f586177a74a54cc2272cf8","tgt_lang":"ru","translated":"Удалить","updated_at":"2026-06-26T21:38:51.115Z"} {"cache_key":"257c6e69459252cd6203699fbdde127de9e0efd505754c77ef0f62ce31008d51","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.weavingShortTerm","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"weaving short-term into long-term…","text_hash":"1d64d672d34876489dc3885e05677abcae21d06bfa1d25ed87001721e441bd12","tgt_lang":"ru","translated":"вплетение краткосрочного в долгосрочное…","updated_at":"2026-06-26T21:40:53.979Z"} +{"cache_key":"2581bfb27b2815e067dc48766fbb0be99e3a5cba21dd3ea69849c0f386ca8061","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"ru","translated":"Подготовка поиска…","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"25a5a2f15d85681b89c918d13a2867d4051b411e94a3c92bf27ba9b1f864f0b0","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"ru","translated":"Русский (русский)","updated_at":"2026-06-26T21:42:10.945Z"} {"cache_key":"25b6ebe87e7b07bd63323b369deb2b58632012677605eb8574eff9f824d8c134","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.summaryPromotedToday","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"promoted today","text_hash":"8efdaa0adb35180ec6d4361185f120b82608be44294fde1f1597dfc8614cca0d","tgt_lang":"ru","translated":"повышено сегодня","updated_at":"2026-06-26T21:40:44.743Z"} {"cache_key":"25c2dccbe3fff276e6ca3965bee5cffae54e2be34d58c9da1c514da786e50e4e","model":"gpt-5.5","provider":"openai","segment_id":"agentTools.connected","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"ru","translated":"Подключено","updated_at":"2026-06-26T21:39:20.621Z"} @@ -265,10 +284,10 @@ {"cache_key":"25f4d5b9147d754bf27e03f927cbc3de41d441a4ebc518c777c39c161642d161","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"ru","translated":"Системная","updated_at":"2026-06-26T21:38:28.190Z"} {"cache_key":"2654514896fbc959fa25f2fc7bf1f08f0a259478f9be46ef8ea85ae10094bba7","model":"gpt-5.5","provider":"openai","segment_id":"workboard.enableConfigKey","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"plugins.entries.workboard.enabled = true","text_hash":"a518af5219772b9cbcbf63f90c12c6e048059e4e5b23a97e9785b36850a77022","tgt_lang":"ru","translated":"plugins.entries.workboard.enabled = true","updated_at":"2026-06-26T21:39:38.402Z"} {"cache_key":"26a0b03ef61d526692b7d348729af889b6d0f8462654cb169c9f8c1e039d81ce","model":"gpt-5.5","provider":"openai","segment_id":"common.loading","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"ru","translated":"Загрузка…","updated_at":"2026-06-26T21:38:25.777Z"} +{"cache_key":"26c034498dbd5011dfb60b28fa4e00743ee558b43c8138011087d21cc705257d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"ru","translated":"Добавить сервер","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"26d66f7f5480fa9956ea90febc25038c4de2d0296a4050828e9ccdeacd75b399","model":"gpt-5.5","provider":"openai","segment_id":"chat.selectors.clearSessionSearch","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Clear session search","text_hash":"7296bfd468e09713dd4b227ab939243e32ddcbcd7b43d8e1ea78ca79f9c60501","tgt_lang":"ru","translated":"Очистить поиск сеансов","updated_at":"2026-06-26T21:41:59.944Z"} {"cache_key":"26f25d2c2de32ea783eab5fa5bc89fea58855cac4335c3b1774fe6ec285253a1","model":"gpt-5.5","provider":"openai","segment_id":"debug.eventLogSubtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Latest gateway events.","text_hash":"63071744ecff54af0513ce3ae8ea96867199cf8b02545374f29f87826a7a72ae","tgt_lang":"ru","translated":"Последние события шлюза.","updated_at":"2026-06-26T21:39:17.817Z"} {"cache_key":"272e293cc4e9b21112798baead6f3dddd7fd6eb58591f731edb90ed647aa37d5","model":"gpt-5.5","provider":"openai","segment_id":"common.next","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Next","text_hash":"1ff57a29d7c9d11bdf61c1b80f2b289b44c1ea844824d4b94a0d52b6ba5fc858","tgt_lang":"ru","translated":"Далее","updated_at":"2026-06-26T21:38:25.777Z"} -{"cache_key":"2743ee6f724500ffb84b04cad95e16b61ed6e66960982673735f664dfc0522fd","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"ru","translated":"Закрепить справа","updated_at":"2026-07-10T06:08:53.986Z"} {"cache_key":"2774139cea7fee0d6d943e7fd996e837cbd0acdac96e8c02089d4b9d31b395a4","model":"gpt-5.5","provider":"openai","segment_id":"overview.notes.sessionTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Session hygiene","text_hash":"740c0d8be2bed11d0a81dbf15a19f5cf26b9fd9b36e5d53492eeaedf44220473","tgt_lang":"ru","translated":"Гигиена сеансов","updated_at":"2026-06-26T21:40:23.750Z"} {"cache_key":"278f47893f67f2a200a1fc7de71805efa26ae92569ec30117e9906f4721fcbd0","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"ru","translated":"Использование контекста сеанса: {used} из {limit} ({pct}%)","updated_at":"2026-07-05T10:16:37.975Z"} {"cache_key":"27c09cf602d75d2ab3d40ab1acfa5490b1871dcd3b064a47f50f16376cea35df","model":"gpt-5.5","provider":"openai","segment_id":"common.disabled","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"ru","translated":"Отключено","updated_at":"2026-06-26T21:38:28.190Z"} @@ -293,6 +312,7 @@ {"cache_key":"2a14fecea485f09bc6c368ca4648a688e11fc16cc1d79fabefe5756d9c0c7dc5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.noSessions","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No sessions found.","text_hash":"e5ceb296fb28c05c8969bc29d1cf4ba599004612c035868a2ad2bb7ff3d223f2","tgt_lang":"ru","translated":"Сеансы не найдены.","updated_at":"2026-06-26T21:38:54.164Z"} {"cache_key":"2a43538c2e179a1da995c9b6a1555a947a3d7a0ef82760a746ab722f102568fd","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.descriptions.shellCommand","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Run shell","text_hash":"154bfb96f42aa0efee3099944c7f98497cdb0a90e8f77fefa9ccecad51c20ff5","tgt_lang":"ru","translated":"Запустить shell","updated_at":"2026-06-26T21:40:37.573Z"} {"cache_key":"2a4499092970ecc4ee43e0a809975d318742f0f2ca83d1bd638942c0ff37933b","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.pairing.stepApprove","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Approve the pending browser/device request from that list.","text_hash":"d1a4ba76c4f75efa957637632b5a0155d593ed02a3696002cab59d7ec94e933d","tgt_lang":"ru","translated":"Подтвердите ожидающий запрос браузера/устройства из этого списка.","updated_at":"2026-06-26T21:41:40.878Z"} +{"cache_key":"2a5ad569e805e78857f3b83127f40fe72759db958256346ce39a2130c09e48af","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"ru","translated":"URL или команда","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"2a8c336322af9779f633f3501806b4e6675a44b30dcce35cf675efd3ddd65d06","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobState.last","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Last","text_hash":"eb970eb0951c6cdeac1ec0cc723fc91e30b0c26ee6f3b5ee0e574db7f487dc55","tgt_lang":"ru","translated":"Последний","updated_at":"2026-06-26T21:42:47.554Z"} {"cache_key":"2ab109ffd4f489b2a4f9a7e25470f957417ed16b1e780dbfbaa3184bcf44345f","model":"gpt-5.5","provider":"openai","segment_id":"overview.access.hidePassword","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Hide password","text_hash":"a60a56c584b3b05b1a95076a36edbab7131a447910cf21124efcb35f769502df","tgt_lang":"ru","translated":"Скрыть пароль","updated_at":"2026-06-26T21:40:18.156Z"} {"cache_key":"2ab37706b4fee614811d369596bae227e662279b86cf685f3cfd5915aa274c05","model":"gpt-5.5","provider":"openai","segment_id":"activity.status.error","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Error","text_hash":"54a0e8c17ebb21a11f8a25b8042786ef7efe52441e6cc87e92c67e0c4c0c6e78","tgt_lang":"ru","translated":"Ошибка","updated_at":"2026-06-26T21:39:35.030Z"} @@ -300,6 +320,7 @@ {"cache_key":"2ad9004bff7cc2958cb2371c7a004dc4305a3d2afe9fc19489eed7a5e8cc9678","model":"gpt-5.5","provider":"openai","segment_id":"usage.empty.featureTimeline","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Timeline drilldown","text_hash":"f02787b793baa84fe08d54066fbe5cf694a7bfd5c3d5fbe4216e50f14d771db4","tgt_lang":"ru","translated":"Детализация по временной шкале","updated_at":"2026-06-26T21:41:08.400Z"} {"cache_key":"2b2f00119c4adf8d137049d22b88ff4c91f1dc80da4d37968a129dc0737d858a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"ru","translated":"5 с","updated_at":"2026-06-26T21:39:57.757Z"} {"cache_key":"2b354cf48d6ac71d2ea00828bc884536c352e0228622669ace5c27b46191b262","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.executionSub","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Choose when to wake, and what this job should do.","text_hash":"9869059549e542582d729fa6b7b84eb6f4d0eccee80f734646a44d443b945267","tgt_lang":"ru","translated":"Выберите, когда активироваться и что должно делать это задание.","updated_at":"2026-06-26T21:42:31.568Z"} +{"cache_key":"2b5feae5c0733cf5bf3b8e9fec1304df091fb268f2c4d900c4e89a388ae263ec","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"ru","translated":"Проверенный источник","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"2b7a26b68d3cb6505ad766504a1f82fc80f8201fe55cebc458b8749d2020e1e0","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.whatHeading","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"What should it do?","text_hash":"1970bec54875f6bdd238a7b9e2889e98fb652edab85498a790d73c937e6cdb76","tgt_lang":"ru","translated":"Что должно быть сделано?","updated_at":"2026-06-26T21:42:14.996Z"} {"cache_key":"2c294f76a43e9f1ca8c0c6c9098d8c764e1168b819a9500fc5c086758b584d8f","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"ru","translated":"Сводка: {summary}","updated_at":"2026-06-26T21:39:47.132Z"} {"cache_key":"2c40ee7f14515e9e2f6dbc48d34bd52931712a55820620578a49101ac00a6c71","model":"gpt-5.5","provider":"openai","segment_id":"agents.channels.noAccounts","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"no accounts","text_hash":"11397ad5e7303cdd127ac98987b3c52e35c06a11428c6e7503a128dd96749dbd","tgt_lang":"ru","translated":"нет аккаунтов","updated_at":"2026-06-26T21:39:07.415Z"} @@ -342,15 +363,19 @@ {"cache_key":"30b43a37b6cbdf554b0737ef5cbf576b1b0e384e6d752bd312a0da3b33a8f7d0","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.docsPairing","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Device pairing docs","text_hash":"cdc78ca3a99762d6554c3486eba07c4a61044a14b43ab4a8072e312be6e0c7fa","tgt_lang":"ru","translated":"Документация по сопряжению устройства","updated_at":"2026-06-26T21:41:35.342Z"} {"cache_key":"30e7a1fa2999c418748f7c58651be5af5f47dc3cd8a5fc3286a25ec267749418","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.channelHelp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Choose which connected channel receives the summary.","text_hash":"65cb19d00d3ec2d597fac1e50da8d7926ca53a992b154d8e6b39aeacb632d1e4","tgt_lang":"ru","translated":"Выберите, какой подключенный канал получит сводку.","updated_at":"2026-06-26T21:42:41.136Z"} {"cache_key":"31454a591945f62cad4c518631fa421788a97f163139a064bf1f2ed3485bb792","model":"gpt-5.5","provider":"openai","segment_id":"chat.autoScrollNearBottom","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Near bottom","text_hash":"7604174593e383c8bd86a8812a17bd33f09ab343fcc74cd3500e013b0e45af94","tgt_lang":"ru","translated":"Рядом с нижним краем","updated_at":"2026-06-26T21:41:50.917Z"} +{"cache_key":"3168f45b3bd688dd1d0b437ea032dbcd11b7b407870593f6a4f16c6f5ad2ce06","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"ru","translated":"Коммит","updated_at":"2026-07-10T09:47:55.878Z"} {"cache_key":"31ad54bec8f2417852fec07f8be6f2f023173f077ccf2c4eb4b9bb2e842e1530","model":"gpt-5.5","provider":"openai","segment_id":"common.showAdvanced","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Show Advanced","text_hash":"365075d1bf3ed18878ba0bb50360278b7eaa5973d32ed92fa1544238c09254cb","tgt_lang":"ru","translated":"Показать дополнительные параметры","updated_at":"2026-06-26T21:38:34.337Z"} {"cache_key":"31b5a85e182830c5b72631f0cd99faca58ad67e943c15e44a96fd41d19c307fe","model":"gpt-5.5","provider":"openai","segment_id":"debug.eventLogTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Event Log","text_hash":"ad46380cee0c03bd2d8f9c6d0d91b724118c796a9d9eb5f167fc8da4d7cfd2b7","tgt_lang":"ru","translated":"Журнал событий","updated_at":"2026-06-26T21:39:17.817Z"} {"cache_key":"321376e983562d238cd759254b532b36b8e34cf914f3583427e6cbb85ac37066","model":"gpt-5.5","provider":"openai","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"ru","translated":"{count} ч","updated_at":"2026-06-26T21:40:00.643Z"} {"cache_key":"3218ac57b46acc7c55ca47bd9e713dd3f48041e2815f2e741ddc1be81cc9ee17","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"ru","translated":"worker {state}","updated_at":"2026-06-26T21:40:03.947Z"} {"cache_key":"322541637dc1069cf72535c56486e4c4dacca2cf32434bcdfc0fdbc6f4d48199","model":"gpt-5.5","provider":"openai","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"ru","translated":"устарело","updated_at":"2026-06-26T21:39:57.757Z"} +{"cache_key":"3237ca2ac24f91e05d169c55e927b109dda4515d6482df29021560c5e904e2ef","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"ru","translated":"Фильтр установленных плагинов","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"3246cd8b34fb20c6de959c96ab72eab79a68531dc4cab73d94c187a8a7295039","model":"gpt-5.5","provider":"openai","segment_id":"chat.selectors.sessionSearch","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Search sessions","text_hash":"8cb650539ec84aa55fd784e9a51ef833b02f982392fa5c6bfd5b8de74e722543","tgt_lang":"ru","translated":"Поиск сеансов","updated_at":"2026-06-26T21:41:59.944Z"} +{"cache_key":"3252a481bc0a5b8fe472a359e89b838d66c78e25c168c1bc2ba9c110b9b2fe12","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"ru","translated":"Плагины","updated_at":"2026-07-10T02:30:00.008Z"} {"cache_key":"3255de0e6092286d8e929f9cd60913f43bafaf569058873ce6038f6eff487b47","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.no","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No","text_hash":"1ea442a134b2a184bd5d40104401f2a37fbc09ccf3f4bc9da161c6099be3691d","tgt_lang":"ru","translated":"Нет","updated_at":"2026-06-26T21:42:18.092Z"} {"cache_key":"32567cc6e47400508ad184657ff4a711d2a7830ab6ff2669e238b268e2075706","model":"gpt-5.5","provider":"openai","segment_id":"activity.argumentHiddenOne","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"1 argument hidden","text_hash":"a65df19fe3cd1dbb63226383836c9b3ff51643d36bad897d75ad58990dd09dc7","tgt_lang":"ru","translated":"1 аргумент скрыт","updated_at":"2026-06-26T21:39:35.030Z"} {"cache_key":"3258eaa06f7c4540b9fb39bbcf94a69069b77e52ca341acd277778c5c93dd882","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.status","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"ru","translated":"Статус","updated_at":"2026-06-26T21:42:24.729Z"} +{"cache_key":"325dcc97d01c544d770b45c9e67b84f6c58099738dbd58ecd7c778f22fce38eb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"ru","translated":"ClawHub","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"327a8dec4825af4fc719295e89441af0a7ede992d5a4df321221de1f63678fcf","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.staggerWindow","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Stagger window","text_hash":"4590b8c872baf94543c2b50f3be2c8b4b0350919c944fc98e73d6f4a22f6bc18","tgt_lang":"ru","translated":"Окно разброса","updated_at":"2026-06-26T21:42:41.136Z"} {"cache_key":"3281c90f3f29da77b7ddc71f3f0c2e638077574fca74b2bd13e36fc90a342d6f","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.noUsageData","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No usage data for this session.","text_hash":"0d7e8a36956a3962062b10bbb0b251514111f2bdc4ec943693f48f768043c6ca","tgt_lang":"ru","translated":"Нет данных об использовании для этого сеанса.","updated_at":"2026-06-26T21:41:23.762Z"} {"cache_key":"328810f5fb267dd4dbc3c0bf3e1a9c75c96ba58ecb94ab43080f21c70a571ee1","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.session","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"ru","translated":"Сеанс","updated_at":"2026-06-26T21:40:59.486Z"} @@ -361,12 +386,15 @@ {"cache_key":"32de7c3ef791b85d7773bb2f3a5755cb3250ea03604ffb2b37d16bd548d66678","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Dispatch ready work","text_hash":"f4a54d476bfb750860c6833343fe56791d68ada0bfbc514e5db9b1c3aeb48994","tgt_lang":"ru","translated":"Распределить готовую работу","updated_at":"2026-06-26T21:39:57.757Z"} {"cache_key":"32ef70c862de46a1eaec01f93d726a51746bec65a4e34ed0732e88003f88c349","model":"gpt-5.5","provider":"openai","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"ru","translated":"заблокировано","updated_at":"2026-06-26T21:39:57.757Z"} {"cache_key":"33038cf4133c96864f050bbc124f47c673e671d910389b3478c789965e16639f","model":"gpt-5.5","provider":"openai","segment_id":"usage.metrics.cost","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Cost","text_hash":"204a5eb2cd28bcfdf3be9f8c765948e9e831609e3c57048cdbd6b8a94cf49126","tgt_lang":"ru","translated":"Стоимость","updated_at":"2026-06-26T21:40:56.975Z"} +{"cache_key":"33346f2ab6ccc883f80b48b04db1c5af1677911bf193c2489ba10b75555d9172","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"ru","translated":"Просмотреть сведения","updated_at":"2026-06-26T21:39:43.912Z"} {"cache_key":"3350a19a8b8516f25992d66ca5d922c51ebd92262863f7e71e90163a27397ab4","model":"gpt-5.5","provider":"openai","segment_id":"common.running","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"ru","translated":"Запущено","updated_at":"2026-06-26T21:38:28.190Z"} {"cache_key":"335609797b6fa64e97f0f497f9c274c23779abf8c2a95b5f5e33e1be8c99f804","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"ru","translated":"Отсутствует","updated_at":"2026-06-26T21:39:54.162Z"} {"cache_key":"33a950fde9690859bedf882a5b36675b4ea601bb9f3b5ce3d0f764006ca021ad","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"ru","translated":"Канал","updated_at":"2026-06-26T21:41:03.285Z"} {"cache_key":"33b3115332b7b0348309ce05e48724671a653868df2165bb20ab1a89fc5ccb02","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"ru","translated":"В архиве","updated_at":"2026-06-26T21:39:01.088Z"} +{"cache_key":"33edaa1c19349c9e2309fe61dc0a5f0db6c72ec18f0fbd7ca72ca7c9fe5c528c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"ru","translated":"Добавить","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"33f7c5ed8e1331008cb91d6b658a946cdc6c56e297eb40ff08a8f44384095a15","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.thinking","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Thinking","text_hash":"a20d12c5e9c428c398b9d25e4dded1d6d3e599184e38b4d37bcb9d2d595ff8f7","tgt_lang":"ru","translated":"Размышление","updated_at":"2026-06-26T21:38:54.164Z"} {"cache_key":"343b6426ea862d81f24afb41ecf8db6142cb12b73a5179f8b5dbde5ec4f1f814","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeTaskLinked","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"task linked","text_hash":"fc7de1e7d6661196a29adcb9b7fa2f8aabf60bd1c6c72cb03223b3342df03e91","tgt_lang":"ru","translated":"задача связана","updated_at":"2026-06-26T21:40:03.947Z"} +{"cache_key":"3446bdd06cc56ab80c84a49685478482d9ca681f1d0171c8e1d64b567ebe82f0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"ru","translated":"{name} добавлен. Новые сеансы агента могут использовать его сразу.","updated_at":"2026-07-10T05:22:49.195Z"} {"cache_key":"346e57d995e536eb7d599eb2271d196f3f71fa060efe6c02766e577b24cd15a8","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.cumulative","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Cumulative","text_hash":"cecf2aade089366e0a1d7c3dfc5acb40de8bb0d84c71b890d96da2f2de96c152","tgt_lang":"ru","translated":"Накопительно","updated_at":"2026-06-26T21:41:23.762Z"} {"cache_key":"34d72373e9b9502f861fdb4c6ac9be5178894ca4aa0e2bf460e382723ff189ff","model":"gpt-5.5","provider":"openai","segment_id":"workboard.taskStatus.queued","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Task queued","text_hash":"1f81e55472b4a703f158d6aee85b835df71ba944c7b7362dde55abf2691db4b6","tgt_lang":"ru","translated":"Задача в очереди","updated_at":"2026-06-26T21:40:07.529Z"} {"cache_key":"34e0bead544b70dfafeb59f125756a798adb39bb56a8d05b386f8e15bb50a2ad","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"ru","translated":"Свернуть рабочую область сеанса","updated_at":"2026-06-26T21:42:03.305Z"} @@ -374,6 +402,7 @@ {"cache_key":"34fb9c1f37f765c4db784ae053c1dfb20d079ebf30a138ce05721ae7cee6f748","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.usageOverTime","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Usage Over Time","text_hash":"c58fed4f5cb59cb8475b85914c1c7c8aed2321506c24303467a59cb44eaabe03","tgt_lang":"ru","translated":"Использование с течением времени","updated_at":"2026-06-26T21:41:23.762Z"} {"cache_key":"3569ef2bfc7e434d776e3283ee38acf5ea1c97987bec291d30ab2c632871a8f8","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.wakeMode","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Wake mode","text_hash":"0cdf77cce3335e6f2107f1f1fee1e34d7b105fd90a5b78e15f1a297dd4f89256","tgt_lang":"ru","translated":"Режим активации","updated_at":"2026-06-26T21:42:31.568Z"} {"cache_key":"356bf86286155680b307dde76fe5ca1463905ba2880665abb36083644be924ce","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.connectingDots","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"connecting distant dots…","text_hash":"167c47f1f6e5d7399326f6a72572cef9ab8cf655c4e17f4bf250e25f76478812","tgt_lang":"ru","translated":"соединение отдаленных точек…","updated_at":"2026-06-26T21:40:53.979Z"} +{"cache_key":"35759444bc2e39db93e4b1c7a47e1a98ec9b8b04858bd9cdef38af0855e737e8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"ru","translated":"Рекомендуемые","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"3605ec9744809d36e432848c7dba28f9d5e59f17b2b3ad9f8f0660506a3930a5","model":"gpt-5.5","provider":"openai","segment_id":"agents.cronPanel.schedulerSubtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Gateway cron status.","text_hash":"f56600509094c3eb8014ac7811bdebc67fd9c8332603859f4718ac6f6ea2f378","tgt_lang":"ru","translated":"Статус cron в шлюзе.","updated_at":"2026-06-26T21:39:07.415Z"} {"cache_key":"361b9a8a573ec94f60caf1e742cb70affa4345e43b864d23f130f8cd8fe06cb0","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.labels.agent","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"ru","translated":"Агент","updated_at":"2026-06-26T21:39:20.621Z"} {"cache_key":"362c3e76a6bf8f836798457e9951307711722bd40cbc11581b0c455f3054353b","model":"gpt-5.5","provider":"openai","segment_id":"workboard.editCard","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Edit card","text_hash":"42eb1e3f7227aa186300a05f687c27f0f44355ca75acfdeae3e25a01fa69f4d7","tgt_lang":"ru","translated":"Редактировать карточку","updated_at":"2026-06-26T21:39:43.912Z"} @@ -388,10 +417,10 @@ {"cache_key":"3771c2cbe08dfeef3f4667913fc3876564b4ba1486ec3ab87d7aae2f364f6036","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.alphabetizingSubconscious","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"alphabetizing the subconscious…","text_hash":"689b32ed4cd0e3bdcad19116d447ea1eb8fdede1ba47d39a21750b3fc3ecf71f","tgt_lang":"ru","translated":"сортировка подсознания по алфавиту…","updated_at":"2026-06-26T21:40:53.979Z"} {"cache_key":"378cf42f6a03a1ebea5d67a0e88b8f72f6fb30cdb9af59b260fba96477942e7a","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.noRecent","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No recent sessions","text_hash":"100ac08064a6d5867a400a56b2949f9de3f6da4602a99461ee3a300c20273c1b","tgt_lang":"ru","translated":"Нет недавних сеансов","updated_at":"2026-06-26T21:41:20.199Z"} {"cache_key":"3790e5f846a3b4be5765968d665fb165de8941e2b7bd30538dccfbe10f56e37c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.statusDone","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Done","text_hash":"11a6767d5674c7e45f7e00dc525762275b3a48491ad6045427d2609cc496c516","tgt_lang":"ru","translated":"Готово","updated_at":"2026-06-26T21:38:57.762Z"} +{"cache_key":"3792fdd9a43d1e33014f0941f9cffd571ca135090d73b72a9e94cfc91a3eac59","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"ru","translated":"Программирование и инфраструктура","updated_at":"2026-07-10T05:22:49.195Z"} {"cache_key":"37958e5a0374a1c7932ba498938bb55449f3647a628b24678dcf87757ab87eb7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"ru","translated":"Новая группа…","updated_at":"2026-07-05T14:40:26.836Z"} {"cache_key":"37c53936f414e237fae201cbc697a8c0eb0679e6573d3f8e41a8f699182f582e","model":"gpt-5.5","provider":"openai","segment_id":"workboard.hideArchived","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Hide archived cards","text_hash":"60c01f7b3b145b9c99ba3cf83900ef322102262cbb37d1267708dc2b83f2fc34","tgt_lang":"ru","translated":"Скрыть архивные карточки","updated_at":"2026-06-26T21:39:54.162Z"} {"cache_key":"37e8e7a3b5b867d82a7dd38f9e26dc67d7ebb70dcfeccde8ce1b2212277a301a","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"ru","translated":"Сводка рабочей области сеанса","updated_at":"2026-06-26T21:42:06.902Z"} -{"cache_key":"37e9f8a91ade9b8f3f043532230a28a431ba88e958ce311377af5c71d613bd16","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"ru","translated":"Показать файлы сеанса","updated_at":"2026-07-10T06:08:53.986Z"} {"cache_key":"38042183bd1f877a0d99dba61e552b0cfa50f7e349e874220d6076ea5c788ddf","model":"gpt-5.5","provider":"openai","segment_id":"overview.connection.step3","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Paste the WebSocket URL and token above, or open the tokenized URL directly.","text_hash":"9c978945315941b9182aa1d51e3465e2250e626234123299ff5fc59b7b01b0ab","tgt_lang":"ru","translated":"Вставьте WebSocket URL и токен выше или откройте URL с токеном напрямую.","updated_at":"2026-06-26T21:40:28.260Z"} {"cache_key":"38122e6c258c7702d3a9062d9622e83f12fccd7bad60217bd5bdb934f215b3de","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.network.summary","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"The browser could not complete the Gateway connection. Check the target and transport before retrying credentials.","text_hash":"4d45767ea8c0cc7151a3fdc17c3c5ebba667c028aff1af59a9b71f80ab471a66","tgt_lang":"ru","translated":"Браузер не смог завершить подключение к Gateway. Проверьте цель и транспорт перед повторной попыткой ввода учетных данных.","updated_at":"2026-06-26T21:41:46.401Z"} {"cache_key":"383105908dd43f492bbb552b0fa0ce6ff1e6dc7798c3742f97bb0675a1f430ac","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.expressionPlaceholder","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"0 7 * * *","text_hash":"1d726e4af41cb9434cb588e6a94a70b43003cf17c1913febed0bb86ccaadcb2e","tgt_lang":"ru","translated":"0 7 * * *","updated_at":"2026-06-26T21:42:31.568Z"} @@ -436,11 +465,13 @@ {"cache_key":"3dc88f8cc7e6aca4c287dd0bbfd1f277d714d78fc2ed108186172e319f34f8e9","model":"gpt-5.5","provider":"openai","segment_id":"common.connect","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Connect","text_hash":"1a2303ede07493acc7caaa7c737f3c52bcc9cf04372be19ed1b0af6b9f2c791e","tgt_lang":"ru","translated":"Подключить","updated_at":"2026-06-26T21:38:25.777Z"} {"cache_key":"3df395920c93c14dfb940dd1fd92dc3216edaae823f29b814ef2294efbd9c8dc","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.cantAddYet","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Can't add job yet","text_hash":"4044d5877dcb5b01039cb98c32106f3f3b91348355bbd0d784829e7fec115e61","tgt_lang":"ru","translated":"Пока нельзя добавить задание","updated_at":"2026-06-26T21:42:44.768Z"} {"cache_key":"3e00d295a23f9fc5861bba168270535216fd54642cc84ba671258d6f625dbdbe","model":"gpt-5.5","provider":"openai","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"ru","translated":"неудачные попытки","updated_at":"2026-06-26T21:40:00.643Z"} +{"cache_key":"3e167284c5b89f9901a1bdc93ca03fab53cdc3d78ac9c3e2cc8165e5460ef029","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"ru","translated":"Источник","updated_at":"2026-07-10T04:28:58.651Z"} {"cache_key":"3e797e5e9390267e60a6d985489d43e83a987e12031eff982674d7fafa8faf38","model":"gpt-5.5","provider":"openai","segment_id":"logsView.filter","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Filter","text_hash":"638e249f4a15ebb84957da130701d138a6e06d88dceeaa2e6dcd91db70cc1381","tgt_lang":"ru","translated":"Фильтр","updated_at":"2026-06-26T21:39:38.402Z"} {"cache_key":"3e85846af6aeeef81a7a3d6128e7f259d494c3ec5b74fd5bb072cfe917eb9a0e","model":"gpt-5.5","provider":"openai","segment_id":"tabs.channels","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"ru","translated":"Каналы","updated_at":"2026-06-26T21:39:23.906Z"} {"cache_key":"3e8ebe6db27ffa23a8eca25f2a70a06bbdc47c19ce9b624834b89e078b589b07","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.name","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"ru","translated":"Название","updated_at":"2026-06-26T21:42:21.706Z"} {"cache_key":"3ea71b1f320b432da9578f189cdbc829df6e1734a32d84428a97d24a7dcc9020","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.all","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"ru","translated":"Все","updated_at":"2026-06-26T21:40:59.486Z"} {"cache_key":"3ec67ed9f4d6980f8176befe1db60251bc797b8b47fd21ea2cafcb9f210f5825","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"ru","translated":"Gateway","updated_at":"2026-07-09T10:01:43.745Z"} +{"cache_key":"3ecef61eace4f5913177f94f6e784ba42ac92d431ed6276c988ee6b32d3be7bd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"ru","translated":"Открыть ClawHub","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"3ed0f7cf91072528112a7968e9326127e9ae36054b0b587b59e50eb31740fb5e","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.defaultName","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"ru","translated":"Автоматизация","updated_at":"2026-06-26T21:42:14.996Z"} {"cache_key":"3ed511deb5f614b579572f885b9f15d6c3c491d79ac6ebc1548102c0470172bc","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.fixFields","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Fix {count} field to continue.","text_hash":"d23ecdcad6814e7d5b166d385f58c95735e3219acba8ec2b07c74345681e63d2","tgt_lang":"ru","translated":"Исправьте {count} поле, чтобы продолжить.","updated_at":"2026-06-26T21:42:44.768Z"} {"cache_key":"3efd315a7a0b774472c79f20e732acadc1e4bdc374bf8c3f1906ad9c1bc548f5","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.bannerHelp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"HTTPS URL to a banner image","text_hash":"5feb792028cf20b11294d2bed052e34770970d0a8a991fdc8eeb39045a9c42ca","tgt_lang":"ru","translated":"HTTPS URL изображения баннера","updated_at":"2026-06-26T21:38:44.774Z"} @@ -452,6 +483,7 @@ {"cache_key":"3f6bbd5c7f5dd4db39d3b79589522a7cc9187acd9a61ef5c15b2c33522dffc89","model":"gpt-5.5","provider":"openai","segment_id":"overview.connection.insecureHttpDocsLink","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Docs: Insecure HTTP","text_hash":"203c0a5d2a6d0e5f4fb9aece80770f6b56642c5731997b9f9afcda31936a63f0","tgt_lang":"ru","translated":"Документация: небезопасный HTTP","updated_at":"2026-06-26T21:40:28.260Z"} {"cache_key":"3faa4cbf60ee8e0b455eb55c51b32dc51d1c989795ae5517d0c8848f0214e031","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.steps.what","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"What","text_hash":"f8cf83a76a98df2dd4799b4d0d4f6ffc9af9a3a72d8648f94ca7cdea4b52fde7","tgt_lang":"ru","translated":"Что","updated_at":"2026-06-26T21:42:14.996Z"} {"cache_key":"40c53dcd878b277c75834a878845a21ffb9e1467ad2da111b03c2848b6286817","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatchSummaryEmpty","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Dispatch complete: no ready work changed.","text_hash":"d9de474da80103e3d4fd0395c3c5a1f1ec2925bde5bca571b0a5ffe55bc2cc8a","tgt_lang":"ru","translated":"Распределение завершено: готовая работа не изменилась.","updated_at":"2026-06-26T21:39:57.757Z"} +{"cache_key":"40ca064a89b00003f4f70fe1c5853c579f2e6b9a2ee60e1e3230038f3640b8cb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"ru","translated":"Выполняется…","updated_at":"2026-06-26T21:38:34.337Z"} {"cache_key":"41131d489e0ab2ad4b0bf234de5c4a0a804cf44a6a2f64f8ed7b3d27b5f9be45","model":"gpt-5.5","provider":"openai","segment_id":"nav.control","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Control","text_hash":"32d7e82082479b8cb546187ff0af11e4915e4d17bc28e02dca7425288b79badd","tgt_lang":"ru","translated":"Управление","updated_at":"2026-06-26T21:39:20.622Z"} {"cache_key":"4119a15632f2bb4d06fcdd79c864dc7fc8ef4a9563a243f669bfc78dd05c195a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"ru","translated":"Нет карточек, соответствующих этому представлению","updated_at":"2026-06-26T21:40:07.529Z"} {"cache_key":"416b36039be4c5b944eb6094be84ab432f2d4a491c8d12f2b09271152c1ed8b0","model":"gpt-5.5","provider":"openai","segment_id":"nodes.binding.execNodeBindingSubtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Pin agents to a specific node when using exec host=node.","text_hash":"62b94f448115db671d89cd6cbb1649576ab8435e99aabee84d4bf32e7882f65e","tgt_lang":"ru","translated":"Закрепляйте агентов за конкретным узлом при использовании exec host=node.","updated_at":"2026-06-26T21:38:44.774Z"} @@ -460,6 +492,7 @@ {"cache_key":"41b057dd8072f89ed577b57060354e06cd455910151f6f9eff3f617566d40a96","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeSkills","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} skills","text_hash":"c6c2928e3abbbdfaae0f5608b23b1a805b43a8d1daf54e1d307126ff01e80718","tgt_lang":"ru","translated":"{count} навыков","updated_at":"2026-06-26T21:40:03.947Z"} {"cache_key":"41b3742b32e5091b90201aaeeef910db0d40007830c4efba4c44d2f7cd61bdaa","model":"gpt-5.5","provider":"openai","segment_id":"overview.access.wsUrl","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"WebSocket URL","text_hash":"e09731b4efa96f0a1f1d5a2d054151ab0297af95bd92b137008cc61534b09e95","tgt_lang":"ru","translated":"URL WebSocket","updated_at":"2026-06-26T21:40:14.690Z"} {"cache_key":"41f8b46f4f028e267a50c573d1fe722479ede71533ed08e6bb9786f45577ddf6","model":"gpt-5.5","provider":"openai","segment_id":"chat.switchedSession","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Switched to {session}","text_hash":"50c3fc1b5d0a84d8d7c589320e56d9eea5d9c59bc8c5f70c8b22503f00fe37b5","tgt_lang":"ru","translated":"Переключено на {session}","updated_at":"2026-06-26T21:41:54.248Z"} +{"cache_key":"420c505b0ec4ab1fbe386a6a848f517f6f656a62ff6260216e1e0e065f272518","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"ru","translated":"MCP-серверы","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"422833aa69dccbe4ccaadc4afee3a6ff7b99e0d578b9e1c30bc1d6b5619d2c84","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatchSummary","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Dispatch complete: started {started}, promoted {promoted}, blocked {blocked}, reclaimed {reclaimed}, orchestrated {orchestrated}, failures {failures}.","text_hash":"d01dbb3c1876ba9fcec66ef42c38c74a804c66fb947b7939bc567eb190c3a536","tgt_lang":"ru","translated":"Распределение завершено: запущено {started}, повышено {promoted}, заблокировано {blocked}, возвращено {reclaimed}, скоординировано {orchestrated}, сбоев {failures}.","updated_at":"2026-06-26T21:39:57.757Z"} {"cache_key":"422c23acd9bd4fc665c35305153dd17c7e7604ba989cd850a1bcae0b87c26bf1","model":"gpt-5.5","provider":"openai","segment_id":"overview.pairing.metadataUpgradeSummary","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"This device is already paired, but the metadata change is waiting for approval.","text_hash":"807901f180fc3236ef54cbca851f5451b0c736f2aed0a6524d2c80ab238f012e","tgt_lang":"ru","translated":"Это устройство уже сопряжено, но изменение метаданных ожидает подтверждения.","updated_at":"2026-06-26T21:40:23.750Z"} {"cache_key":"423770e32e74e2f1aea0dd499b2d0f9ee027fd9ae1cabeb0cdac7f98b594a3ef","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.shellCommand","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Shell Command","text_hash":"52d381f0bd0846bde3d4ae73fe838cc2e69d7547283223ab4ae2d761bbd62cb3","tgt_lang":"ru","translated":"Shell Command","updated_at":"2026-06-26T21:40:37.573Z"} @@ -471,19 +504,21 @@ {"cache_key":"42dc44e47cf9abee484fbf4777a3c161c509da1c8f7cedafc0337daa08c930fd","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.skills","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Skills","text_hash":"66d0f523a379b2de6f8d5fba3a817ebc395f7bcaa54cc132ca9dfa665d1e9378","tgt_lang":"ru","translated":"Навыки","updated_at":"2026-06-26T21:40:28.260Z"} {"cache_key":"42e987525f84bfdcd36709d8931b02734d0639217ed59cc5087af87a403dcd3f","model":"gpt-5.5","provider":"openai","segment_id":"tabs.usage","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Usage","text_hash":"8d59829c1e15afe1a7fae93e8e5e32d8511bec5fd598a09f4fea6033b31e8a66","tgt_lang":"ru","translated":"Использование","updated_at":"2026-06-26T21:39:23.906Z"} {"cache_key":"42fb3c0c4e2b94fe242160aae82f0adedebdecc67800b59a02f77f7069a3f8ca","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.customOption","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{value} (custom)","text_hash":"3c72a6f7c232c01c3d59e562bc0423a5fe43ef909dbd539a3779d2c0961cebfd","tgt_lang":"ru","translated":"{value} (пользовательское)","updated_at":"2026-06-26T21:38:54.164Z"} -{"cache_key":"4318b1a1ecad24bb403c0f2b20ba28441a148e3bfdef85bbb5b914f154484007","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"ru","translated":"Перетащите, чтобы закрепить справа или снизу","updated_at":"2026-07-10T06:08:53.986Z"} {"cache_key":"43259ac405492648a1f7edc0dedf44c06d66778bef1685a4b383ed6d14af3b9e","model":"gpt-5.5","provider":"openai","segment_id":"agents.channels.loadHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Load channels to see live status.","text_hash":"bcefda2639b6f198c48c0ef1b7e7a4d1169d9a5f7474fb9ddb1f3afc63730de9","tgt_lang":"ru","translated":"Загрузите каналы, чтобы увидеть текущий статус.","updated_at":"2026-06-26T21:39:07.415Z"} {"cache_key":"435bca31c1894d0f68a11f9304e15dedb621197516f90351aa2629d1c9d38392","model":"gpt-5.5","provider":"openai","segment_id":"activity.status.running","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"ru","translated":"Выполняется","updated_at":"2026-06-26T21:39:35.030Z"} {"cache_key":"43818010b38faf92e48c856594891c61df1b9a8b4c03bc856d32edb68a4da492","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.rateLimited.stepWait","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Wait for the auth limiter to cool down, then reconnect with the corrected credential.","text_hash":"526e9e51e93e114921a3512498019e17e55490d1c8e7e4c5a46d6eafae7eabfb","tgt_lang":"ru","translated":"Подождите, пока ограничитель аутентификации остынет, затем подключитесь повторно с исправленными учетными данными.","updated_at":"2026-06-26T21:41:40.878Z"} {"cache_key":"43c270df09af9b5983ecd6a871bfa197e8f66a03d312008cc41538f55d577497","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.noChannelData","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No channel data","text_hash":"28b65b08b938c27634e6f67a7d8835da8b4e8cbbcc5413da8b6a24afd9c767f2","tgt_lang":"ru","translated":"Нет данных канала","updated_at":"2026-06-26T21:41:20.199Z"} {"cache_key":"43d45a8e12ec6f96311de8f57acd755b371fdafab192d19cca0e9609d8836f61","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"ru","translated":"Задача шлюза","updated_at":"2026-06-26T21:39:43.912Z"} +{"cache_key":"43ec8e4e1ed786ca04a89193915aa878e39986ecde9c7887db517bfcaaafbc27","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"ru","translated":"Откройте для себя рекомендуемый плагин или выполните поиск в ClawHub, чтобы расширить OpenClaw.","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"440629c6f49656542d099fbeb9a8e4d1d2ff38218eb654f1489dd6a31da24125","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.talkTranscript","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Talk transcript","text_hash":"b3a845b53c03efcdf581409dfe13d383dc387c32451325677a7dcc7d7402d48b","tgt_lang":"ru","translated":"Расшифровка Talk","updated_at":"2026-06-26T21:41:59.944Z"} {"cache_key":"440f22d4dff81d04ea95679c276ebc9cd79e9a90987b77b1283caf989f86f25e","model":"gpt-5.5","provider":"openai","segment_id":"activity.visibleCount","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{visible} of {total}","text_hash":"9ba4e8a044fb7345bfed5e198ae4d10bcf326b845d2cecc7459c6739a81588af","tgt_lang":"ru","translated":"{visible} из {total}","updated_at":"2026-06-26T21:39:31.958Z"} {"cache_key":"442b6d355d4a2880a8e7fd52385744ec5e5cf17a5ac7b0735c4c713e3ccbf665","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.status.active","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Dreaming Active","text_hash":"fd7a73177f09d63e4afe11f3ac6e028368eb1c3163b80022a9bf46b94e1b658a","tgt_lang":"ru","translated":"Dreaming активен","updated_at":"2026-06-26T21:40:41.209Z"} +{"cache_key":"4438b2c3a5b3f71bd9846c1a0ad31f833b14fa98504ce5e4b9b78da5b5ac8e93","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"ru","translated":"Обзор","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"444bbd24ad61cd4cc6dd36e8c9ab64c1091dd57a00c8584f15c60f1867c7ef09","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.spend","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Usage","text_hash":"8d59829c1e15afe1a7fae93e8e5e32d8511bec5fd598a09f4fea6033b31e8a66","tgt_lang":"ru","translated":"Использование","updated_at":"2026-06-26T21:39:23.906Z"} {"cache_key":"446a4b79e9b2a5b36daa3d2bb54a81f940a2c4787db3f9d5d4799c9ed67042b1","model":"gpt-5.5","provider":"openai","segment_id":"instances.subtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Presence beacons from the gateway and clients.","text_hash":"5349f6c160fabe02b9b0d3065e8cd995704de9fcb2894945af4660d9cb35f666","tgt_lang":"ru","translated":"Сигналы присутствия от шлюза и клиентов.","updated_at":"2026-06-26T21:38:48.084Z"} {"cache_key":"44830d3a32064f825df767426bd0fa0055f39f5568cdf0c75bedbcff3d8dc527","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"ru","translated":"Обновить","updated_at":"2026-06-26T21:40:37.573Z"} {"cache_key":"44b0b7777c44afeda428859b0add2cea3af7c4307eef4fcf0d0d633fe599de36","model":"gpt-5.5","provider":"openai","segment_id":"debug.security.audit","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Security audit","text_hash":"7efbf2205196ca1f7458f4e84625d163db12b4401d478dd631785b33668cc6c5","tgt_lang":"ru","translated":"Аудит безопасности","updated_at":"2026-06-26T21:39:14.470Z"} +{"cache_key":"44eae44eff195eca8b69f8ade8a6a1ba78c1cf678d910cdfeed1d17001d8caeb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"ru","translated":"Установить","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"4506bafb7b570711cbacfe77a51a7e37c8512f7376b9de3d71efc39771c5c0d1","model":"gpt-5.5","provider":"openai","segment_id":"usage.breakdown.costByType","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Cost by Type","text_hash":"191407927e3b9ed0accd8cc9d2b8952704dfd9a8cc6edfe8c04a722e146fe612","tgt_lang":"ru","translated":"Стоимость по типу","updated_at":"2026-06-26T21:41:12.411Z"} {"cache_key":"4557d662c7f21dacc3001aa9ec6067e213c4508822e29244dc4f47634e450408","model":"gpt-5.5","provider":"openai","segment_id":"overview.access.toggleTokenVisibility","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Toggle token visibility","text_hash":"81fc4b962be0e4a4748879f1645272c8f2302e101c59544f1fac347b3f892f26","tgt_lang":"ru","translated":"Переключить видимость токена","updated_at":"2026-06-26T21:40:18.156Z"} {"cache_key":"4559cd14093334538212b02f1e95063ea66f25f7749e92c2621c033b891c2afa","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobList.history","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"History","text_hash":"0e769600933790607b2a13b33ddfade0fa17810eb62c3b28ee23e59516516491","tgt_lang":"ru","translated":"История","updated_at":"2026-06-26T21:42:47.554Z"} @@ -497,6 +532,7 @@ {"cache_key":"4663d7762a07d552756b98fc3f50245b9e6338d00b3ae9020a395f4630543042","model":"gpt-5.5","provider":"openai","segment_id":"cron.errors.agentMessageRequiredShort","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Agent message required.","text_hash":"d1709c155073bef73f53c7f372f797c41348e86bcb38d278a3cc3dfd8682f29b","tgt_lang":"ru","translated":"Требуется сообщение агента.","updated_at":"2026-06-26T21:42:51.343Z"} {"cache_key":"46665eb908225d7d6a8cfaa81515094e894e9550e1bad64d9f631694d99c66a0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.reasoning","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Reasoning","text_hash":"d8211e24e83d1600a1b0cfe2f7baa68e4d4eb71131a0b2b1b2050cba111ea481","tgt_lang":"ru","translated":"Рассуждение","updated_at":"2026-06-26T21:38:54.164Z"} {"cache_key":"466bc776ec43d3e98b0e7723f692362e5fdcdc017af114a35be03140ce20e3ff","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"ru","translated":"Закрепить сеанс","updated_at":"2026-07-02T14:31:15.336Z"} +{"cache_key":"467c327f1ca505aa205222f9382bea5cdce035a17fb41712065f11a0729df516","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"ru","translated":"Установлен {name}.","updated_at":"2026-07-10T02:30:00.008Z"} {"cache_key":"467c7a5c08e790c5525225102261836db6591e9ebb146061a0b85ffff596b89a","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.closePreview","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Close preview","text_hash":"7d8ab368210c5ae8d2cec7bb577afe1e7cf9489c88f031e0f9de7555c9f20b66","tgt_lang":"ru","translated":"Закрыть предпросмотр","updated_at":"2026-06-26T21:39:11.166Z"} {"cache_key":"468980531154aa5de0e19eeafc2c0bb8fe868103378afb3dc1eb997566eb6bc7","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.promotedTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Recent Promotions","text_hash":"85051af6bfc0dd7be0988540e19a83f9855e93be2642c8b39a3d9a352ede92ff","tgt_lang":"ru","translated":"Недавние повышения","updated_at":"2026-06-26T21:40:44.743Z"} {"cache_key":"469ba482eec99c1d75abd3d99c62b4e28109d84dd7e942e7b1ee225b70828333","model":"gpt-5.5","provider":"openai","segment_id":"cron.errors.agentMessageRequired","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Agent message is required.","text_hash":"499060a1c91b80f430d179f155fde32729f817fe998fa3e378812bff577cb009","tgt_lang":"ru","translated":"Требуется сообщение агента.","updated_at":"2026-06-26T21:42:51.343Z"} @@ -517,8 +553,8 @@ {"cache_key":"4a3e8d18cc6495cdb21f6a525f2db461309da221e06105df2a28af6e90af64ee","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.security.browserEnabled","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Browser enabled","text_hash":"121adc46173e9ec6185795ba831aced999439bad98133ff94743b8f2ad5ec768","tgt_lang":"ru","translated":"Браузер включен","updated_at":"2026-06-26T21:39:17.817Z"} {"cache_key":"4a5b46b1e55cc3efc0673a360b3165b395c1ab9c9836a32f1506d52bff3b9276","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.to","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"to","text_hash":"663ea1bfffe5038f3f0cf667f14c4257eff52d77ce7f2a218f72e9286616ea39","tgt_lang":"ru","translated":"до","updated_at":"2026-06-26T21:40:59.486Z"} {"cache_key":"4a5e166c62a197068f972a55d46783f84a95f5dbf0f04de8cf4f8962b6409163","model":"gpt-5.5","provider":"openai","segment_id":"chat.thinkingToggle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Toggle assistant thinking/working output","text_hash":"39aaede23f67f098a7adb9a25d7e6301aa05fa651a9b7e7e482ab8246d090577","tgt_lang":"ru","translated":"Показать или скрыть вывод размышлений/работы ассистента","updated_at":"2026-06-26T21:41:50.917Z"} -{"cache_key":"4a5e19ab57979928b6cb75f4e5e7f0ceb7e19e828238ef8b36a8e62751e0f394","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"ru","translated":"Поиск","updated_at":"2026-06-26T21:39:31.958Z"} {"cache_key":"4a5f6266cc2a2b1d06259cc76d04aeb329ee5ebe79d3fcad8d6a75a43b52d59a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.template.bugfix","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Bugfix","text_hash":"e712c50c8b068d31bad54ef6ba21dd7d8e5ba33659e017e536152b39ea90b68d","tgt_lang":"ru","translated":"Исправление ошибки","updated_at":"2026-06-26T21:40:00.644Z"} +{"cache_key":"4a969bfc02af3958d118fafae908bc21153c2beb62fff7fd9cb1f2be1b76f432","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"ru","translated":"Найти на ClawHub","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"4ac5ba770b5179516df77aa1e1eb90d6fe1e7a31e9ed9f115ed2d7c2008bccfb","model":"gpt-5.5","provider":"openai","segment_id":"login.togglePasswordVisibility","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Toggle password visibility","text_hash":"1016c07b0f58d365790cc799fb215afd92fde1aeb5ac47cd17260e327465b2d6","tgt_lang":"ru","translated":"Переключить видимость пароля","updated_at":"2026-06-26T21:41:35.342Z"} {"cache_key":"4af760ed87606a516c241f18c21c50ce9a62d27b07a67cf4710ab837a7b637ed","model":"gpt-5.5","provider":"openai","segment_id":"overview.snapshot.channelsHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Use Channels to link WhatsApp, Telegram, Discord, Signal, or iMessage.","text_hash":"a884d27d80e8bbdad72e5468bcf14292867e74f1912dc6bddca8a604dbe0d5d4","tgt_lang":"ru","translated":"Используйте «Каналы», чтобы подключить WhatsApp, Telegram, Discord, Signal или iMessage.","updated_at":"2026-06-26T21:40:18.156Z"} {"cache_key":"4b05c6f78524aeb353d73573fd257cc4081429111a3bcadc51de4d00a62c49d2","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.descending","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Descending","text_hash":"79479a6c76d8416ab7839952a2f8222e350862464f4d02db13d8d8f9551dbf8e","tgt_lang":"ru","translated":"По убыванию","updated_at":"2026-06-26T21:41:20.199Z"} @@ -559,8 +595,11 @@ {"cache_key":"5056d0167ec2e55767f599c13646c93bb8fed0aaae65183b292d65beb8c19e85","model":"gpt-5.5","provider":"openai","segment_id":"instances.lastInput","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Last input {time}","text_hash":"04c40c4d7fa4438b7d6afe2f3997bc427522d67e80f8adc42ee0269eed294760","tgt_lang":"ru","translated":"Последний ввод {time}","updated_at":"2026-06-26T21:38:48.084Z"} {"cache_key":"5062ee9df93bd064640ce47aa7b9660985d74da1ada67d44b2f87fcb4920ad4a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.status.triage","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Triage","text_hash":"4ffbef3c08edfa3878c8357dbe3de3f11c3c74c594d8405f40243390f7f2d118","tgt_lang":"ru","translated":"Разбор","updated_at":"2026-06-26T21:39:38.402Z"} {"cache_key":"50f30afaf27c1e3a6b79d1703e6ff179b693ed53e51cac31e5a161f67aedcf4b","model":"gpt-5.5","provider":"openai","segment_id":"common.importFromRelays","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Import from Relays","text_hash":"b6a7b8934731285270b7f1671978dc0fc3147998f52405b2cc418eb4927bfc99","tgt_lang":"ru","translated":"Импортировать из Relays","updated_at":"2026-06-26T21:38:34.337Z"} +{"cache_key":"511483c34e9afb6fa26fd3fce02fb0ec900706d492f099d57422c2ec35608172","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"ru","translated":"Необязательная возможность OpenClaw.","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"511f7369e4c2d3921db1acfd66cb7433614530acc61ffc310b18707dbf46a8f6","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobDetail.system","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"ru","translated":"Система","updated_at":"2026-06-26T21:42:47.554Z"} {"cache_key":"51390d6107767aa723e28bb00c408f4e9aed3ba3596a759ffd55e404c251c876","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"ru","translated":"Ветка","updated_at":"2026-07-09T10:01:43.745Z"} +{"cache_key":"5164360efec6d73b6c0768b8f9ec6e06538f145181703dd2420be28f40aa999b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"ru","translated":"Отключить {name}","updated_at":"2026-07-10T02:29:57.079Z"} +{"cache_key":"518ac267885b248732f803a095952da8e4ecb9a9b7cffa0d14a72d218655a96e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"ru","translated":"Память","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"51af6884a849ca22da640c9277dc9e375fc1b801d16930c195400e65a284b046","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"ru","translated":"Открепить сеанс","updated_at":"2026-07-02T14:31:15.336Z"} {"cache_key":"51b4775461e1787f69d157471ba90548b3b44105e7b1f0fe4e9d59ac1fce77a3","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"ru","translated":"Рабочие деревья","updated_at":"2026-07-05T21:01:47.002Z"} {"cache_key":"51c91d86efadde8dc7a996fcbd047af4dd29c3fbfbfb7838f873ad69614e4a3b","model":"gpt-5.5","provider":"openai","segment_id":"languages.ptBR","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Português (Brazilian Portuguese)","text_hash":"218d74650d53faa34f3263ebca533ed034422d1aec61d98ebd2ef353c0b9d492","tgt_lang":"ru","translated":"Português (бразильский португальский)","updated_at":"2026-06-26T21:42:06.902Z"} @@ -583,7 +622,9 @@ {"cache_key":"561580bbdfc6993527981b181bf81fd6e73b59be15764f4baf9ca0ac812bfea8","model":"gpt-5.5","provider":"openai","segment_id":"overview.snapshot.subtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Latest gateway handshake information.","text_hash":"02c4ea80485c6beaf97787975883e58d65e0d1d4dd30e0c4c101e862fb45634a","tgt_lang":"ru","translated":"Последняя информация о рукопожатии шлюза.","updated_at":"2026-06-26T21:40:18.156Z"} {"cache_key":"5623ba711e9baae5e04b96f44267acc5c7ff0a802c0267c7bb813fd9f91f4b66","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.staggerUnit","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Stagger unit","text_hash":"91f427bfe9e5d6bb461f1cdcd124fbf3ee25ceec6e5763c69092ffe9120007ed","tgt_lang":"ru","translated":"Единица разброса","updated_at":"2026-06-26T21:42:41.136Z"} {"cache_key":"56632ad3a5415032455c6c2d2dc22f05f7e51b495d27aa5620d84e3753854b56","model":"gpt-5.5","provider":"openai","segment_id":"usage.presets.today","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"ru","translated":"Сегодня","updated_at":"2026-06-26T21:40:56.975Z"} +{"cache_key":"566b265f38d8c882e5af53642b84025a9acc7d7f9addfd3ee74f6892540b987d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"ru","translated":"Отключить","updated_at":"2026-06-26T21:42:47.554Z"} {"cache_key":"567c96075ebedfbcc5c394e568e252af572ae2ebb215994a96955006487046ff","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"ru","translated":"Не удалось получить доступ к входам микрофона.","updated_at":"2026-07-06T17:57:33.379Z"} +{"cache_key":"568e05731da767003a358a104ca659efed80fee8fced570bb14b3a2e92130f13","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"ru","translated":"Плагины сообщества на ClawHub","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"56a16ecd428492852619b6e80f53f1abcf833e0fbb3cc34e9db03c3d73515fd3","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"ru","translated":"Дата","updated_at":"2026-07-05T14:40:26.836Z"} {"cache_key":"56d176bbb5dca182e898c7192cfe7e4f0be558f33e7f320056c4d28abb549b0a","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Daily Log Review","text_hash":"44fc6083dd2c1241ce8e230650168a41c72505aed45de4f86b0c203ad4d12fda","tgt_lang":"ru","translated":"Обзор ежедневного журнала","updated_at":"2026-06-26T21:40:44.743Z"} {"cache_key":"56e8e2a9fac09e155a74eab6c5866a3d76293e6b414f31fe16deec303d3ed0ba","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.stop","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Stop","text_hash":"cae7d57bc067a514b8e34c9589631a95c7dc051638ddd2a190773269279a99df","tgt_lang":"ru","translated":"Остановить","updated_at":"2026-06-26T21:41:54.248Z"} @@ -606,6 +647,7 @@ {"cache_key":"59846673d47ddb0748766b68e700746bf3f532ca126665ad0d2b1b618f063d15","model":"gpt-5.5","provider":"openai","segment_id":"overview.snapshot.uptime","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Uptime","text_hash":"d63ab4711473b0398feb4b56622605d5d2ec7ecd3b1bb5070a7dd56de96aaf88","tgt_lang":"ru","translated":"Время работы","updated_at":"2026-06-26T21:40:18.156Z"} {"cache_key":"59999bfb52dc6e03f4ece054639a06baf78c0e322bafc9019e3b51e9599b1a2c","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.selectedRange","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Selected Range","text_hash":"95917ae71066a19c266cd4530068f4bf775ed2401951ebf37ab0c91daa1a67d3","tgt_lang":"ru","translated":"Выбранный период","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"5a3b0bd964562376954bc0002f4fae5007a3da9044944b12b2718e5ee12197c1","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.webhookPlaceholder","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"https://example.com/cron","text_hash":"1a8d9a48565f0ed4d43751b2b9a4a9c5b5d78c06e20c6ceef36fe55c47bb7d79","tgt_lang":"ru","translated":"https://example.com/cron","updated_at":"2026-06-26T21:42:41.136Z"} +{"cache_key":"5a947c3249fb47fb242ad94e4358b9d4cb951afc015888a18bc6d8c984922285","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"ru","translated":"Закрыть","updated_at":"2026-07-10T04:28:58.651Z"} {"cache_key":"5af36faa32bb4498d830cb90b306fbe3eacae0dfd1dcb59ba5ec5a91c48a6f15","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.closePane","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Close pane","text_hash":"7fa0f9613d919e167b0f9aa03c22809d446af293eb6c3bac6866bae66d2656c9","tgt_lang":"ru","translated":"Закрыть панель","updated_at":"2026-07-06T07:24:46.448Z"} {"cache_key":"5affb5f385f0573f4447ce6f45d755eda683d709b562585c52c71434f45fe3e3","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.simmeringIdeas","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"simmering half-formed ideas…","text_hash":"bb9432dfcd536797972bc477a1cc8e154d4b639552bdb67b9be0ee1517e6037b","tgt_lang":"ru","translated":"томим полуоформленные идеи…","updated_at":"2026-06-26T21:40:56.975Z"} {"cache_key":"5b66802213741dd57a8412f02fbf2e5464902bac42cb560201448c9980916735","model":"gpt-5.5","provider":"openai","segment_id":"workboard.emptyColumn","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Drop work here","text_hash":"c5d42c214af42018fefe6f66e21e0010fe83ada4ad0abe00fb7d0fe760b00fec","tgt_lang":"ru","translated":"Перетащите работу сюда","updated_at":"2026-06-26T21:40:03.947Z"} @@ -625,6 +667,7 @@ {"cache_key":"5cb279077aa2b6dad44ae2f69d758910ff09ffa2dc550401c9bc17a196079bde","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.pluginApprovalNeeded","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Plugin approval needed","text_hash":"25a91b0ff6e8ffce180a9d26d940fd7d1cb90bb45fed7a029e2d246f2db8e4b3","tgt_lang":"ru","translated":"Требуется одобрение плагина","updated_at":"2026-06-26T21:39:17.817Z"} {"cache_key":"5ce43dd2dc1c93e492f288061a21279c3f77e12c5966eb81a0b73a35a1fee023","model":"gpt-5.5","provider":"openai","segment_id":"common.na","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"n/a","text_hash":"a683c5c5349f6f7fb903ba8a9e7e55d0ba1b8f03579f95be83f4954c33e81098","tgt_lang":"ru","translated":"н/д","updated_at":"2026-06-26T21:38:28.190Z"} {"cache_key":"5ce53a03cb82225459944425b959b7e9d50505bdfb2d848bc3dde469cfe2e965","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"ru","translated":"Сортировать по","updated_at":"2026-07-06T23:41:27.246Z"} +{"cache_key":"5d4d9ed751a81bee6b269254a456987c798c6190a1274eb05fdeac7707b61b21","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"ru","translated":"Ознакомьтесь с предупреждением ClawHub перед установкой этого плагина.","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"5d77b7cc4ea35caaf0e1dba58487296ce8fa3b3d5f1e6b8d3b1c07f4903806c6","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.descriptions.debugMode","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Toggle debug","text_hash":"3a3694c533cf3e15af8f2186a5750ab5919ca21b64e82c5dce5abd1ce4bdc406","tgt_lang":"ru","translated":"Переключить отладку","updated_at":"2026-06-26T21:40:37.573Z"} {"cache_key":"5d960b8519b2dcb6681c4cc65da6f06696d479a99b58c6a68e5acab42c8fba35","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.schedule","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Schedule","text_hash":"f4830a1dae2980447c716bd4b5779b7013575ef09f70ef4731457218792487b3","tgt_lang":"ru","translated":"Расписание","updated_at":"2026-06-26T21:42:18.092Z"} {"cache_key":"5da7026f3d40e2b37f30cba54cb81187584a28c7120b6ac19fb98b74c330169f","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.labels.plugin","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Plugin","text_hash":"ab1173eed1d477d9e951c2316a74d1923220e64d1bbaeadf03c88e20576c7450","tgt_lang":"ru","translated":"Плагин","updated_at":"2026-06-26T21:39:20.621Z"} @@ -641,7 +684,6 @@ {"cache_key":"5f1995a07ae4ed6b00881b13be312dbbf94fae653a7b6890d176e99190cd28e5","model":"gpt-5.5","provider":"openai","segment_id":"cron.runEntry.runAt","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Run at","text_hash":"4b4c31294fb5b71b1b7b022c0fcc15a8295e19ecf0788db48cdeeab0d5623433","tgt_lang":"ru","translated":"Запуск в","updated_at":"2026-06-26T21:42:47.554Z"} {"cache_key":"5f5995ae2aaa6799a017f7199ce395f8973d0de3e7bc3edd41e86d819e1fba87","model":"gpt-5.5","provider":"openai","segment_id":"workboard.engineClaude","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Claude","text_hash":"0615570f9ea136946c5dc08a250010320707646f57f72cedab1dfb73d95eade6","tgt_lang":"ru","translated":"Claude","updated_at":"2026-06-26T21:39:54.162Z"} {"cache_key":"5f6e3758391a672c7b4ef0ebb11bd7e2c4e9a76f6e0f7cf4ad2a2a37d7145f05","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"ru","translated":"Путь к рабочей области","updated_at":"2026-06-26T21:42:03.305Z"} -{"cache_key":"5fa727dcfcd1a4fd2eb160a84905063f970405589f5e1271ea7c3d412b771c5c","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"ru","translated":"Закрепить снизу","updated_at":"2026-07-10T06:08:53.986Z"} {"cache_key":"5fbbc29427fcd00d9e32149e12b538960fa8cbaca14c1fd900fd5daefb99477e","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.restartConfirmation.subtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Changing Dreaming mode restarts the gateway.","text_hash":"4ab5fbac2418056100d534df3c4ea4508fa1ad29842be40a23b5396136137ad3","tgt_lang":"ru","translated":"Изменение режима Dreaming перезапускает gateway.","updated_at":"2026-06-26T21:40:41.209Z"} {"cache_key":"5fc5b2a15d1e1476f403b2bb79544c70e03b6d8ada20149dd5da44bba0a2e323","model":"gpt-5.5","provider":"openai","segment_id":"common.mode","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Mode","text_hash":"5e23ec6a300dc60a79641769017e16e9bf042cbd8fd0a54586a048ab9da972ff","tgt_lang":"ru","translated":"Режим","updated_at":"2026-06-26T21:38:28.190Z"} {"cache_key":"5fc5cab558c7ed3b679c7fe5425088a48c053da8593c27654976dd66d863f842","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.descriptionPlaceholder","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Optional context for this job","text_hash":"0394761840ba701100174dba989c16471103f58e3fe7492dae020dd5add7e031","tgt_lang":"ru","translated":"Необязательный контекст для этого задания","updated_at":"2026-06-26T21:42:28.070Z"} @@ -651,6 +693,7 @@ {"cache_key":"60f5d30d0aa0b633a4e4616537033190f39e19f3aa093bb4a90f3219b001e899","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.compactionHistory","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Compaction history","text_hash":"cc9c4ee1ed1297d8e380e11a4526c3f5906a58bd263cd3294c6b95ec200e25b2","tgt_lang":"ru","translated":"История уплотнения","updated_at":"2026-06-26T21:38:57.762Z"} {"cache_key":"60f9d2e8aa8414e5df6ecd0dc99cedccf7f19451bd09f8c97621771aa8031480","model":"gpt-5.5","provider":"openai","segment_id":"channels.health.noSnapshotYet","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No snapshot yet.","text_hash":"3b578b0bf270913e649934e72f7ef6584ed56b1e10dc563b541384ff660bbfbc","tgt_lang":"ru","translated":"Снимков пока нет.","updated_at":"2026-06-26T21:38:34.337Z"} {"cache_key":"61074c253bc865b43cf2da4560ecb7e228536d53d86c528f6d78a4ef8b7e9cf7","model":"gpt-5.5","provider":"openai","segment_id":"overview.pairing.scopeUpgradeTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Scope upgrade pending approval.","text_hash":"01f51310417022d876b39bac2b047896b7a52e4be59e9ea7ce5416ae0c9010b3","tgt_lang":"ru","translated":"Расширение области доступа ожидает подтверждения.","updated_at":"2026-06-26T21:40:23.750Z"} +{"cache_key":"611ea5e85400f7b28cbd931a47ad2370397d4cd2b14661d8fc467a7463ef6b26","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"ru","translated":"Нет совпадений для обзора","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"615432233823e4648f8a4b39d2a72da42a0a35a0415afa6d823ef355b766f3b7","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.systemShort","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Sys","text_hash":"a34a3472060a7340185039557366a9dee34a3d929efabfbde16828e94d9b5924","tgt_lang":"ru","translated":"Сист.","updated_at":"2026-06-26T21:41:28.060Z"} {"cache_key":"6154970ea8ebff823935a26023b19b1453ded64ed1fdf90abbf87964d98a2167","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"ru","translated":"Нет активности","updated_at":"2026-07-05T14:40:26.836Z"} {"cache_key":"61ae14d37e8e96736643a6e97e4c43d75e94e564eecf385d6797bbc2ad6d850e","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"ru","translated":"Действия","updated_at":"2026-06-26T21:38:54.164Z"} @@ -663,7 +706,11 @@ {"cache_key":"62951ed9452a56e667176728dfdb14982eb8e982304f7c0464374b637a2185ac","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.clearAgentOverride","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Clear agent override","text_hash":"fd24775d3b52742a86ffa2e2727fc342ec45a98b17b452d783ff78fa629e2cca","tgt_lang":"ru","translated":"Очистить переопределение агента","updated_at":"2026-06-26T21:42:41.136Z"} {"cache_key":"62b63bab1ddfe3db4b70e8ed5a910f4e6b2192111906ab54fb6e691ee9044de1","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.categories.skills","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Skills","text_hash":"66d0f523a379b2de6f8d5fba3a817ebc395f7bcaa54cc132ca9dfa665d1e9378","tgt_lang":"ru","translated":"Навыки","updated_at":"2026-06-26T21:40:31.548Z"} {"cache_key":"630e2f2e72b4ee2bd9f55367a7d6d4ca0a76b85b27fb8205db2a5ae89b3c78ae","model":"gpt-5.5","provider":"openai","segment_id":"common.cancel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"ru","translated":"Отмена","updated_at":"2026-06-26T21:38:25.777Z"} +{"cache_key":"634de5e4a8b9cdfb1a31e10301ddf9b230fe4c7081b8d91e95137a3b9e0a7155","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"ru","translated":"Глобально","updated_at":"2026-06-26T21:38:48.084Z"} {"cache_key":"63651a32171fc3bdc5a06ef3ee25e31895d0ff3a10928daf1f702575f9a21835","model":"gpt-5.5","provider":"openai","segment_id":"debug.security.warnings","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} warnings","text_hash":"20c152eb8c81aba048645d91a49f254c1f8cb41ed6e6290ac1e6c3bf4a94b913","tgt_lang":"ru","translated":"{count} предупреждений","updated_at":"2026-06-26T21:39:14.470Z"} +{"cache_key":"6374c53bc63e5936a114442610758644b5e94da6c80a48d7bdb6a2675975dd45","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"ru","translated":"Сборка","updated_at":"2026-07-10T09:47:55.878Z"} +{"cache_key":"638f80d3e9d66c3c2e919a4e980df657373033146999bea6503662e1f32f6066","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"ru","translated":"Повторить попытку","updated_at":"2026-07-10T02:29:44.281Z"} +{"cache_key":"63c3b00e0989bc911cd41461e95c38b32500b0374ace50a151d12d4e171ea567","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"ru","translated":"Контекстные движки","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"63c6354b6664881310957ab5abc9ec50832caa8b37744c0a64bd38f233e783c4","model":"gpt-5.5","provider":"openai","segment_id":"usage.export.sessionsCsv","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Sessions CSV","text_hash":"9b0913342966fc345b0390547e157f2a56ed3d31606eef63511fa26d5710c4bf","tgt_lang":"ru","translated":"CSV сеансов","updated_at":"2026-06-26T21:41:03.285Z"} {"cache_key":"63caf28ff66bdc4892e8f71dfe9cec326900d3f4b470bf96a6e07f64556e10b9","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.queue","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Queue","text_hash":"3b2fe03e368939166bc6e318840b23fcade3ee55d6681b6ef16e7f08c00f23af","tgt_lang":"ru","translated":"Очередь","updated_at":"2026-06-26T21:41:54.248Z"} {"cache_key":"63cc356d4228abb72c271ab0b7ddae29019f0ddcd3a6b2d55e3eb195319852b4","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.deliveryHelp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Announce posts a summary to chat. None keeps execution internal.","text_hash":"498c5ec5bb9d978555cd7f5d47729adb9fb18f11c18ba02d7294e3d964bf3155","tgt_lang":"ru","translated":"Announce публикует сводку в чат. None оставляет выполнение внутренним.","updated_at":"2026-06-26T21:42:41.136Z"} @@ -671,6 +718,7 @@ {"cache_key":"63de091a4048a2ec2d7facfcb3934976e2f04977fa8c71c6005f8fb331165628","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.allJobs","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"All jobs","text_hash":"3506200cde97e6310a2d00a90bb9b5fbc87bc3207e113c0795298e7df76403fb","tgt_lang":"ru","translated":"Все задания","updated_at":"2026-06-26T21:42:21.706Z"} {"cache_key":"64361fb819abf65e3d2b531424735f232eeced116c7e89c5120a50079f77b6c1","model":"gpt-5.5","provider":"openai","segment_id":"common.confirm","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Confirm","text_hash":"eebdd24a77d9ad32222660c07777163bf5f6732df2b172351f3f8d5783e4f529","tgt_lang":"ru","translated":"Подтвердить","updated_at":"2026-06-26T21:38:25.777Z"} {"cache_key":"64374b7c530b7de11606038dfe65548834f2b0d5e95d7664b94710f6b7d611d8","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.searchRuns","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Search runs","text_hash":"26d6d37f90dc1f5d611c3fa58c1a75a29384dd2e1ffb4b5a1b6f42331b0f1b6d","tgt_lang":"ru","translated":"Поиск запусков","updated_at":"2026-06-26T21:42:24.729Z"} +{"cache_key":"64566c0ef9b34e94c6421acec095d51de772d2a28c33b71d4201672a676dd6d2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"ru","translated":"Отключен {name}.","updated_at":"2026-07-10T02:30:00.008Z"} {"cache_key":"6456fcfe7955060cb0c563c8b194a2f4aefc1808ba5626bb5d91119b7101612c","model":"gpt-5.5","provider":"openai","segment_id":"terminal.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Terminal","text_hash":"e0926fdac700b09497b5f0218ea3dd54fa13c0bdeaee6caa7b85e50b852aa05f","tgt_lang":"ru","translated":"Терминал","updated_at":"2026-06-26T21:40:31.548Z"} {"cache_key":"647675a3027f7ce86bb2b38e778faf29c0f23d6ae8320f662475a67007ddbdf0","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.deliveryNotDelivered","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Not delivered","text_hash":"f498742c19d9bbdb08498d477c62dc4bd139d0e47bdbc26a41e4e225aceab9a6","tgt_lang":"ru","translated":"Не доставлено","updated_at":"2026-06-26T21:42:24.729Z"} {"cache_key":"647c260498d725f3e0b77cf4e456eef44122ed2168e60db01500533f3cdd9106","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.eyebrow","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"ru","translated":"Обзор","updated_at":"2026-06-26T21:40:44.743Z"} @@ -708,10 +756,11 @@ {"cache_key":"693b7d9b7a2732a5ac41170a6fd03b157ffeca2d369fb962362b38fa11652c16","model":"gpt-5.5","provider":"openai","segment_id":"common.showQr","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Show QR","text_hash":"b694a5029e4f3f603422c10a6c3d1e03e87d78dae506dc24ca9ac12476ac2533","tgt_lang":"ru","translated":"Показать QR","updated_at":"2026-06-26T21:38:34.337Z"} {"cache_key":"6964dccd11d79e017b0e235e1121f9788036108e649a90dec833924c2e774eaf","model":"gpt-5.5","provider":"openai","segment_id":"usage.empty.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Start with a date range","text_hash":"b7c62643985a46857b304fcad4565f828cba8925e4f5de2a078f647414b6279c","tgt_lang":"ru","translated":"Начните с диапазона дат","updated_at":"2026-06-26T21:41:08.399Z"} {"cache_key":"6978e3473770c250da90255a1c973460b59a1d5863c51138c52285d2843f7584","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"ru","translated":"Группировать по","updated_at":"2026-07-05T14:40:26.836Z"} -{"cache_key":"697ac05704d634d9e437af4c20a057d5daca2ee27b562f5f9d694168ae7a4618","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"ru","translated":"Тихие бульки при касании","updated_at":"2026-07-10T04:50:47.996Z"} {"cache_key":"69a4978f22fb76902f2dc8b0d5c5610ad59af8a7459daa0e67689d4f7c5536d0","model":"gpt-5.5","provider":"openai","segment_id":"usage.scope.familyIncluded","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Historical lineage includes {count} session instances.","text_hash":"93a5b77f61319f28b678391340649847cb190e03824c847dd7a627cb7d282847","tgt_lang":"ru","translated":"Историческая линия включает {count} экземпляров сеанса.","updated_at":"2026-06-26T21:40:59.486Z"} {"cache_key":"69b587742535f3385ed638241ad81795ca1b359c780859fda9860987f1db4f86","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"ru","translated":"Рабочая область","updated_at":"2026-06-26T21:42:03.305Z"} {"cache_key":"69c951430bf3f341546246f4fc748fa7f6f830878096017f2fb08f1092c05e35","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.on","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"on","text_hash":"b8d31e852725afb1e26d53bab6095b2bff1749c9275be13ed1c05a56ed31ec09","tgt_lang":"ru","translated":"вкл.","updated_at":"2026-06-26T21:38:54.164Z"} +{"cache_key":"69da1a775948ca021a33a6c7376145213bda77cd6835307c256a88d0f784827b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"ru","translated":"Добавление…","updated_at":"2026-07-10T02:29:53.193Z"} +{"cache_key":"69eac66e84fff863130a15f54b2e7851d2a0df0a8b522e64999f898fe88c3772","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"ru","translated":"Control UI","updated_at":"2026-07-10T09:47:55.878Z"} {"cache_key":"6a1c8f5834d84b3bfa132260a2f004d6348438945f0f97a1aebe47f1b183e3e5","model":"gpt-5.5","provider":"openai","segment_id":"overview.stats.cron","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Cron","text_hash":"dd9d24965dbedc026915308732b77c1af68dcf52d3c0ca2421b1fdb0d197aca1","tgt_lang":"ru","translated":"Cron","updated_at":"2026-06-26T21:40:18.156Z"} {"cache_key":"6a58eb6f2931d6f76bc5c09b115ec75f0df5aa64393b8f5ea5e1eaa20611f91f","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"ru","translated":"Проверяйте, уточняйте и применяйте предложения до того, как они станут активными навыками.","updated_at":"2026-06-26T21:39:27.659Z"} {"cache_key":"6a5d400811c574a0e6f4391a9230b2acebe7032a2c1d70d119b58d280a5fe037","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.showAll","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Show all","text_hash":"2150d8df37e489573fb8f0f19ef89d2eda2ba4b49b3beb36333e5096a99a6dc0","tgt_lang":"ru","translated":"Показать все","updated_at":"2026-06-26T21:38:54.164Z"} @@ -731,6 +780,7 @@ {"cache_key":"6c4ba8f862e02e44e495825ddaf224dcc9796e459abe4f08f05548452213d811","model":"gpt-5.5","provider":"openai","segment_id":"workboard.run","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"ru","translated":"Запустить","updated_at":"2026-06-26T21:39:54.162Z"} {"cache_key":"6c81bba64b5ae3ec93f09ccb6f401e199e2d4c878b15ee5693fb47610e511493","model":"gpt-5.5","provider":"openai","segment_id":"usage.daily.tokensTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Daily Token Usage","text_hash":"f445094fe3729c2a1e457eaf56b11f5ca12f8b6c439051dd7a8076e1647df4b9","tgt_lang":"ru","translated":"Ежедневное использование токенов","updated_at":"2026-06-26T21:41:08.400Z"} {"cache_key":"6c927c7f6e9237366b995e8b7f3326c0ab79b10276d5ba12489994cea7a3cdda","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.avgCostHintMissing","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Average cost per message when providers report costs. Cost data is missing for some or all sessions in this range.","text_hash":"4f1f6c997cb843b8b3552b70703757658b20057b69d22ded3a212c0d2778cf9d","tgt_lang":"ru","translated":"Средняя стоимость одного сообщения, когда провайдеры сообщают стоимость. Данные о стоимости отсутствуют для некоторых или всех сессий в этом периоде.","updated_at":"2026-06-26T21:41:12.412Z"} +{"cache_key":"6c9c667338e65eaf5506efc7f6b0e487e0d0525386cf22792142dc77ff8d2ccf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"ru","translated":"Недоступно","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"6ca37d056d8d750f19c1ab44e2697f962a4ce3bc87d0cf370093c97c11d8e736","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"ru","translated":"Тенант: {tenant}","updated_at":"2026-06-26T21:39:47.132Z"} {"cache_key":"6cdc6d235796c5ea6032cf76546eab30ace5340b544f340213e91b24a64c7777","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.restartConfirmation.confirm","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Confirm Restart","text_hash":"0cbf6d0617c427e510f753b5b09dfeb7aef818f19cfedf797f5df992c904e870","tgt_lang":"ru","translated":"Подтвердить перезапуск","updated_at":"2026-06-26T21:40:41.209Z"} {"cache_key":"6d191d5be33e3526ce409ebb47e5f3768634f749da7f9a9b03f88c5a516c8959","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobList.enable","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"ru","translated":"Включить","updated_at":"2026-06-26T21:42:47.554Z"} @@ -750,6 +800,7 @@ {"cache_key":"6ee07249a5672484b261d6e532fbf272713efeaa2ea5b7e748136a476168572d","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"ru","translated":"Неизвестно","updated_at":"2026-06-26T21:42:24.729Z"} {"cache_key":"6eef9f4716def896e05428bc46fce1bedfb703c44efed091659372a9201e43f2","model":"gpt-5.5","provider":"openai","segment_id":"common.credential","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Credential","text_hash":"b1c42b3ce118093bc656bf16e7b87e069403a18246d2ea36d3c667850cb5bda1","tgt_lang":"ru","translated":"Учетные данные","updated_at":"2026-06-26T21:38:30.975Z"} {"cache_key":"6f0747ebba0ea00293d3294dd1bc33d91eb817282201c54bb3fd814bbc1b1d0b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.kind","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"ru","translated":"Тип","updated_at":"2026-06-26T21:38:51.115Z"} +{"cache_key":"6f1038d96f19b73e807d4f14fe98688450dbcae68f5f945f16ca034a5242f4ad","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"ru","translated":"Control UI и подключенный Gateway формируют идентичность.","updated_at":"2026-07-10T09:47:55.878Z"} {"cache_key":"6f2f46e2892db9ff3a3836311280834eeb7950d788e661651375c37a6b1c58f0","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.deliverySub","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Choose where run summaries are sent.","text_hash":"575d1babab75396c94a9f01f9a64a7f1f156b8d0efca48211903259eaad5a1d9","tgt_lang":"ru","translated":"Выберите, куда отправлять сводки запусков.","updated_at":"2026-06-26T21:42:36.583Z"} {"cache_key":"6f307c5a799a35f0deefaf82f76869d0b21f58d5ab9ba00a787ed1528f539a4f","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.emptyShortTerm","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No short-term entries to inspect.","text_hash":"2da0eeafc31b59fa5ff2c473c82b4d2589378ff500e4e06d5daad8ce3988a6e9","tgt_lang":"ru","translated":"Нет краткосрочных записей для просмотра.","updated_at":"2026-06-26T21:40:48.120Z"} {"cache_key":"6f387d2c95e9e205da08aad7d98c2448e2ccca87444c9f335198721a7961dd90","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.emptyHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Create one from a plain-language prompt; advanced fields can wait.","text_hash":"be6372063cab6a5d3b0c9764e1eb1f0b59cfff12aafc6eca771fff1570779ef7","tgt_lang":"ru","translated":"Создайте задание с помощью запроса на обычном языке; расширенные поля можно заполнить позже.","updated_at":"2026-06-26T21:42:21.706Z"} @@ -758,12 +809,15 @@ {"cache_key":"6f50bd2c99e8a4b9b87c94d33b08962afe00adca45e97940d595933e24505d89","model":"gpt-5.5","provider":"openai","segment_id":"overview.quickActions.refreshAll","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Refresh All","text_hash":"e0463641297da021b6f6e1e6f914442c613282e06813cf4d6b73ce97e1d946ac","tgt_lang":"ru","translated":"Обновить все","updated_at":"2026-06-26T21:40:31.548Z"} {"cache_key":"6f777d2cd6b123b1428af7f5e8ccb07b3ee6abfbc2cd1d0561cc67c76e19e9ca","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.streakDays","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"ru","translated":"{count} дн.","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"6fe8b8b82b119b4508deecc7000b03f4aa91fbc7c629a8c4d81162301798783a","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.sortSignals","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Strongest support","text_hash":"7a78c39506cf7151ca2ccb1b378c3c35e0fb551c4d15aea0c404e86de10f6244","tgt_lang":"ru","translated":"Самая сильная поддержка","updated_at":"2026-06-26T21:40:44.743Z"} +{"cache_key":"6fe98c4fbb85e079489de97aefa1e8b86dfbfac83894e4a5231016c80ffaa8c5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"ru","translated":"Все","updated_at":"2026-06-26T21:40:56.975Z"} {"cache_key":"6fecd6ee23d5eb414d117d6973da837445e38b3f0f43dcd4dde303c2cead6da6","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitRight","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Split right","text_hash":"aa9997bb1d8c23d0b88521c4093fc8c3ee01b187f78635ae4d3e16d27e8a8475","tgt_lang":"ru","translated":"Разделить вправо","updated_at":"2026-07-06T07:24:46.448Z"} {"cache_key":"6fedb4b420018520ef1c5f923183e79c9924feca7f7470a2ad4fab982d440f45","model":"gpt-5.5","provider":"openai","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"ru","translated":"Использовать текущий чат для запросов на доработку","updated_at":"2026-06-26T21:39:31.958Z"} {"cache_key":"7014477a5c356760ada33f35877a8ec96b6f94105de98196c93219472606af18","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.sessionsCapped","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count}+","text_hash":"4af395b8d907e1cc1d3de75eb4644a9ed3a243f5f5a66f93da927d7899844d57","tgt_lang":"ru","translated":"{count}+","updated_at":"2026-07-09T11:29:24.217Z"} {"cache_key":"703890edff6a5470d6a9627aa99da6a6b79aaf121c59fdefaeb3d3115216b2c6","model":"gpt-5.5","provider":"openai","segment_id":"workboard.hideEmptyColumns","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Hide empty columns","text_hash":"87ff28d1fc07e0e1d1497cc028e77bf8fb7ee956e4881f8a77fde0039e50863b","tgt_lang":"ru","translated":"Скрыть пустые столбцы","updated_at":"2026-06-26T21:40:03.947Z"} {"cache_key":"704a571437bd1bff75ecbd7868824a456690d451ef0e7433ee2ddab8ff803f04","model":"gpt-5.5","provider":"openai","segment_id":"common.reload","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Reload","text_hash":"bdc090ec61e3fcfc65f469951dfe00f3f2ecfc6003c44deac8e05b7237092de6","tgt_lang":"ru","translated":"Перезагрузить","updated_at":"2026-06-26T21:38:25.777Z"} {"cache_key":"70e02ee458493daf77320aab7157039b2f57c3f66d751db4286257072529a37c","model":"gpt-5.5","provider":"openai","segment_id":"debug.method","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Method","text_hash":"52a0f9b65b278850b53aad23136b5d574299e8fb92311304346d19736b7e9cce","tgt_lang":"ru","translated":"Метод","updated_at":"2026-06-26T21:39:17.817Z"} +{"cache_key":"70f0e482750b13c89510b7ce9edf25d91f39b9c710efc0b33eafd86673ae4222","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"ru","translated":"Дом и медиа","updated_at":"2026-07-10T05:22:49.195Z"} +{"cache_key":"711ecadc3927cfa30e3b4aa05222bd85f542c39323833ceae478c435020ff85b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"ru","translated":"В ClawHub нет результатов для «{query}».","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"711fe394d182951e68559c2f5b52746de0d77cb39d4e7199769c75b3fd8d1ab7","model":"gpt-5.5","provider":"openai","segment_id":"common.lastStart","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Last start","text_hash":"37a1eec0a7895251539d960c0ee5951c83da27223bdf5223c8440a4a48e061ef","tgt_lang":"ru","translated":"Последний запуск","updated_at":"2026-06-26T21:38:30.975Z"} {"cache_key":"713ba15c619fdfa71bdee82bfffe6ab356f2c90e7a66973a3c6137ddbc85858e","model":"gpt-5.5","provider":"openai","segment_id":"usage.scope.instance","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Current instance","text_hash":"962ffc6c660941ecc714fa817ce552f7f73ffe70e5f9f353797df5f15bdca136","tgt_lang":"ru","translated":"Текущий экземпляр","updated_at":"2026-06-26T21:40:56.975Z"} {"cache_key":"7152c53d35d2dbe6e961f4505f511bd2a3e3d2276a89fa142526446483c56f2b","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.toolCallsHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Total tool call count across sessions.","text_hash":"6f9118c475f5f5242ac54891fd9d6e3fb3c99c52d4cb0e4048ee615411c060e4","tgt_lang":"ru","translated":"Общее число вызовов инструментов во всех сессиях.","updated_at":"2026-06-26T21:41:12.411Z"} @@ -801,9 +855,11 @@ {"cache_key":"76a4cc2225ff5f1ea59b7d72c55832207509db88807f0641dadd3781fec6a301","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventUnarchived","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Unarchived","text_hash":"4aa9bb34ebb3feb2d7e2fc21777ca223a83beac6e236620799ae1bb41ddb37c0","tgt_lang":"ru","translated":"Разархивировано","updated_at":"2026-06-26T21:40:14.690Z"} {"cache_key":"76c245059a224f95433a78bbc8412622ae995dd0abffde1d9f0af292a5853085","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.copyName","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Copy session name","text_hash":"30a6a5c11915b5b6a99698ebe1cee13b7b84adcc45ccd0a827decce17ce45a2d","tgt_lang":"ru","translated":"Копировать название сеанса","updated_at":"2026-06-26T21:41:23.762Z"} {"cache_key":"76e50b485f2292490e4a92e1258ce5809a45a4490e9aae20f65c064c6e970b4f","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.stagedTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"From the Daily Log","text_hash":"bd5bd6787252a6faf14059e0fb7b122636ae23921b498a7ef7125486ab991545","tgt_lang":"ru","translated":"Из ежедневного журнала","updated_at":"2026-06-26T21:40:44.743Z"} +{"cache_key":"76eba2ba38c365444d12af5d11defc578e45b7cd13d585b7232fdc12c1cddf92","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"ru","translated":"Не удалось скопировать хеш коммита","updated_at":"2026-07-10T09:47:55.878Z"} {"cache_key":"76edae82d5b6f2a4497c8ec0e2a3a0200076166454e28bde5932cb4c115280b0","model":"gpt-5.5","provider":"openai","segment_id":"workboard.status.backlog","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Backlog","text_hash":"bf986e9a4f860eb0f3d2def12019dc81c8370e4fdd01940635c2265bae5791d0","tgt_lang":"ru","translated":"Бэклог","updated_at":"2026-06-26T21:39:38.402Z"} {"cache_key":"774bb2c08ba00177e2ba5404cd228c9e84704b7785b986f41791ffc64f3fee1a","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"ru","translated":"Выбранный микрофон недоступен. Выберите другой вход или System default.","updated_at":"2026-07-06T17:57:33.379Z"} {"cache_key":"774c115d94c9a9aaf96402377717341e32ca1a63776e59b05020faf5135b71eb","model":"gpt-5.5","provider":"openai","segment_id":"workboard.lifecycleLinked","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Linked","text_hash":"bfda026e6c598dde4d1b23c6a1789ba5a900b2e6d2e6b493469417c81dd16947","tgt_lang":"ru","translated":"Связано","updated_at":"2026-06-26T21:40:07.529Z"} +{"cache_key":"77505ac81c16adb153b848aecc9e70520e1aa4354e909355438c8833361f3403","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"ru","translated":"Имена серверов могут содержать буквы, цифры, точки, дефисы или подчеркивания.","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"775446fa07526a6ac1db64dfbd064c0466b93fc1eadd646352117bf96c5d8ec7","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.avgCostHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Average cost per message when providers report costs.","text_hash":"a01deeb63479411d326bea64e10de7982b037e8f9a6361e7d7ba136e438846e1","tgt_lang":"ru","translated":"Средняя стоимость одного сообщения, когда провайдеры сообщают стоимость.","updated_at":"2026-06-26T21:41:12.412Z"} {"cache_key":"77868d85f7632285ece519c74733148c228ff1757c3fd88e016bc8395af0adec","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.restartConfirmation.failed","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Could not apply change. Check your connection and try again.","text_hash":"5edd67e358d9d0d506cd4eb7f51c803950ccf17dbef7ea2afa768041c4920018","tgt_lang":"ru","translated":"Не удалось применить изменение. Проверьте подключение и повторите попытку.","updated_at":"2026-06-26T21:40:41.209Z"} {"cache_key":"7788f086856df010803ba33bcb6a432d55ecfddb50b350c1eccf1c4778ab1aac","model":"gpt-5.5","provider":"openai","segment_id":"languages.fa","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"فارسی (Persian)","text_hash":"16396f00e9a73b7e86b42f29489fb5939ce17072cf9ee031a9186490da5e05e3","tgt_lang":"ru","translated":"فارسی (персидский)","updated_at":"2026-06-26T21:42:10.945Z"} @@ -834,16 +890,20 @@ {"cache_key":"7a516f2ebcb9bfe8e0c7048f1974554b3bf850ac0801cad8d93bae80b491eccf","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.schedules.once.description","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"One-time, delete after run","text_hash":"19694753e141db752658d22dfb4c494a4f5452640d87b6cbcbb64bd665a13cd2","tgt_lang":"ru","translated":"Однократно, удалить после запуска","updated_at":"2026-06-26T21:42:14.995Z"} {"cache_key":"7a83709e50c8a383665ff92ca806900721ef80f426abd2f194d6bf2ad420c216","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.modelHelp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Start typing to pick a known model, or enter a custom one.","text_hash":"6ebac6c51e0da79d2ad76fe3d1395dff0c7a51ec7aa0d6b39ac38b0ba9fd8724","tgt_lang":"ru","translated":"Начните вводить, чтобы выбрать известную модель, или введите свою.","updated_at":"2026-06-26T21:42:44.768Z"} {"cache_key":"7ae58210608f3174df61be76dafefd9f55ba35b099b59ba7fbb15a58569a1aa2","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightAgents","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Agents in the reef","text_hash":"050a0a3d70a5c89d65789f7983024ee9eb2539cee6c2e0b31677ac78b0cd3534","tgt_lang":"ru","translated":"Агенты в рифе","updated_at":"2026-07-09T11:29:24.216Z"} +{"cache_key":"7b0e8222c285a54abb56ceb1c338f7dacebb92c2afb53e60c244e9dd8f0521c8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"ru","translated":"Подключитесь, чтобы просмотреть установленные и рекомендуемые плагины.","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"7b5c412bbe32f0c1296be723357b9bb4be8eaaed2dd399b0ad834c8cf65ce7f7","model":"gpt-5.5","provider":"openai","segment_id":"nodes.binding.loadConfigHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Load config to edit bindings.","text_hash":"075f4d7948e28bf0f85baefbdfe31e6a11a86d94ac38cbc3c100fdf8981c8839","tgt_lang":"ru","translated":"Загрузите конфигурацию, чтобы редактировать привязки.","updated_at":"2026-06-26T21:38:44.774Z"} {"cache_key":"7bbcf63a0101fc98448efa7e778f63e8a5e5575285bb9b9c370159b46a3f967e","model":"gpt-5.5","provider":"openai","segment_id":"chat.welcome.hintBeforeShortcut","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Type a message below ·","text_hash":"d7f17ca8fbb3ca2b6b0e5ea86ac9edeb36a2b53fc6e9089deb3b3bd19e5741b7","tgt_lang":"ru","translated":"Введите сообщение ниже ·","updated_at":"2026-06-26T21:41:54.248Z"} {"cache_key":"7bc32220253930828b0e8450887eee0bac7bbb5eab554cfa0399a7bcf1b96ae2","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.oldestFirst","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Oldest first","text_hash":"6e2ebdab3c02a3e6afd09432dbb9508b46e3174dfbf752e6b80d4b645189078c","tgt_lang":"ru","translated":"Сначала старые","updated_at":"2026-06-26T21:42:24.729Z"} {"cache_key":"7bdf826de81d03019b190f9b6dcecb897060c5c9ae815c3980bd1186f27e9acb","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.profile","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Your agent's stats, streaks, and life in the reef.","text_hash":"1fdc442e9cb9b6f4abdb44a4e6c4c304ab51c2dbe616e4c975add631108a4b28","tgt_lang":"ru","translated":"Статистика вашего агента, серии активности и жизнь на рифе.","updated_at":"2026-07-09T11:29:21.881Z"} {"cache_key":"7be1861421ec4cc9adf795ff81e25b1698a384ced432a39ed4001281b20e7d1c","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.daysCount","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"ru","translated":"{count} дн.","updated_at":"2026-06-26T21:41:03.285Z"} +{"cache_key":"7c2b115eb0444a4797a8c81057b61ba822b8fe3247beb80a3721dac422bee6d4","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"ru","translated":"Идентичность, встроенная при сборке этого браузерного артефакта.","updated_at":"2026-07-10T09:47:55.878Z"} {"cache_key":"7c577f64bff0f8641168783ccb087f1402a58add6e815a2b8984f0fd1df47627","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.origin.stepRestart","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Restart or reload the Gateway after changing allowed origins.","text_hash":"3c366c9fe45cebc7313e03554d7b5052f77e7b7efaca5a75d370f3e44b4be0f9","tgt_lang":"ru","translated":"Перезапустите или перезагрузите Gateway после изменения разрешенных источников.","updated_at":"2026-06-26T21:41:46.401Z"} {"cache_key":"7c84c7c0ab008600eb9eac3ec2da2f9dc974f4c5bd59f9e761edd0668492c2f7","model":"gpt-5.5","provider":"openai","segment_id":"workboard.fieldLabels","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Labels","text_hash":"934b8899c3d918d4b40bbb3512aed9c4ecd639c4be8e2263106536922a423121","tgt_lang":"ru","translated":"Метки","updated_at":"2026-06-26T21:40:00.644Z"} +{"cache_key":"7c9c4e6fa382443910e0382fe03e5c985bb7b04b10e5f5d34a2709c45afaa0ef","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"ru","translated":"Настройки MCP","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"7cef0a3a5cc0e4e379296d79acd03da6daf8536190e66bb60f95bef96f9ed14a","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.searchPlaceholder","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Name, description, or agent","text_hash":"1674f571a915b6d9959a4ca175474dc4e5710c3b3ec8ab3479480c29b98fa6f1","tgt_lang":"ru","translated":"Название, описание или агент","updated_at":"2026-06-26T21:42:18.092Z"} {"cache_key":"7cf1373263ff58c94d345451a18188dce90b58d4d36b48d53dc5a20ddda9248f","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.toolCalls","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Tool Calls","text_hash":"548ddc303bacce6b519d601219508cdbf5a27f81b466ccae5268286ae6c9fab9","tgt_lang":"ru","translated":"Вызовы инструментов","updated_at":"2026-06-26T21:41:12.411Z"} {"cache_key":"7d06f848f0841070f24a734b91760d3d00e0f1898b37a8e16163fe247cf9f706","model":"gpt-5.5","provider":"openai","segment_id":"usage.breakdown.cacheWrite","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Cache Write","text_hash":"1471a902cb72f0173bb438d603c33897462936c35a4155e71568e70fe65e2af4","tgt_lang":"ru","translated":"Запись в кэш","updated_at":"2026-06-26T21:41:08.400Z"} +{"cache_key":"7d681cd4ceea855c68ab0ec1e210d56620cf1036218b6add240323614355e8c9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"ru","translated":"Поиск в ClawHub","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"7d79bf6ea4346f634faf548f94883dd2b56b11c5e411f1900f32ffd95d19d5e9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.surface","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Surface","text_hash":"0905f7f59021c2a85f1c0a50d7c252a3e6c6ee006514f01d7264097f1fd4337a","tgt_lang":"ru","translated":"Поверхность","updated_at":"2026-06-26T21:39:01.088Z"} {"cache_key":"7daef60691f885b842e82694185c1cb3a974e98d78079d54d18207bf63fb7e4d","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.runStatusError","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Error","text_hash":"54a0e8c17ebb21a11f8a25b8042786ef7efe52441e6cc87e92c67e0c4c0c6e78","tgt_lang":"ru","translated":"Ошибка","updated_at":"2026-06-26T21:42:24.729Z"} {"cache_key":"7db1d6fdb836524f00a91bcf56f43b633c5f90749e24d7de155d23432df661fa","model":"gpt-5.5","provider":"openai","segment_id":"common.reset","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Reset","text_hash":"daee7606b339f3c339076fe2c9f372a3ff40c8ee896005d829c7481b64ca5303","tgt_lang":"ru","translated":"Сбросить","updated_at":"2026-06-26T21:38:25.777Z"} @@ -856,17 +916,20 @@ {"cache_key":"7e5e97682b8239e70849ef964424100d46abf45cf4bf9316e3b7c271c92fd86f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.statusTimeout","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Timed out","text_hash":"9718cc761cfd5810041ef007ae258fa1308b8487d0f30c5f36a442f8fe5f76c5","tgt_lang":"ru","translated":"Время ожидания истекло","updated_at":"2026-06-26T21:39:01.088Z"} {"cache_key":"7e90b79b13a7ddeff2c1e9e9b7ed958bba6ae6ee4ae4bad8a31cbf8fc4c60cd2","model":"gpt-5.5","provider":"openai","segment_id":"workboard.showArchivedShort","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"ru","translated":"Архивные","updated_at":"2026-06-26T21:39:54.162Z"} {"cache_key":"7e9135f8b3f41ca0a7573ed91a0a25cb7bea3972fded55a19fa6ec506386f009","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Jobs","text_hash":"2f17a0f8d518e491c5a0c490b2c1991828dd87d173994ba40996e1da59d4e368","tgt_lang":"ru","translated":"Задачи","updated_at":"2026-06-26T21:42:18.092Z"} +{"cache_key":"7ea700c740aa39d0b74e726e97694ff85571d2ba95bc0fec6475142c191096d0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"ru","translated":"Включен {name}. Для применения изменения требуется перезапуск Gateway.","updated_at":"2026-07-10T02:30:00.008Z"} {"cache_key":"7f5cee9a793ebe92e8c3d29d4960236753ac66af1c4d43d00c5d4d9d9f58eadc","model":"gpt-5.5","provider":"openai","segment_id":"chat.selectors.thinkingLevel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Chat thinking level","text_hash":"a05ab99ff70861cfbd44d04532d6a09bee09ffd30614edb965d8522bff9b13b4","tgt_lang":"ru","translated":"Уровень мышления чата","updated_at":"2026-06-26T21:41:59.944Z"} {"cache_key":"7f6af80fb27a3dde804523699b1f86df757578a6e97e1c6b3146fa9545bca840","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.avgTokens","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Avg Tokens / Msg","text_hash":"1f05d402adffc61f856e1a7635fe233c07b897448cae656802b70f7b3c521c88","tgt_lang":"ru","translated":"Среднее число токенов / сообщ.","updated_at":"2026-06-26T21:41:12.411Z"} {"cache_key":"7f7e946fa01ae1ac14f80df16a5c90c6207019b5ff0de6f9b90786257b806ea7","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"ru","translated":"Корень","updated_at":"2026-06-26T21:42:03.305Z"} {"cache_key":"7faecb9f22785c2531c997490eafa4240da6c27d76624575f8e9a3512ad04f2a","model":"gpt-5.5","provider":"openai","segment_id":"usage.mosaic.subtitleEmpty","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Estimates require session timestamps.","text_hash":"242d30713d9b93113fb26af72f562aab6200824db8395f314351cfcbe0a164f0","tgt_lang":"ru","translated":"Для оценки требуются временные метки сессий.","updated_at":"2026-06-26T21:41:31.698Z"} {"cache_key":"7fbc3e58a68e6bd44c035908f2cd401ede0dee2cb39cd8e9821839a5ab7614fe","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.collapse","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Collapse","text_hash":"be6eb1fc3b05bf9dceebad2eac7841d1b2f40bda9aa2da34df8ca22af02bc3ed","tgt_lang":"ru","translated":"Свернуть","updated_at":"2026-06-26T21:41:28.060Z"} {"cache_key":"7fc927f4f102e76351b65cd32c56bc24f89878419b886a3016dbe206267f9a3d","model":"gpt-5","provider":"openai","segment_id":"usage.daily.compressedScaleHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Square-root scale keeps low-usage days visible.","text_hash":"9515e7c6db149c32b64dba95a43e31a61d53dce8f11fe98683b234fb1cfd1920","tgt_lang":"ru","translated":"Шкала квадратного корня сохраняет видимость дней с низким использованием.","updated_at":"2026-07-05T20:24:32.108Z"} +{"cache_key":"7ff6424e053e2c3e4b1c59448e0047df480237fd24282fff6729026ba03ac454","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"ru","translated":"Удалить этот плагин?","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"8010ffb9423fd20f9ce8ce29aa983103398762f005bc7e19da107cd9fa302f13","model":"gpt-5.5","provider":"openai","segment_id":"overview.pairing.docsLink","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Docs: Device pairing","text_hash":"3c43dc8fc050619b6acd3ee877420360cba1387553c4bc6bf5036e34282c4879","tgt_lang":"ru","translated":"Документация: сопряжение устройств","updated_at":"2026-06-26T21:40:23.750Z"} {"cache_key":"80115806d81cf9e2726e0a8ce7bf9c5daa13adf0e9e6a39ac7aa7787079ec162","model":"gpt-5.5","provider":"openai","segment_id":"agents.cronPanel.jobs","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Jobs","text_hash":"2f17a0f8d518e491c5a0c490b2c1991828dd87d173994ba40996e1da59d4e368","tgt_lang":"ru","translated":"Задания","updated_at":"2026-06-26T21:39:07.415Z"} {"cache_key":"808de0e8dc6162620b235e8959d5aca004ac36f6b6d429a664a8b82208fb1f64","model":"gpt-5.5","provider":"openai","segment_id":"common.unselect","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Unselect","text_hash":"ce9c9590ba6ebcb72a0ee9ce96a234f22531886757525e3c97bc4bdef50942bc","tgt_lang":"ru","translated":"Снять выбор","updated_at":"2026-06-26T21:38:28.190Z"} {"cache_key":"80ae28b23845da043a4d7029b5cba8083b51777d15df5b6cbf622109aefdf690","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.cached","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"cached","text_hash":"3673014e72b67383be302485694555a57ad393afdebaed6ded110a775bd0556d","tgt_lang":"ru","translated":"кешировано","updated_at":"2026-06-26T21:41:16.423Z"} {"cache_key":"80bb7de6cd113e73b772b266123bd3b91d74484cfe1d3357004cc554771e514c","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.expression","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Expression","text_hash":"c67415bcff328a59fd399e2a7ca9691e0044192fb7480ae501644339965d046d","tgt_lang":"ru","translated":"Выражение","updated_at":"2026-06-26T21:42:31.568Z"} +{"cache_key":"80f3f5b76c096c4454115fcb56f6e7ca1e9b0a7bb2ca21210ad0bcaaa10308fa","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"ru","translated":"Скопировать полный хеш коммита","updated_at":"2026-07-10T09:47:55.878Z"} {"cache_key":"81229f59b5cc3e0f7682433d57d7be052dbfa22436ead0c4f6bc80284b30c9e7","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.messagesHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Total user and assistant messages in range.","text_hash":"fb47849222e3d9e020ec16c1a413c4a9d28d7028ba5496612a57ce0c597fc09a","tgt_lang":"ru","translated":"Общее число сообщений пользователя и ассистента за период.","updated_at":"2026-06-26T21:41:12.411Z"} {"cache_key":"812dc70e1cd8ec9fe3eea242ad778f5c4ecda534c2b7d277d247b3c8d76a2efd","model":"gpt-5.5","provider":"openai","segment_id":"chat.hideCronSessions","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Hide cron sessions","text_hash":"32ac86b13fa25acc4626f518ba49fe9c6307d7bb1b518e05c7eaf4b327a85840","tgt_lang":"ru","translated":"Скрыть сеансы cron","updated_at":"2026-06-26T21:41:50.918Z"} {"cache_key":"813d8c9e1002f0d7d6203a7a4af404e3a17559e5b5daf2e0c6b4d369ff51372f","model":"gpt-5.5","provider":"openai","segment_id":"agents.context.primaryModel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Primary Model","text_hash":"bc2701b024601dd88c58cdba885c980d2f87f74401b4182bfcbebf1cd9fe8647","tgt_lang":"ru","translated":"Основная модель","updated_at":"2026-06-26T21:39:04.015Z"} @@ -889,6 +952,7 @@ {"cache_key":"83ce904793461642b3447f02bc8123b16c267e2b9fadfddf150028d2e308e136","model":"gpt-5.5","provider":"openai","segment_id":"login.showPassword","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Show password","text_hash":"6aeaa6a53d09dcad071fdda6280b1e7c42aa164cd0514304ff162e7da440ffaa","tgt_lang":"ru","translated":"Показать пароль","updated_at":"2026-06-26T21:41:35.342Z"} {"cache_key":"8469536f8863637807463d563c81f88c4f305df1da0c25b0e1d0e79f5d6acf07","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.descending","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Descending","text_hash":"79479a6c76d8416ab7839952a2f8222e350862464f4d02db13d8d8f9551dbf8e","tgt_lang":"ru","translated":"По убыванию","updated_at":"2026-06-26T21:42:21.706Z"} {"cache_key":"847a94ab2175fd795fefdc98ac64c8e8345e1efd61eb4661cdf8b083fedf0267","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.displayNameHelp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Your full display name","text_hash":"577ade6f04f7c59ea5c0e10122c78353e03e55cbe771b60a6810bd440b02fe06","tgt_lang":"ru","translated":"Ваше полное отображаемое имя","updated_at":"2026-06-26T21:38:40.558Z"} +{"cache_key":"847ba54745eefe668b19cd0f671758dd4ade66381450db6cf734052ea28222a8","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"ru","translated":"Сведения о сборке Control UI","updated_at":"2026-07-10T09:47:55.878Z"} {"cache_key":"8490f5b55729612e2c6f22c67ee2f6749725bdf88f317c32f5ca58e6f8be5b3c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.active","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Updated within","text_hash":"e9537da244d0056a8bf64a2c9f33b5742c6521f804c72395b59ca0c7da0c60a3","tgt_lang":"ru","translated":"Обновлено в течение","updated_at":"2026-06-26T21:38:48.084Z"} {"cache_key":"84a6ec4c2397dbcedaef7ea30cfe245f0ebd01eaf96b364f3665466bbc4f8651","model":"gpt-5.5","provider":"openai","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"ru","translated":"выполняется","updated_at":"2026-06-26T21:39:57.757Z"} {"cache_key":"84d184fbb2b8748cf5c2181bb0358a1e48140aca32ef1dadc772ff667bc8bf81","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"ru","translated":"Автоматизация","updated_at":"2026-06-26T21:39:47.132Z"} @@ -905,6 +969,7 @@ {"cache_key":"8616e475f9582e571ca46f2b4f0baeee16d301dace9f8b3c81404ea71312fe83","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"ru","translated":"Открыть в браузере по умолчанию","updated_at":"2026-07-09T11:03:16.154Z"} {"cache_key":"86341b56a75b37c40fb12433c15fea3dd5106315b961039d6b03003ece83cc49","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.instances","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Connected clients and nodes.","text_hash":"a835fb9c31658a6a1076d66cdfd547029c0e859eb79cf1da08ea364cb8a1cd08","tgt_lang":"ru","translated":"Подключенные клиенты и узлы.","updated_at":"2026-06-26T21:39:27.659Z"} {"cache_key":"8642a67a9dde0ceda8131b0c53bc71ce898b9e901bc9a048bf4dc6d862156de3","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.staggerPlaceholder","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"30","text_hash":"624b60c58c9d8bfb6ff1886c2fd605d2adeb6ea4da576068201b6c6958ce93f4","tgt_lang":"ru","translated":"30","updated_at":"2026-06-26T21:42:41.136Z"} +{"cache_key":"86511647f4848ca310d4817741d609fecc636cc42ea00d9ca72bcc65233f291c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"ru","translated":"Отключено","updated_at":"2026-06-26T21:38:28.190Z"} {"cache_key":"86521fd58de460d7a9a78b2ac858e4bd76080b57bb574c138404ead21c952ec4","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.recentSessions","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Recent Sessions","text_hash":"f59b46c265d8d38fe5a10d81ea3b800931d2dc2c8a0ee180c5d8247ba7545cb7","tgt_lang":"ru","translated":"Недавние сеансы","updated_at":"2026-06-26T21:40:28.260Z"} {"cache_key":"86de3ac414494bd097d93f173578a4aec956cc98e30e48024a471a7d25b6a221","model":"gpt-5.5","provider":"openai","segment_id":"debug.snapshotsSubtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Status, health, and heartbeat data.","text_hash":"80c44e86939b84060eed0e92d108b453558de0459dfcdbdd6f682ec6fa5e038d","tgt_lang":"ru","translated":"Данные о статусе, работоспособности и heartbeat.","updated_at":"2026-06-26T21:39:14.470Z"} {"cache_key":"870d4b03285774f9f996f962d59c41558fd6ebe0eeb97b9a9d70df32e7dad75b","model":"gpt-5.5","provider":"openai","segment_id":"workboard.engineOpenAI","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"OpenAI","text_hash":"8b7d1a3187ab355dc31bc683aaa71ab5ed217940c12196a9cd5f4ca984babfa4","tgt_lang":"ru","translated":"OpenAI","updated_at":"2026-06-26T21:39:50.999Z"} @@ -947,6 +1012,7 @@ {"cache_key":"8ac694f6cbec5f2d587deb4f159be62f7806e4a21fc93de598ca7ffe1a5ffed3","model":"gpt-5.5","provider":"openai","segment_id":"overview.access.togglePasswordVisibility","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Toggle password visibility","text_hash":"1016c07b0f58d365790cc799fb215afd92fde1aeb5ac47cd17260e327465b2d6","tgt_lang":"ru","translated":"Переключить видимость пароля","updated_at":"2026-06-26T21:40:18.156Z"} {"cache_key":"8acbebf1fe46348d20c302defe0075d6c798d96c17512d9aa64ef1699f0c1e71","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"ru","translated":"Восстановить","updated_at":"2026-07-05T21:01:47.002Z"} {"cache_key":"8b096b6eaf59ec57d3e5c55c6fb0f2fcecd4f7aa3985c25bbe8e8c96b71c29f7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"ru","translated":"Закреплено","updated_at":"2026-06-26T21:40:59.486Z"} +{"cache_key":"8b1233767023d6274de25d827d23f887046d90cba6277b804553f70b799f0e09","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"ru","translated":"Плагины не найдены","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"8b283af9a4359dd4b55640b4e10f6c297c1ec6966cb8c6fc5b1632fc4f286441","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.sessionDetails","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Session details","text_hash":"caa57975e45173a0b92b1139e8c94c9ecb28ad7f1fd2bfd68247cdafefa61754","tgt_lang":"ru","translated":"Сведения о сеансе","updated_at":"2026-06-26T21:38:57.762Z"} {"cache_key":"8b53001c587c5914f424627f5100f4c65e23656da059e3f8ec603366a825c6b1","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"ru","translated":"Пользовательские группы","updated_at":"2026-07-05T14:40:26.836Z"} {"cache_key":"8b76549434ac2b6acd125bf9d1db1dc256b66b25d10cb26558772e7307022961","model":"gpt-5.5","provider":"openai","segment_id":"tabs.communications","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Communications","text_hash":"919a92533fbe1d8129cc12e67ce06b13c83f1cc619b4e0b2088bbd2d4cc9583c","tgt_lang":"ru","translated":"Коммуникации","updated_at":"2026-06-26T21:39:23.906Z"} @@ -957,8 +1023,10 @@ {"cache_key":"8c529e2afddf12e03d52f9ff567ad3c46cbdee30c4a101f327c510c1a8625895","model":"gpt-5.5","provider":"openai","segment_id":"common.unsavedChanges","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"You have unsaved changes","text_hash":"a4b17bc7db59e76b073a344d84ce06457042dde8c293cf91b4a994db2de58da7","tgt_lang":"ru","translated":"У вас есть несохраненные изменения","updated_at":"2026-06-26T21:38:34.337Z"} {"cache_key":"8c5854e848e1c0ef917f984346a0a9e3a6cf33470f1d7ebe69df4703782bbb27","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.export","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Export","text_hash":"3664895579f0a7e68c4aa09c91316e20239bc74499010e6423ece40cad7c28f7","tgt_lang":"ru","translated":"Экспорт","updated_at":"2026-06-26T21:41:54.248Z"} {"cache_key":"8c59e11e4cc0d72f9af6e357e3525a8d0e96107145412e0b8d4204111ecae37d","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.dreamingEmbeddings","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"dreaming in embeddings…","text_hash":"e17cd00c9abf4330434e5209a2fbb57d9ae277a90c390a0b42522fb836b54494","tgt_lang":"ru","translated":"сны в embeddings…","updated_at":"2026-06-26T21:40:53.979Z"} +{"cache_key":"8c6346bff05be8c1ee66153ba722e01c4ec9336d6eed1a1c66650fb0e5623140","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"ru","translated":"{name} удален. Для применения изменения требуется перезапуск Gateway.","updated_at":"2026-07-10T02:29:57.078Z"} {"cache_key":"8c68f9fed410162457a94936ce0316a05bd0a8c979785baf5e0a46aaf2b2ace6","model":"gpt-5.5","provider":"openai","segment_id":"agents.context.identityName","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Identity Name","text_hash":"d84785a85db54b51e0410c02d7b691f92d08ecf7677378cf43ad82ae4e8595f3","tgt_lang":"ru","translated":"Имя идентификатора","updated_at":"2026-06-26T21:39:04.015Z"} {"cache_key":"8c6ed1b7e3b8d1ca0d8a3af2c536c7651109a3c7e16cdc0731a366406a162c9b","model":"gpt-5.5","provider":"openai","segment_id":"agents.setDefaultTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Set as the default agent","text_hash":"f588662bdbbb9073d53dee24c3f99bfcbdd13bd639ed73092d2ae59272c19542","tgt_lang":"ru","translated":"Сделать агентом по умолчанию","updated_at":"2026-06-26T21:39:04.015Z"} +{"cache_key":"8c998baeff3791a59be55c952a7f7cede6bee23cc9f6036ee2c7889e28e0af96","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"ru","translated":"Работа и продуктивность","updated_at":"2026-07-10T05:22:49.195Z"} {"cache_key":"8cb7a6012b88f194e4029bb82120772216eaa6f3ed031b86cbdf27721b364195","model":"gpt-5.5","provider":"openai","segment_id":"activity.search","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"ru","translated":"Поиск","updated_at":"2026-06-26T21:39:31.958Z"} {"cache_key":"8cf4d832e69ea2c6931b2b50d9bc28a1aa3b02229cbd92c6ce0703109c82fa40","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.skills","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Skills","text_hash":"66d0f523a379b2de6f8d5fba3a817ebc395f7bcaa54cc132ca9dfa665d1e9378","tgt_lang":"ru","translated":"Навыки","updated_at":"2026-06-26T21:40:37.573Z"} {"cache_key":"8e378720f8a0a529524f77210061825e7e4b4c365a107194c8d2ba55bfd40a1b","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.diary.reload","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Reload","text_hash":"bdc090ec61e3fcfc65f469951dfe00f3f2ecfc6003c44deac8e05b7237092de6","tgt_lang":"ru","translated":"Обновить","updated_at":"2026-06-26T21:40:53.979Z"} @@ -970,8 +1038,11 @@ {"cache_key":"8eaddd3f3b9888a21f41600f7284c90880829c0b0e504c3ede82895e9a56c2d8","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"ru","translated":"Открыть в боковой панели","updated_at":"2026-07-09T11:03:16.153Z"} {"cache_key":"8ed4ab57587c5c5b8377af6b75a22c969cd55c70c627e1c7026a7f3c62855a0d","model":"gpt-5.5","provider":"openai","segment_id":"debug.noEvents","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No events yet.","text_hash":"80c652c4eeecf7a1ad0ba8f6fdabb39a23c31906e1882cc8580002e6e0c74c14","tgt_lang":"ru","translated":"Событий пока нет.","updated_at":"2026-06-26T21:39:17.817Z"} {"cache_key":"8eeb99a81640199ea8223809a95cc4bf1797ed149939fa0f1db8ea65c976b7e4","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"ru","translated":"Для Realtime Talk требуется доступ браузера к микрофону.","updated_at":"2026-07-06T17:57:33.379Z"} +{"cache_key":"8eeca1299d22a734c7f771b7e129fcf183db840807de1b055cb5861ee80d177d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"ru","translated":"Категория","updated_at":"2026-07-10T04:28:58.651Z"} {"cache_key":"8ef0ceb2bbd19b2aeebf47623b29bc35407a1a707f71fe469c16b174d49ba707","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"ru","translated":"Без группы","updated_at":"2026-07-05T14:40:26.836Z"} {"cache_key":"8f58194b055268e02aca86525986ea097a447f2ec9069890540bfdb830aca860","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"ru","translated":"{count} изменено","updated_at":"2026-06-26T21:42:06.902Z"} +{"cache_key":"8fa18efeb0bccd1fb7f3b2bc6aa3378b4525f2f4ccd0ce26ef2a4497b285efa8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"ru","translated":"Введите не менее двух символов, чтобы найти код и пакеты плагинов.","updated_at":"2026-07-10T02:29:44.281Z"} +{"cache_key":"8fbe00908f7efaa108cd7f6e3a0f68b636044ae59a63b7f848529dff5442e526","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"ru","translated":"Включен {name}.","updated_at":"2026-07-10T02:30:00.008Z"} {"cache_key":"8fd95ab674eff9100607e780db433217f41623dafb0ed0ebe9cb19224ac15df8","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.preview","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"ru","translated":"Предпросмотр","updated_at":"2026-06-26T21:39:11.166Z"} {"cache_key":"8fdd2003b926d896d29cf3cecc1679528346d11d1e1297e8f504c455728e6164","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.duration","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Duration","text_hash":"4fc52a3c4c558b517c463b22d86d0e3b9cfd4255c98fe3510f9075b37ab419c9","tgt_lang":"ru","translated":"Длительность","updated_at":"2026-06-26T21:41:23.762Z"} {"cache_key":"901507c9c94bd6084603a6a11645eb5e6400a4d36e08140400d11bd16aab39ee","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skills","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Skills","text_hash":"66d0f523a379b2de6f8d5fba3a817ebc395f7bcaa54cc132ca9dfa665d1e9378","tgt_lang":"ru","translated":"Навыки","updated_at":"2026-06-26T21:39:23.906Z"} @@ -980,6 +1051,7 @@ {"cache_key":"90a16704b5b46735468386293b3685d2ae244df6c54f786dc7f335bf298c4094","model":"gpt-5.5","provider":"openai","segment_id":"agents.cronPanel.runNow","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Run Now","text_hash":"849ccb784cf30af60f03256816d78e91a7947c9d9800dd26283e09a91c77b128","tgt_lang":"ru","translated":"Запустить сейчас","updated_at":"2026-06-26T21:39:11.166Z"} {"cache_key":"90a35d21a2f129e8ee379009fa3839ff9950619196be0a6fd36a1858ba829f77","model":"gpt-5.5","provider":"openai","segment_id":"overview.notes.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Notes","text_hash":"8a7525b1492fb84833f5c4a69b30f4bfbb134f9b666b61a2c1872d63d234c085","tgt_lang":"ru","translated":"Заметки","updated_at":"2026-06-26T21:40:18.156Z"} {"cache_key":"90c200335dac8350970003f966a55551c109d423b460e436fb46fe5af84c754f","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.footer.navigate","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"navigate","text_hash":"d0cda6559bb347db706f6fa92a5b2491658e0c1e5bda98bb14e3c8a711b8fa33","tgt_lang":"ru","translated":"навигация","updated_at":"2026-06-26T21:40:37.573Z"} +{"cache_key":"90cdedb5bcce02ecc2d97febe2907b9aa0482bfe2dcdd4c0295b3cdf2acffea7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"ru","translated":"Проблемы","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"90e86208940383c565e8f1573119653522e3345682cba4d0e9a2a666b727c338","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"ru","translated":"Популярные модели","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"9100147c877fc308494fe43517afba477ba1bb56dde71ea63cfb9d6ceecf8f12","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.schedules.everyMorning.label","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Every morning","text_hash":"344ad23fefa96a155f4e84ebefa592ceea3edd6102151890901d70d703dfcd58","tgt_lang":"ru","translated":"Каждое утро","updated_at":"2026-06-26T21:42:10.945Z"} {"cache_key":"9119c15a0ee72093f280b69b4b422908a8990e00d0c7cb894cf3a7407caa6ddf","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeClaimed","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"claimed by {owner}","text_hash":"18c06d9edba91112970b2827d8a00114cfc89d15af3271edd4b5173b856e3c8d","tgt_lang":"ru","translated":"назначено {owner}","updated_at":"2026-06-26T21:40:03.947Z"} @@ -1022,13 +1094,16 @@ {"cache_key":"9723a537d1984aa3ba06058ba3d531b432c9aeeff217e5dbef8c90af582fa7c7","model":"gpt-5.5","provider":"openai","segment_id":"agents.copyIdTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Copy agent ID to clipboard","text_hash":"af2bccd7856c791343d66ad6a2e6aa1a3d4d478754b4da90254fc0c4da3d88d3","tgt_lang":"ru","translated":"Скопировать ID агента в буфер обмена","updated_at":"2026-06-26T21:39:01.088Z"} {"cache_key":"9731fa4396336d0c270c84e1adf695d712d90a134a8ad729e0dfc03ca5937345","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.acrossMessages","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Across {count} messages","text_hash":"4878f07bf58138cb34043a4087c0eaef2bf45b367072b16eaeff2c6950c9fafe","tgt_lang":"ru","translated":"По {count} сообщениям","updated_at":"2026-06-26T21:41:12.412Z"} {"cache_key":"97547929c92de2c4f662c4e77611e1050aba562c6b88d57f725b5634244a3b1f","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.promotedDescription","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Items that already made it through promotion.","text_hash":"e64d609511dff83e5fe8d8906292d4f253e9aebe1e2787391dc02d7ce8d7234a","tgt_lang":"ru","translated":"Элементы, которые уже прошли повышение.","updated_at":"2026-06-26T21:40:44.743Z"} +{"cache_key":"975e6cb5fc7b941150855ef43a2901bbb18f13f78273c52edc27c1e918f504b5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"ru","translated":"ID плагина","updated_at":"2026-07-10T04:28:58.651Z"} {"cache_key":"978235f66eebbdcb2bd6459c4118ee8bec186ea2befbd998be2f51e9e26de1c4","model":"gpt-5.5","provider":"openai","segment_id":"workboard.lifecycleNeedsReview","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Needs review","text_hash":"07297fa94a997d0f807bd37c61993a8821ca406b5e4498e4f0759e50ab154dd4","tgt_lang":"ru","translated":"Требуется проверка","updated_at":"2026-06-26T21:40:07.529Z"} {"cache_key":"978f98722796377ffeb506e94d76fa1fb1fdeb9057ef6486a64ddafcbe180248","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"ru","translated":"{count} прочитано","updated_at":"2026-06-26T21:42:06.902Z"} +{"cache_key":"97d7365cdd31ceac500dc02b8e0a7d2953c5b4d9d9e643f580574145f7ac6786","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"ru","translated":"Установить {name}","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"9801778885b104e5c23ff98d6b664dcd0cf09ad303e71ee7b329db5ef72953b4","model":"gpt-5.5","provider":"openai","segment_id":"workboard.archiveCard","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Archive card","text_hash":"7dcc6c5d3c09f2a586eb974b2f69d1250eca004420eecc94310b290dfc9f566d","tgt_lang":"ru","translated":"Архивировать карточку","updated_at":"2026-06-26T21:39:43.912Z"} {"cache_key":"980603971baf75882d21bdf41b6b365c954f83d9118c7cf9860406d5d19a1c1c","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeLinks","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} links","text_hash":"e57a08b791263efb4e5af8bb8bae8286a5432b6ae9642655aaa4c73bc45f691f","tgt_lang":"ru","translated":"{count} ссылок","updated_at":"2026-06-26T21:40:00.644Z"} {"cache_key":"981737d474f1a323d34ec10ccd02d34c831029a84fbaa9aa7278d9adca785ddd","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.hasTools","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Has tools","text_hash":"d48cc1c7cd1c23c529b712f0ed5732866637ea037e2c1bdf1af25ef9c965b7b5","tgt_lang":"ru","translated":"Есть инструменты","updated_at":"2026-06-26T21:41:28.060Z"} {"cache_key":"981a3cd577c162caba4b7a3254db0194ebc08a519b5843b9ce8b9d8d8acadce1","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.bestEffortHelp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Do not fail the job if delivery itself fails.","text_hash":"8918ef73561c96327b9a787e29004f468e5641b126fe2d28991df4020e5b7859","tgt_lang":"ru","translated":"Не завершать задание с ошибкой, если не удалась сама доставка.","updated_at":"2026-06-26T21:42:44.768Z"} {"cache_key":"981ed836e41e955903b920f7de701f887734e2ca726992e2e71a62c20dc3449a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"ru","translated":"Хосты Codex не найдены","updated_at":"2026-07-09T10:01:43.745Z"} +{"cache_key":"9857aa732e8ccfbbb689d443c5496b39269a9679f2a904148ebaa40b117e6bd2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"ru","translated":"Добавлен {name}. Перед использованием обновите конечную точку и учетные данные в настройках MCP.","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"9858c882223272fefb67b1cc63e3c4c48a1e6c5c6385b016ee87658ca470383e","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"ru","translated":"Планировщик","updated_at":"2026-06-26T21:39:07.415Z"} {"cache_key":"98624ad1a3a623d66c5cf90c31e2a8a8683962646fc3d0832eac4227aab99930","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"ru","translated":"Активно","updated_at":"2026-06-26T21:38:25.777Z"} {"cache_key":"986b65aa9415b7a7903f923b2d0d344ac0120fdd47ae735ac4459c2e7d0ab0e1","model":"gpt-5.5","provider":"openai","segment_id":"agents.channels.subtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Gateway-wide channel status snapshot.","text_hash":"ec2da3c2795d082812a8dbd72ae91ab2aadb236aa1cbc77e5eb3b1ba2638c96e","tgt_lang":"ru","translated":"Снимок статуса каналов в пределах шлюза.","updated_at":"2026-06-26T21:39:07.415Z"} @@ -1054,6 +1129,7 @@ {"cache_key":"9b3a5867133580ef5beec48a55ef46f7d692d5b65aa2fa4bf04d27a6e7dd2af2","model":"gpt-5.5","provider":"openai","segment_id":"workboard.layout","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Card layout","text_hash":"f6853e95b79e5fd186406c0fd065c7e8b5b535f9973e9a42ef7d08a4d7e2b61e","tgt_lang":"ru","translated":"Макет карточек","updated_at":"2026-06-26T21:39:57.757Z"} {"cache_key":"9b8579045de401a3129b3d8ff2368a5e3d486d70f22ea80fc7e66534d4f178f8","model":"gpt-5.5","provider":"openai","segment_id":"agents.setDefault","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Set Default","text_hash":"c365f1cb6d8e84e7476450255ffb4dd9360ed4a895c83b5378238bcc764e39f8","tgt_lang":"ru","translated":"Сделать по умолчанию","updated_at":"2026-06-26T21:39:04.015Z"} {"cache_key":"9bc418f6562c503c7c04bdac0af28181cfa1048cea15a4c5e2827f94473054f5","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.loading","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Loading...","text_hash":"47d2a515ef2f05b87d688656286a61e4f743da4b878684c7654969db17711c40","tgt_lang":"ru","translated":"Загрузка...","updated_at":"2026-06-26T21:42:21.706Z"} +{"cache_key":"9bdc1da203b9d39c658621225882ef4f813c29d06e9abd05288aff7324d7bc81","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"ru","translated":"Удалить","updated_at":"2026-06-26T21:42:47.554Z"} {"cache_key":"9bef98bb721cd3aa4b0540f3a545611a6852a7be7925a011eef4e2378ea037e6","model":"gpt-5.5","provider":"openai","segment_id":"overview.attention.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Attention","text_hash":"c2eb8cd9d95643145e80db9cca75e934d9ee19cb10e9e6383a8f3cb14b57a624","tgt_lang":"ru","translated":"Внимание","updated_at":"2026-06-26T21:40:31.548Z"} {"cache_key":"9c0ef163855be159f4426c403cccb582b353b3bea2aaa7aa0465fc8351614631","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"ru","translated":"Очистить сейчас","updated_at":"2026-07-05T21:01:47.002Z"} {"cache_key":"9c56fe4221b84108cbc3d4e6257815f1569c7258d532034c7d59aea516273847","model":"gpt-5.5","provider":"openai","segment_id":"agents.tabs.overview","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Overview","text_hash":"d4b1ea5708dd532930a85188b45aff6f0a3ed458500c7577e0127a538eb0d100","tgt_lang":"ru","translated":"Обзор","updated_at":"2026-06-26T21:39:04.015Z"} @@ -1089,6 +1165,7 @@ {"cache_key":"a00e157791329f019988585d6c574984eced214c1abae0e50e8f4e1ceb85c2fa","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.sessions","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Sessions","text_hash":"6fa3cbf451b2a1d54159d42c3ea5ab8725b0c8620d831f8c1602676b38ab00e6","tgt_lang":"ru","translated":"Сеансы","updated_at":"2026-06-26T21:40:37.573Z"} {"cache_key":"a017bad16da84cdbecab0c1584038b36a170a014888ad744ed87b5ff69e4c8e7","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.emptyTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No scheduled jobs yet.","text_hash":"1a9aea39a9d508aa68ec86002fb75bf6636358775b5a223e971471561dc5abc3","tgt_lang":"ru","translated":"Запланированных заданий пока нет.","updated_at":"2026-06-26T21:42:21.706Z"} {"cache_key":"a026bf201825eae5ac345608100d2515887b62b8a4effa24dd042d4d1903347d","model":"gpt-5.5","provider":"openai","segment_id":"overview.pairing.mobileHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"On mobile? Copy the full URL (including #token=...) from openclaw dashboard --no-open on your desktop.","text_hash":"643a873cbcaeb3d3b7482411636f4c1bb74140384acc1736313cf7d71de4b083","tgt_lang":"ru","translated":"На мобильном устройстве? Скопируйте полный URL (включая #token=...) из openclaw dashboard --no-open на настольном компьютере.","updated_at":"2026-06-26T21:40:23.750Z"} +{"cache_key":"a052be2f4bc59c0bf429f787c553d0ae9ec0ff8778467f5f5747a1ed3ad62328","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"ru","translated":"Установленные","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"a08cbe488d5f3738ea331488f2940680d073b680e4feef0fdf8b51f4ff0f20b9","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.sessionHelp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Main posts a system event. Isolated runs a dedicated agent turn.","text_hash":"157f74bf6eca72fc5220f0fff45276ff74621e8d6bd094fc2976a42638712105","tgt_lang":"ru","translated":"Основной публикует системное событие. Изолированный запускает отдельный ход агента.","updated_at":"2026-06-26T21:42:31.568Z"} {"cache_key":"a10596cdab39e923fa432216f9f793c485d48eb2a4a96dfdeeb71d9dfedfd060","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.emptyPromoted","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No recent promotions to inspect.","text_hash":"8567f5da8f4809b0d871de3a50793ea5a7e89050f9768f2850a625f96ef6a35b","tgt_lang":"ru","translated":"Нет недавних повышений для просмотра.","updated_at":"2026-06-26T21:40:48.120Z"} {"cache_key":"a116b3b63d7dc700f80d3574f794bc4a4840ccb4f56924233f63ebb88aee33ca","model":"gpt-5.5","provider":"openai","segment_id":"activity.duration.ms","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} ms","text_hash":"4f6d5b615138fefacf1688c9664fc7b2d4bdffbb05fc324a9fec208faee554d0","tgt_lang":"ru","translated":"{count} мс","updated_at":"2026-06-26T21:39:38.402Z"} @@ -1112,6 +1189,7 @@ {"cache_key":"a4ce2f0ebd7c39ded53fa66d4329c5214e9638d6125a83df0b178d29f8792690","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.execApprovalNeeded","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Exec approval needed","text_hash":"3fc4e80c56aa2e74680e322f66fd0ea5b972f89c383e69b3355cbb9449f91ffc","tgt_lang":"ru","translated":"Требуется одобрение выполнения","updated_at":"2026-06-26T21:39:17.817Z"} {"cache_key":"a4e5c781dc7b2eea8cbce692eb50ad11931d4a8eb46a9ab1ff90fcb8af563c5e","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobList.disabled","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"disabled","text_hash":"17eb3c0168d0d7b21ede5481150f17233427d89833ec121b4dbc4fb96cfab71e","tgt_lang":"ru","translated":"отключено","updated_at":"2026-06-26T21:42:47.554Z"} {"cache_key":"a5274a9a467773294e462723439c23d20d54ea7f9cda755e839870079406f55b","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.yes","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Yes","text_hash":"85a39ab345d672ff8ca9b9c6876f3adcacf45ee7c1e2dbd2408fd338bd55e07e","tgt_lang":"ru","translated":"Да","updated_at":"2026-06-26T21:42:18.092Z"} +{"cache_key":"a53c899739ed513b27a2820b4400dab9a3c078466dc443ebc2ab4819e3c4b0b5","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"ru","translated":"Устанавливайте дополнительные возможности и управляйте ими.","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"a5601c50d35105fd6c7aa1237aab6bfb6b76a6eb0dd973152664a8e3ae31e9c9","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.allowOnce","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Allow once","text_hash":"168511d24d9ee03122b3200f929be11eaaedad45cb0ecb20a95f549b3e3f4d0f","tgt_lang":"ru","translated":"Разрешить один раз","updated_at":"2026-06-26T21:39:17.817Z"} {"cache_key":"a577d802af78afdbbe02a5ec53328b449b2dbef282fcb51554b254dc9cada324","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"ru","translated":"Категории расходов","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"a57bd02e9f4f15c74bb199c03bae0b5dcd9f3565b06fc9cae3e5bf7c6378079b","model":"gpt-5.5","provider":"openai","segment_id":"usage.presets.last7d","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"7d","text_hash":"a7c742643c7cc56cde61922fb5e8d3548a30b717e8e8b38bc5ec903f2c0be6d2","tgt_lang":"ru","translated":"7 дн.","updated_at":"2026-06-26T21:40:56.975Z"} @@ -1137,6 +1215,7 @@ {"cache_key":"a790de236b23906bfdd7b74f7c3988030bc408077c235d436990b85ffb88e518","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.modelAuthAttentionExpiringTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Model auth expiring soon","text_hash":"330e48cb1ac5728e8207087132398a091310c7ec1497ee8a553b5681e1b3eccb","tgt_lang":"ru","translated":"Срок действия авторизации модели скоро истечет","updated_at":"2026-06-26T21:40:31.548Z"} {"cache_key":"a7aacb77322a9f087652485bb955dd9e291a2e662594783dcfca993060a2b204","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.tabs.advanced","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Advanced","text_hash":"9f088dbebd6c3c70a5ddbc2c943b11e4ca9acea5757b0b4f2b32479f0dbb747e","tgt_lang":"ru","translated":"Расширенные","updated_at":"2026-06-26T21:40:37.573Z"} {"cache_key":"a7bc364edd91216acba86f85479212c6fe5c7d7af83682ff17bda8338792c8a5","model":"gpt-5.5","provider":"openai","segment_id":"activity.subtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Ephemeral tool activity derived from live session events.","text_hash":"87ec35f72de8306c5765b15f29233799314345c3f232fc7165f93e8a8eb6afc4","tgt_lang":"ru","translated":"Временная активность инструментов, полученная из событий текущей сессии.","updated_at":"2026-06-26T21:39:31.958Z"} +{"cache_key":"a7ee20f5afac31b2ad322a7201237963c70df882b2f5634e20dde117c6652371","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"ru","translated":"MCP-сервер {name} добавлен.","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"a80f7f64bfe8fe4e76bba62506bfe3e6bcbebd1b4d8bb0fdda807d15f6abea80","model":"gpt-5.5","provider":"openai","segment_id":"common.back","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Back","text_hash":"76900f1bfd16c8d4dd3d25e6f46638d7165aee23883ccea6bfe071c514421769","tgt_lang":"ru","translated":"Назад","updated_at":"2026-06-26T21:38:25.777Z"} {"cache_key":"a85841fc02938fea4df289ff555a3ffa9c079a2772347936919f5bc4a051b72d","model":"gpt-5.5","provider":"openai","segment_id":"agentTools.channelSource","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Channel: {id}","text_hash":"deeba4ed0001ba82ab20e37ea762c26095e52817c28b99b94e2e5026f88fee6c","tgt_lang":"ru","translated":"Канал: {id}","updated_at":"2026-06-26T21:39:20.621Z"} {"cache_key":"a8e01dfe49d4f8f0b9b060d827f25f9c603f168aa2cd4baf94ebcd4af39ccdd1","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventLinkAdded","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Link added","text_hash":"7d102bc84176d3d6bd36093b59654ed3278b1dba51b8b3c5d273376f06865a29","tgt_lang":"ru","translated":"Ссылка добавлена","updated_at":"2026-06-26T21:40:10.976Z"} @@ -1159,15 +1238,19 @@ {"cache_key":"ab1d69b730e3c9fdcc04f799ab3893ebc9ea096ee63d44fe96de9c785a330e26","model":"gpt-5.5","provider":"openai","segment_id":"tabs.appearance","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Appearance","text_hash":"3907fa7f80722a6fc58cd8c1bd30abf7638095d6774f183b6e831b7093957d1b","tgt_lang":"ru","translated":"Внешний вид","updated_at":"2026-06-26T21:39:23.906Z"} {"cache_key":"ab2f0ac596b29dced5724ec83e9b28e1f995f4e3f40a9a37abdd2ffdaddcfeaa","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.schedules.everyMorning.description","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Daily at 8:00 AM","text_hash":"1cd9af2c3816010faaffc9adb5efa4e0a337f35e5af82eb4f5462d09ad62a94b","tgt_lang":"ru","translated":"Ежедневно в 8:00","updated_at":"2026-06-26T21:42:10.945Z"} {"cache_key":"ab52258c85cbd2d760955ea15c554ac0f91aa5e629b8f13a23824ec4a06f9172","model":"gpt-5.5","provider":"openai","segment_id":"chat.welcome.hintAfterShortcut","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"for commands","text_hash":"ac0118309984f4848096ed87ecb0f402984b15d82ad8c47ebd183dabc57c7e3c","tgt_lang":"ru","translated":"для команд","updated_at":"2026-06-26T21:41:54.248Z"} +{"cache_key":"ab777001901aa8e34ec44b39855cd9e365aa002d9156a9e7c992f3c027c77c01","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"ru","translated":"MCP-коннекторы в один клик и подобранные поисковые запросы ClawHub для популярных сервисов.","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"aba9734d8aca8fb6d0ea507c7bc565181d47343bcffb0f0242efe302041141ef","model":"gpt-5.5","provider":"openai","segment_id":"agents.context.skillsFilter","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Skills Filter","text_hash":"55adfafb5397bbb183fd28a9fc9cee00c327d45ae1a9ed4841be66cd4658e99e","tgt_lang":"ru","translated":"Фильтр навыков","updated_at":"2026-06-26T21:39:07.415Z"} {"cache_key":"abb61aaeb67709f7ffd51c6eb72215a2f65e4daf4bb87ba26922a318b69ddda7","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.timeoutPlaceholder","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Optional, e.g. 90","text_hash":"6df8499092f2542448e280448a6915fe0d1b5354749ad0170108e193bfd23583","tgt_lang":"ru","translated":"Необязательно, например 90","updated_at":"2026-06-26T21:42:36.583Z"} {"cache_key":"abdd847d6c979c0253a6ff76f88d83560f0b3b41c2767036e93894bbb17b9e23","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.modelAuthAttentionExpiredDesc","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{providers} — re-authenticate with openclaw models auth","text_hash":"e883d59961999e0948fec3d4acbf11dc7c55a16beb27d313a0ce6cceb7ad2cb8","tgt_lang":"ru","translated":"{providers} — повторно авторизуйтесь с помощью openclaw models auth","updated_at":"2026-06-26T21:40:31.548Z"} +{"cache_key":"abe3262f7b9ed64f3e2de3e1e4ea4e1a54fe7ae63eecb7ef3b75e08f70206c90","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"ru","translated":"Требует внимания","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"ac8078afca4c0b402963e737bb23d110ccba16eb04bf643532e0b20634937dcf","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobDetail.delivery","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Delivery","text_hash":"52bfe584a5fc450539e2aa651b990fa2415060492a243816ab2994292089c6fd","tgt_lang":"ru","translated":"Доставка","updated_at":"2026-06-26T21:42:47.554Z"} {"cache_key":"ac91921acfc4c9757c041b79e1e0dfe6139f05e1ad15bca9839c5fffd24c5ac7","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttemptStarted","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Attempt started","text_hash":"0ae8b8907c7c597bb34df01a729e5e03821881a309d4f5ad2b42e002d6a90bd2","tgt_lang":"ru","translated":"Попытка начата","updated_at":"2026-06-26T21:40:10.976Z"} {"cache_key":"ac96710cb99d513d3bcb27825b0144a76b1876344246bb2dad7e3ab436c65873","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.diary.noDreamsHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Dreams will appear here after the first dreaming cycle runs.","text_hash":"8a252309d817bc57e543418f758794fec3efef8473bdf0bdeb22fb667edb76ff","tgt_lang":"ru","translated":"Сны появятся здесь после запуска первого цикла сновидений.","updated_at":"2026-06-26T21:40:48.120Z"} {"cache_key":"ac992c6de6fa2a6dc8143347013f7b46788d9bd2c5882c54e5558d29b6c730b9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.provider","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Provider","text_hash":"472590ae974d4c1f44b3780df0b152d9119f076c61bfb3e8cb6affd7889ac0a8","tgt_lang":"ru","translated":"Поставщик","updated_at":"2026-06-26T21:39:01.088Z"} {"cache_key":"aca39a6b6308e8f23686655e1e96d6c4b6bbb6cfa661f3eea31f6150cd738f86","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.agentSelect.label","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"ru","translated":"Агент","updated_at":"2026-06-26T21:40:37.573Z"} {"cache_key":"ad18340014e1fe26375be3c8b2a45c52477bd928fab54dcaf50195182e0a2191","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.diary.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Dream Diary","text_hash":"d3ded599fb9ffd44fa19bf0fe14f34454abaf87377543182d931e50a3f0033a2","tgt_lang":"ru","translated":"Дневник снов","updated_at":"2026-06-26T21:40:48.120Z"} +{"cache_key":"ad446854f1f6bb92a5b5708488fecff2bd49d786f24d767cb81bf7c0f1815d50","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"ru","translated":"Подключите свой мир","updated_at":"2026-07-10T02:29:49.002Z"} +{"cache_key":"ad5805f27e7bb9af9088960719c9c533436ae3b468d37d5dd3a40b2e0ddeb8ce","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"ru","translated":"Повседневная жизнь","updated_at":"2026-07-10T05:22:49.195Z"} {"cache_key":"ada9215cbf5d8cdec76ea656bf797675613549d14094a103c3904a88adabb80b","model":"gpt-5.5","provider":"openai","segment_id":"overview.notes.tailscaleTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Tailscale serve","text_hash":"a7446759d5c0164d0b327d23f369ff1bbe74a29611d1d5c0b763bc614b8e0d54","tgt_lang":"ru","translated":"Tailscale serve","updated_at":"2026-06-26T21:40:18.156Z"} {"cache_key":"adca1320c79acdc4bdd88c88d0728bf10fd3ff8905615bf127766fd3b559d411","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.searchConversation","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Search conversation","text_hash":"42c60071a9546a4a8e15a97ec5037957203d4a0e35e23cbc52664fc7bb189f61","tgt_lang":"ru","translated":"Поиск в беседе","updated_at":"2026-06-26T21:41:31.697Z"} {"cache_key":"add11be519b37bc59a69c57973cd4ab7874ba38c4d4718ef5ea50e72c7013e20","model":"gpt-5.5","provider":"openai","segment_id":"workboard.lifecycleIdleDetail","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No active run","text_hash":"87e6c43b902cea706f76dc5dc51dea5b5e141edd20e1c0a8a31e6850fb60833b","tgt_lang":"ru","translated":"Нет активного запуска","updated_at":"2026-06-26T21:40:07.529Z"} @@ -1218,6 +1301,7 @@ {"cache_key":"b5a15d7edf045d2222823d6b747b6086a51c9893c6b599fd42f824cb55ba0195","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.agentHelp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Start typing to pick a known agent, or enter a custom one.","text_hash":"451071fcd7e9e0c8b4a32102664d2a17739b132d024fa81b6f1e4cd254401b6e","tgt_lang":"ru","translated":"Начните вводить, чтобы выбрать известного агента, или введите свой вариант.","updated_at":"2026-06-26T21:42:28.070Z"} {"cache_key":"b5b09e96255d82cf30a8497e8f78c0391922a48b41c5727ce1a2be85a53fd6e4","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.nextHeartbeat","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Next heartbeat","text_hash":"35e70a7ab8a0d3998180f789eecbec9bbcfe0520d436d8eb142ad6a8fbd55ec1","tgt_lang":"ru","translated":"Следующая пульсация","updated_at":"2026-06-26T21:42:36.583Z"} {"cache_key":"b5e372b6067ea3cafabda07c192fbfac34098b410e58fb8f775754a255a3aaf6","model":"gpt-5.5","provider":"openai","segment_id":"workboard.fieldStatus","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"ru","translated":"Статус","updated_at":"2026-06-26T21:40:00.643Z"} +{"cache_key":"b5f2da34db6b61f50c616976e7767bd87a0e4f77d98bdf281ad5d5406d69ed12","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"ru","translated":"Подключите серверы Model Context Protocol, чтобы предоставить вашему агенту дополнительные инструменты. Изменения применяются к новым сеансам агента.","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"b6283ab5897545fedde39a11726ef76211ab5afcefe8640064a8cc2825bf7401","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.reset","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Reset","text_hash":"daee7606b339f3c339076fe2c9f372a3ff40c8ee896005d829c7481b64ca5303","tgt_lang":"ru","translated":"Сбросить","updated_at":"2026-06-26T21:42:21.706Z"} {"cache_key":"b66d77c0d9943bcce2003c32315b8db82f44ff70ec2198594938fd3d479b25aa","model":"gpt-5.5","provider":"openai","segment_id":"common.copied","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Copied!","text_hash":"ea61bc15688d1e482ae5335e8dc030d8300b1afc07ecc7c2e6af5c43728b1d25","tgt_lang":"ru","translated":"Скопировано!","updated_at":"2026-06-26T21:38:28.190Z"} {"cache_key":"b7148b1fb2383bccb1ff2f2aad83b279a8516e68c54e89378b62a72a4f385048","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventArchived","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"ru","translated":"Архивировано","updated_at":"2026-06-26T21:40:14.690Z"} @@ -1225,6 +1309,7 @@ {"cache_key":"b7bce589ea04fbc5fe90b948bee335c3825010a3bc4e113e5a5b9fc03be4811e","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.limitReached","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Showing first 1,000 sessions. Narrow date range for complete results.","text_hash":"677fc1d231d5e3a14126ba368b8c3c78db7b9ffafdd98259af67c64c07a4aa73","tgt_lang":"ru","translated":"Показаны первые 1 000 сеансов. Сузьте диапазон дат, чтобы получить полные результаты.","updated_at":"2026-06-26T21:41:23.762Z"} {"cache_key":"b7c291aad881fb7532187902ec0f3acf6fb93934c975799b58bef24040ee9e2e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"ru","translated":"хосты","updated_at":"2026-07-09T10:01:43.745Z"} {"cache_key":"b7d90d81b61506b8ec75c7b24910d85c409c49ce2a2531f83eedfcc0b77b08e5","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.modelPlaceholder","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"openai/gpt-5.2","text_hash":"6132e68d7f0a0599f9968517c48ad233160cb117b47061c666343a680e0f969d","tgt_lang":"ru","translated":"openai/gpt-5.2","updated_at":"2026-06-26T21:42:44.768Z"} +{"cache_key":"b7f44c8e5924decbdd8c123777c4e9517765ebe23ff058ecd84d4d49cd7c0ed3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"ru","translated":"Пакет","updated_at":"2026-07-10T04:28:58.651Z"} {"cache_key":"b7fbee43b3c582f7c7969d81c2e9eda1ea9091282604b715cafb728e2011d812","model":"gpt-5.5","provider":"openai","segment_id":"usage.cacheStatus.status.partial","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"partial","text_hash":"9834a14ab9bcaa0f6a8da71073617eac8f004e596a3fa11d807b84631b825d9d","tgt_lang":"ru","translated":"частично","updated_at":"2026-06-26T21:41:08.399Z"} {"cache_key":"b84003a6e92a1a371fb2e3b63fbb5bb6e372b7c63e6dcf876a3ce48bae350cb5","model":"gpt-5.5","provider":"openai","segment_id":"agentTools.connectedSource","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Connected: {id}","text_hash":"ab0206010190ba2d650ef8e223392239cdd44cb2d7aec00e40499da324731f95","tgt_lang":"ru","translated":"Подключено: {id}","updated_at":"2026-06-26T21:39:20.621Z"} {"cache_key":"b85b7084381287d8223e7b42f01ca48074484e5bbdc3e58d256cf1d8d614e8be","model":"gpt-5.5","provider":"openai","segment_id":"overview.snapshot.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Snapshot","text_hash":"6ad27bd4ec33b079208334dfea86ff96900f95ca640dda1d2638d694d077668b","tgt_lang":"ru","translated":"Снимок","updated_at":"2026-06-26T21:40:18.156Z"} @@ -1237,7 +1322,6 @@ {"cache_key":"b9253c9732434f90638a31e02282e444eefed4d30120fda2635df7b000192eb8","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phase.rem","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Rem","text_hash":"4c14dc4d912623b7710f1cd7038895f720aa9f374e34e82492fe6e5a16b513cf","tgt_lang":"ru","translated":"Rem","updated_at":"2026-06-26T21:40:44.743Z"} {"cache_key":"b92b7af083ec4421a8a855785b86201059a8bb85c177c1d23d09fcb6e36b634d","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.stats.signals","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Signals","text_hash":"88b01c8a4bff9a08b6b56b8de43beb07205956d64d1c58eff683de7eaf3645e5","tgt_lang":"ru","translated":"Сигналы","updated_at":"2026-06-26T21:40:48.120Z"} {"cache_key":"b95a0ac8942138dd5a1066893853741adce2e564787a2af9ef9dcf51b40aaa5e","model":"gpt-5.5","provider":"openai","segment_id":"channels.gatewayUrlConfirmation.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Change Gateway URL","text_hash":"72b5e3578a95dcde8c7bb08200cffc3dbeb405095e2304cc93f71b18977cc145","tgt_lang":"ru","translated":"Изменить URL шлюза","updated_at":"2026-06-26T21:38:34.337Z"} -{"cache_key":"b99a4d2844431df8527f5bbee4b865311290764c45fe5d564b368461c6b0e04a","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"ru","translated":"Звуки омара","updated_at":"2026-07-10T04:50:47.996Z"} {"cache_key":"b9c98fc7f3b6ea3d7a93e8f9372ba55eef25a459161cc60337331c12f3758b5e","model":"gpt-5.5","provider":"openai","segment_id":"usage.export.json","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"JSON","text_hash":"db1a21a0bc2ef8fbe13ac4cf044e8c9116d29137d5ed8b916ab63dcb2d4290df","tgt_lang":"ru","translated":"JSON","updated_at":"2026-06-26T21:41:03.285Z"} {"cache_key":"b9d61a5db173290f444776963d49621d147f62501c33983286e6a5ed4feccc48","model":"gpt-5.5","provider":"openai","segment_id":"agents.context.openFilesTab","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Open Files tab","text_hash":"423a21a02bc6f7c21d6c85e30f0bc0827c497b6bc4123767375edd67f463c7bf","tgt_lang":"ru","translated":"Открыть вкладку «Файлы»","updated_at":"2026-06-26T21:39:04.015Z"} {"cache_key":"b9f739228575de1aa9730bc418084099d99f1fd8a138b04c13dc09a3cc9dc883","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.originMixed","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"mixed","text_hash":"3f8fee624f43b2a9d685353269a0ab3eac785863ab6227636db1060fba1855e0","tgt_lang":"ru","translated":"смешано","updated_at":"2026-06-26T21:40:44.743Z"} @@ -1259,9 +1343,11 @@ {"cache_key":"bce923b1f1075020bb18774b526a966b0b1d8f53465b49df9ca05e17b9ecb448","model":"gpt-5.5","provider":"openai","segment_id":"workboard.labelsPlaceholder","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"ui, docs","text_hash":"6530f03703b6ee82d66e67257d117cd8f0a87247ab7f66c631e19f7060dd361b","tgt_lang":"ru","translated":"ui, docs","updated_at":"2026-06-26T21:40:03.947Z"} {"cache_key":"bcf16e40bc78981033492d5e20e1a43ed2838e0d7c1cc39bd503881eabebf44f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"ru","translated":"Удалить группу…","updated_at":"2026-07-06T23:41:27.246Z"} {"cache_key":"bd20ebee47c78efb31e1c3a2386694540779f984e11ad54fde81291cfa230d9e","model":"gpt-5.5","provider":"openai","segment_id":"usage.mosaic.eightPm","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"8pm","text_hash":"232df857db5e72521b783719e674c41bce48738283c637b44ed2a80fa81ec56c","tgt_lang":"ru","translated":"20:00","updated_at":"2026-06-26T21:41:31.698Z"} +{"cache_key":"bd6f78f0e7350904da8170336e4171cbf089186aa1d00e768bc8d281b4a2a836","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"ru","translated":"Удаление…","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"bd796c37d96a47a561c0d16e6db65d0a1b9f355a36ae59b42402b9e3555f9544","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.words","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} words","text_hash":"caab2939348211270cf707c28b881251d4cf42057fc19cfee56211dbd7b28eb1","tgt_lang":"ru","translated":"{count} слов","updated_at":"2026-06-26T21:39:14.470Z"} {"cache_key":"bdf2a9f3099935ea3191b89fe14b18dd3133c8329f0f2dfb5c9a9a31b13c4787","model":"gpt-5.5","provider":"openai","segment_id":"execApproval.labels.cwd","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"ru","translated":"CWD","updated_at":"2026-06-26T21:39:20.621Z"} {"cache_key":"be1da8ed75a68d4e7b37ef77778e49dc3695155990fce052b8fca0319e144c0c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"ru","translated":"Открыть чат","updated_at":"2026-07-09T08:27:32.223Z"} +{"cache_key":"be2ea5d45abe64a2bfd4898d180040464295d6ecba4040e8fb39ebf5086dbe13","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"ru","translated":"Рабочая область","updated_at":"2026-06-26T21:39:11.166Z"} {"cache_key":"be469c1345599a5728ea67e27ed1758070a3726e158caca0af65c9d5c82dd0a5","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phase.light","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Light","text_hash":"dbcd5e7bb7a0f538810de44c3efbd813037ee3fa358747bb71fa58e157af45f7","tgt_lang":"ru","translated":"Легкая","updated_at":"2026-06-26T21:40:41.209Z"} {"cache_key":"be92a7a1a578b762de3aa11433e015acb72ea34c1b578be009a3f49c97c31f49","model":"gpt-5.5","provider":"openai","segment_id":"workboard.lifecycleUnlinkedDetail","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Start or link a session","text_hash":"e27aceab018ad628ba3840a8bfc80a50b697f67d8b4a4fd4144b8cfc5bd5eb3e","tgt_lang":"ru","translated":"Запустите или свяжите сеанс","updated_at":"2026-06-26T21:40:07.529Z"} {"cache_key":"bea35cef3a10d080a2ea7b0e21961c93a94748cd09f33c550158883073557497","model":"gpt-5.5","provider":"openai","segment_id":"agents.context.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Agent Context","text_hash":"e95dfac3306c6052222ee5f2007267d30280c46d5dfa4600ee86f56a6d20b27b","tgt_lang":"ru","translated":"Контекст агента","updated_at":"2026-06-26T21:39:04.015Z"} @@ -1284,16 +1370,20 @@ {"cache_key":"c1c804ccec359199fa58a1abf1e35f3cb69bb38a46902151be14c178a2d7f652","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"ru","translated":"Рабочая область сеанса","updated_at":"2026-06-26T21:42:03.305Z"} {"cache_key":"c1d5778682707234765f11292daab138e33f57eb467965063f7d68eab0dcdb2a","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.channels","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Channels and settings.","text_hash":"c638a7924fc0fc1cf02059111dd7d81a01173c0b223b2b43526dbb37a9f5604e","tgt_lang":"ru","translated":"Каналы и настройки.","updated_at":"2026-06-26T21:39:27.659Z"} {"cache_key":"c1e74c83f953bdd3ec64caea48faf2252f04d1668c7f03701c4e3abcaba06028","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.timeZone","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Time zone","text_hash":"b9fe1464783e1c0d3a12dbde2686e883482a4fa03f33351af3e576d7a9d32fe0","tgt_lang":"ru","translated":"Часовой пояс","updated_at":"2026-06-26T21:40:59.486Z"} +{"cache_key":"c2b2d5d6788396fa158f5c2b5f7411821a339c998698c7a5efee9a731cf0b574","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"ru","translated":"Включено","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"c2ed3bfc9c7f2a8868cba229deaf7742762f082ca4adb3574691c739946e54c8","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.noneInternal","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"None (internal)","text_hash":"f6820177591201d55e4b4c69520b46b4877c998d9ab3861bf0020a680c449397","tgt_lang":"ru","translated":"Нет (внутреннее)","updated_at":"2026-06-26T21:42:36.583Z"} {"cache_key":"c2f07a04b7333c465da4d98c21a7e9bf794dbc102eea63ad80872db0f8ed7d38","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.perTurn","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Per Turn","text_hash":"49c95953f8b111b40d6d74134509649a7f157b4526004a697ecea893474ddc88","tgt_lang":"ru","translated":"За ход","updated_at":"2026-06-26T21:41:23.762Z"} {"cache_key":"c313067fcf8c1003560f90d88f7ba4bb50cf8b95ee677a4da9a403f5396ac3d6","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.empty","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No files found.","text_hash":"17d558b60b5e0c699055b8554ad23fce2c1665b2e270796380bbd1eeca8dc48f","tgt_lang":"ru","translated":"Файлы не найдены.","updated_at":"2026-06-26T21:39:11.166Z"} {"cache_key":"c452e596d04fafa1bdc62695fb44d8a4da54d2ee9a4945716d041c6e374d31b6","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"ru","translated":"Показаны первые найденные файлы. Уточните поиск, чтобы сузить результаты.","updated_at":"2026-06-26T21:42:06.902Z"} +{"cache_key":"c4676ee3388a6dca18123dc1d2dd549b0a5d236f37bb904413e53c061a97cf92","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"ru","translated":"Не установлены дополнительные плагины","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"c46d29085a3fee41b78a712ebae216e9ae91e9e382b4038fac10f5435a995057","model":"gpt-5.5","provider":"openai","segment_id":"nav.chat","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Chat","text_hash":"460b3a7da007b7af9d35bca54181dc91382263b2bf133ca214871ca1fed1fc1c","tgt_lang":"ru","translated":"Чат","updated_at":"2026-06-26T21:39:20.621Z"} {"cache_key":"c4b63cbe8c8d8bf1bd92d6d01db85a486603c2380ca32840ea6e66ab54a3f29a","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"ru","translated":"Последняя активность","updated_at":"2026-07-05T21:01:47.002Z"} {"cache_key":"c4d3393c145d93c46d8a24332a1afedff0ee8b14a9ac0cf7579885e5b0d37c1a","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.displayName","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Display Name","text_hash":"18d67c992b71ce69eb924554dbace110236c7e2db06effceb3d690b8cd64a671","tgt_lang":"ru","translated":"Отображаемое имя","updated_at":"2026-06-26T21:38:40.558Z"} {"cache_key":"c4ef21fb98b7e37c9669b681ee2e81cc1b023ed5624fbf898b79eb1bb7426e5b","model":"gpt-5.5","provider":"openai","segment_id":"common.colorMode","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Color mode","text_hash":"9f1e7d7d98b21e7354ee147c6d901704d7b17e407d5b07e345de1a46059ab391","tgt_lang":"ru","translated":"Цветовой режим","updated_at":"2026-06-26T21:38:30.975Z"} {"cache_key":"c5a716c246c46b112550f42bea3dacf295ae219a8b8fd9f41643a404a2765a1f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.activeRun","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Active run","text_hash":"2875c215ec9100c887d7e5b4c02c05d3e2c1c4698557109b88509612de10c3c6","tgt_lang":"ru","translated":"Активный запуск","updated_at":"2026-06-26T21:39:01.088Z"} {"cache_key":"c5bcb4f77eb0d1399a44398fc8684aa805642a2c73d2ccd61c85500658e62815","model":"gpt-5.5","provider":"openai","segment_id":"cron.errors.timeoutInvalid","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"If set, timeout must be greater than 0 seconds.","text_hash":"0764500a498eaaaaec3489e0850a815efb7cf0adafcb92f37ea6ee779d281ee3","tgt_lang":"ru","translated":"Если задано, время ожидания должно быть больше 0 секунд.","updated_at":"2026-06-26T21:42:51.343Z"} +{"cache_key":"c5fb923d87dad9d669d35038288a3cd482b6dd60be6a135bac59d6df216d9a1e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"ru","translated":"Включено","updated_at":"2026-06-26T21:38:28.190Z"} +{"cache_key":"c6456b71e09ced4f79d885a2eee6b653e75cc0bf948f28393ef6876e659eb1ab","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"ru","translated":"Включить","updated_at":"2026-06-26T21:42:47.554Z"} {"cache_key":"c65e8ed152c467dcb755a2bfd991586ff3ea36f7665cb2720340904def7b589c","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"ru","translated":"Для расширенных настроек Talk требуется доступ operator.admin.","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"c6724cfb9095a771f2ea977e92ce926cc43bd0f12b8e7b38952509a1cbbfcdc1","model":"gpt-5.5","provider":"openai","segment_id":"overview.access.password","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Password (not stored)","text_hash":"a693085108fe8ddea3acb78ba8ac0c275e593fc85db1c526006247ceb1372dda","tgt_lang":"ru","translated":"Пароль (не сохраняется)","updated_at":"2026-06-26T21:40:14.690Z"} {"cache_key":"c6930c48ee5a54c87a61072362185e63e2fa73b440f0ba6b020828faff48a340","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.manual","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"manual","text_hash":"36bde66f289a35683683b041c6d8f418a5f36607b547da25d00ad55891e80b88","tgt_lang":"ru","translated":"ручной","updated_at":"2026-06-26T21:38:57.762Z"} @@ -1310,6 +1400,7 @@ {"cache_key":"c7546645b2115dced72e3be3dfaf34cf5862e735348d1406fc6f4db9cba4a641","model":"gpt-5.5","provider":"openai","segment_id":"usage.mosaic.subtitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Estimated from session spans (first/last activity). Time zone: {zone}.","text_hash":"711be9280277f81f8392c1db00b40b8e2ecc9f4fe322da79b19f260b46b0a1f0","tgt_lang":"ru","translated":"Оценено по интервалам сессий (первая/последняя активность). Часовой пояс: {zone}.","updated_at":"2026-06-26T21:41:31.698Z"} {"cache_key":"c7fdf2d4137fcd8ab7c4976489acdd2d339e282c3c30286e73401368c8b384c8","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.modelAuthAttentionExpiringEntry","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{provider} ({when})","text_hash":"f5fa225135cb884aadd709efcf920e60a9f5b453e0c22588771fc7c26a54bd84","tgt_lang":"ru","translated":"{provider} ({when})","updated_at":"2026-06-26T21:40:31.548Z"} {"cache_key":"c825ea2250de3118415fab2536cd63f55f9694cbd6fe8291069b2aa79a636522","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.avg","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"avg","text_hash":"ca5c8585b0760a760e0b887800360306b60288aa8581d4800ab42bc2c0d591a5","tgt_lang":"ru","translated":"сред.","updated_at":"2026-06-26T21:41:20.199Z"} +{"cache_key":"c826032d6c9c45c900fea8f19936a7221b4ea745b0cce51b01202e32419eb949","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"ru","translated":"Не удалось обновить конфигурацию Control UI: {error}","updated_at":"2026-07-10T02:30:00.008Z"} {"cache_key":"c8adefdd49032777eae23716d8d57479974c49fce3f58f8bcd4fe26d4a057f2a","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.delivery","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Delivery","text_hash":"52bfe584a5fc450539e2aa651b990fa2415060492a243816ab2994292089c6fd","tgt_lang":"ru","translated":"Доставка","updated_at":"2026-06-26T21:42:24.729Z"} {"cache_key":"c8dfee4cdffaa60d67d2d73310d110229c05e720afe9f5fbbaa8905967cd2514","model":"gpt-5.5","provider":"openai","segment_id":"debug.paramsJson","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Params (JSON)","text_hash":"adbe0d09b6013e73b452809700b2e2d9b16e962404c63daba16a63d1ef3f9e55","tgt_lang":"ru","translated":"Параметры (JSON)","updated_at":"2026-06-26T21:39:17.817Z"} {"cache_key":"c9333aabae6ede653477e1f8ff4a737eb9c52ba9394e0266ca0ad9aedb52f771","model":"gpt-5.5","provider":"openai","segment_id":"nodes.binding.formModeHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Switch the Config tab to Form mode to edit bindings here.","text_hash":"af8526a5a7a925ecaa127907fc4e377373054036b27f99251767b5e4a2a135f8","tgt_lang":"ru","translated":"Переключите вкладку Config в режим Form, чтобы редактировать привязки здесь.","updated_at":"2026-06-26T21:38:44.774Z"} @@ -1328,6 +1419,7 @@ {"cache_key":"cb27fa31709e60f94eba381ecefaf835b4cf248bdd501b5ba78f61a0fd25333d","model":"gpt-5.5","provider":"openai","segment_id":"overview.logTail.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Gateway Logs","text_hash":"afaa136cec7bf29de97b11e2a94f24663fd1dcba69492b90c4980a6f710e0fc6","tgt_lang":"ru","translated":"Журналы шлюза","updated_at":"2026-06-26T21:40:31.548Z"} {"cache_key":"cb2ae710b872a9f0a9a32037dde1e3fd2ff697be93ba00cab639226f965d3f15","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.editProfile","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Edit Profile","text_hash":"fec2ac0f4cf167e35facd4d2038d15e8d60cbd604d7769635012a48a87363f44","tgt_lang":"ru","translated":"Редактировать профиль","updated_at":"2026-06-26T21:38:40.558Z"} {"cache_key":"cb3ba0f61ba314332a3c090b0b3fc7ecf1f15021ddbbb03e40498446ab7afd0b","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.schedules.weekly.description","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Every Monday at 9:00 AM","text_hash":"bedf746e8750ac13c045b772742a4d7139986ec1945de46b541b20cd59f55eb1","tgt_lang":"ru","translated":"Каждый понедельник в 9:00","updated_at":"2026-06-26T21:42:14.995Z"} +{"cache_key":"cba2b282cfb508be2a580e47fdb2253739fe21c7d6606b67ebba1fb3a8910a6f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"ru","translated":"Установлено","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"cbf5139e5550f0a7dfcbf0c343f7e5c7e4bac43a8576789239044cde4684654a","model":"gpt-5.5","provider":"openai","segment_id":"common.system","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"ru","translated":"Системная","updated_at":"2026-06-26T21:38:28.190Z"} {"cache_key":"cc1cbb8fdc50884d29a49b84bc4b6d00c023b42967d321afe5d474fe9653e223","model":"gpt-5.5","provider":"openai","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"ru","translated":"Готово","updated_at":"2026-06-26T21:39:50.999Z"} {"cache_key":"cc4564372d684ddc7255cf5f90fcb075503edbe84a0426affb2c6907cc4c597d","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLongestSession","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Longest session","text_hash":"7f727c1b85939ac165087fe5c3081e15ca00c6e6a0c0b6f8c908ff21eda7a4f2","tgt_lang":"ru","translated":"Самая длинная сессия","updated_at":"2026-07-09T11:29:21.881Z"} @@ -1345,6 +1437,7 @@ {"cache_key":"cdf3c6fba1f060dd3f57e68e0867b8cdbc5c7e1b477489fc8e2427780a73c608","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.whatHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Describe the task in natural language. The agent will run this prompt each time.","text_hash":"740434f6a8f3a54a5bbe7362b393c2d4c4a25789d52c76dddb57c96c25432f0e","tgt_lang":"ru","translated":"Опишите задачу естественным языком. Агент будет выполнять этот запрос каждый раз.","updated_at":"2026-06-26T21:42:14.996Z"} {"cache_key":"ce02de1f0748649a07e3da041eeefc2d1161686a189e407863c154a349b693a1","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.exportChat","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Export chat","text_hash":"d7b74f6046ad8f9f3e42efd67df7db6b4e186c6fa42fb86dda2502c18b740d91","tgt_lang":"ru","translated":"Экспортировать чат","updated_at":"2026-06-26T21:41:54.248Z"} {"cache_key":"ce125d441670e626b3735b0898713bbf040b4ea8443b55462fe7b32c6a3f7aa5","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.noMessagesMatch","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No messages match the filters.","text_hash":"64a575d4d77472b6351168a4fadda155dd13148122fa7f9f3e69c721df41dde9","tgt_lang":"ru","translated":"Нет сообщений, соответствующих фильтрам.","updated_at":"2026-06-26T21:41:31.697Z"} +{"cache_key":"ce52f777994ec78691b07238cf127ff6764dacd4ece724fb9293bebc899a5f4e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"ru","translated":"Доступно","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"ce6588aa1fb2df38d3cc1d156bfb3e878d582b7fba6fa7d999fbb9a0dc9f86f4","model":"gpt-5.5","provider":"openai","segment_id":"daylog.ask.submit","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Ask","text_hash":"b8c209cdead61a095ec097b7a13c4fc9264c04b3e3bd0fca42ec8dbaeebeeafe","tgt_lang":"ru","translated":"Запрос","updated_at":"2026-06-26T21:39:20.621Z"} {"cache_key":"ce79c0b0a4523ad195eaf908210fad835a9700615b9cb16d4bfa8f958870e787","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"ru","translated":"Новый чат в worktree","updated_at":"2026-07-06T04:56:55.542Z"} {"cache_key":"ce83eacea199cab43b85c88c80a0aaeb8d1afc9ec7e2f04bf57d641d1e66805c","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobList.allJobs","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"all jobs","text_hash":"4f7423bb7529778080be147678febde3dddc81557e3b1de154b7aa3dce5726f5","tgt_lang":"ru","translated":"все задания","updated_at":"2026-06-26T21:42:44.768Z"} @@ -1364,11 +1457,14 @@ {"cache_key":"d1808185fb258c078614b36306063c16f022c7d3f0089663b32242a7d50e8bcb","model":"gpt-5.5","provider":"openai","segment_id":"languages.vi","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Tiếng Việt (Vietnamese)","text_hash":"41c7596d3d2161e51a52efe2ec7e437d5104490ddb77757c9264f55b0667df35","tgt_lang":"ru","translated":"Tiếng Việt (вьетнамский)","updated_at":"2026-06-26T21:42:10.945Z"} {"cache_key":"d1810556cfb8fbf187bc70a0ded0542170deb4931304588f15b5ac3714791483","model":"gpt-5.5","provider":"openai","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"ru","translated":"Заметки оператора","updated_at":"2026-06-26T21:39:47.132Z"} {"cache_key":"d18f51df5af9e8139a7f7fb616e7a08693dba3ec6e1a6841085638ebb12ebecc","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.topAgents","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Top Agents","text_hash":"078a5214ffb35216e4af2b069b54f9525725f6f35c16a1ab1a9f7445f1f4e6ea","tgt_lang":"ru","translated":"Лучшие агенты","updated_at":"2026-06-26T21:41:16.423Z"} +{"cache_key":"d1ac5a7fe1c18f950959130b97cf192adfb11a94e036aa3a9d71474a83758f39","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"ru","translated":"Только просмотр. Для изменения плагинов требуется доступ operator.admin.","updated_at":"2026-07-10T02:30:00.008Z"} {"cache_key":"d1c48c3adff2324958c109a6fed3b505e2259cd60a0298414fc1249617cf51e9","model":"gpt-5.5","provider":"openai","segment_id":"languages.it","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Italiano (Italian)","text_hash":"0090dc269d25b87e5739c688fed25a00a04b01d196c0c54fafeabf22351e6864","tgt_lang":"ru","translated":"Italiano (итальянский)","updated_at":"2026-06-26T21:42:10.945Z"} {"cache_key":"d1df062fc9e4cda7fd0213ed5c673315ccbbafeb818d232b7de73c8054a46cbc","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.noProviderData","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No provider data","text_hash":"2f97f86c6c1555a13d977d78f6ab6f6441450350cb9b643223361b636eed2e30","tgt_lang":"ru","translated":"Нет данных провайдера","updated_at":"2026-06-26T21:41:20.199Z"} {"cache_key":"d1f0a70b3b187fc3da5010fafa20d7ead56eef42bd5b3b25459f60253a089332","model":"gpt-5.5","provider":"openai","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"ru","translated":"Карточки без явно указанного агента.","updated_at":"2026-06-26T21:39:50.999Z"} {"cache_key":"d200db11a5fc75493b0d910277e7fa46a6dfb594c1f6c61a282347c9866c8916","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"ru","translated":"Токены последнего запуска","updated_at":"2026-07-05T10:16:37.975Z"} +{"cache_key":"d20e69ab3135119d515efd92f2f61b06296020a457a733aebf9702492e5e87cc","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"ru","translated":"Копирование хеша коммита","updated_at":"2026-07-10T09:47:55.878Z"} {"cache_key":"d22956bf25fe1aa6a362eed0cefdac26a95921a8e3f221127b66260e85a94cdf","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.topModels","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Top Models","text_hash":"163641c5cd55adfe74c2e8a61aa371761cfec8697297bd85a5f7fea0e723e8d6","tgt_lang":"ru","translated":"Лучшие модели","updated_at":"2026-06-26T21:41:16.423Z"} +{"cache_key":"d22b9ac98e62aa14d9f73d0b0bdae4fbe2df7ddf1b13f3f249b2ce0a9b2abd91","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"ru","translated":"Плагин кода","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"d23e4e1a467c078a272287f7f0c112dd6e6dbb8b763a901a94af267e81db416e","model":"gpt-5.5","provider":"openai","segment_id":"tabs.sessions","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Sessions","text_hash":"6fa3cbf451b2a1d54159d42c3ea5ab8725b0c8620d831f8c1602676b38ab00e6","tgt_lang":"ru","translated":"Сеансы","updated_at":"2026-06-26T21:39:23.906Z"} {"cache_key":"d240c17b26a97ad62534f5393f67265899e859842739f1ee589688b812ae0314","model":"gpt-5.5","provider":"openai","segment_id":"logsView.exportButton","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Export {label}","text_hash":"50b12f90f821522131afebaeff51bb079a8dbbc4c068fe1a3a9e70026d411ac9","tgt_lang":"ru","translated":"Экспорт {label}","updated_at":"2026-06-26T21:39:38.402Z"} {"cache_key":"d2468c2de65d2ecf838328cf1d2ea8604ab8c8793f88fb479b023b6385c1c648","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.collapsePreview","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Collapse preview","text_hash":"90e8d06c0309d797a91911f446a0d6218d659c7c8769e2ab4034bc6e0c4c008d","tgt_lang":"ru","translated":"Свернуть предпросмотр","updated_at":"2026-06-26T21:39:11.166Z"} @@ -1378,9 +1474,10 @@ {"cache_key":"d2cc6dc04e56f4e28ea0bc76cff98d2d741ff954b9a91d268169c3af4053277c","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.trace.emptyShortTerm","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No active short-term items.","text_hash":"e3a71c5ac02b76384ed603efc99062bf70b21092fd094fb3a7c0b3e2647ee757","tgt_lang":"ru","translated":"Нет активных краткосрочных элементов.","updated_at":"2026-06-26T21:40:48.120Z"} {"cache_key":"d2ebb1a3118c8d6f50fc91c180ecf29ce7167bb4d09ae4f1765ece61d6fc7fc9","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.startDate","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Start date","text_hash":"8169693101a4536c24e384595cce97fa4740c7529114bead65525f5532699597","tgt_lang":"ru","translated":"Дата начала","updated_at":"2026-06-26T21:40:59.486Z"} {"cache_key":"d2f423f2b0d102cdf246ad18f0e6e2e9b2865a9df5eb4854c89a3e230c928d78","model":"gpt-5.5","provider":"openai","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"ru","translated":"Не удалось обновить","updated_at":"2026-06-26T21:39:57.757Z"} -{"cache_key":"d339f5ba5f43bb0f4ff9777bc85112a3a58d19297a4658263dd64c669d69ec49","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"ru","translated":"Без уведомлений","updated_at":"2026-06-26T21:42:14.995Z"} +{"cache_key":"d31877cc35ec3a223dd4fa2a12753907dade694ce7c4e62fb383ef906670c78d","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"ru","translated":"Хеш коммита скопирован","updated_at":"2026-07-10T09:47:55.878Z"} {"cache_key":"d3442897b3dd1c9f40fe27cedd125c6c368f7c583c5764c9878929084a624d0d","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.usage","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"API usage and costs.","text_hash":"9ee4834076606d017e613a984a00c778fc0656d63fcc32dbf32c37ebb4cfdac3","tgt_lang":"ru","translated":"Использование API и расходы.","updated_at":"2026-06-26T21:39:27.659Z"} {"cache_key":"d3490b1071b328478053a78256453276d10c19c174bcdef91299ff72a135c9be","model":"gpt-5.5","provider":"openai","segment_id":"languages.ko","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"한국어 (Korean)","text_hash":"30f959f34501d524b06cf98b3711cdffea10a6479a316cf2c030362e8d274740","tgt_lang":"ru","translated":"한국어 (корейский)","updated_at":"2026-06-26T21:42:06.902Z"} +{"cache_key":"d34d98f0f453caedc03c78ff1a45e4eb3218c63455fbe307f93c78dcd7b3fdd2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"ru","translated":"Конфигурация","updated_at":"2026-06-26T21:39:23.906Z"} {"cache_key":"d34e5fd1f5f2973067e7aa8cacf3d7721a3582dcfd8d81ad96369eef6a8711b8","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.lastRun","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Last run","text_hash":"512a48218ba2179153629504206e7d54a7767e19ee2aa21574a7c614e5c92537","tgt_lang":"ru","translated":"Последний запуск","updated_at":"2026-06-26T21:42:18.092Z"} {"cache_key":"d3738d00aec373ad6dda881a002a69be31843ae2522417e7faac15e02d8e6031","model":"gpt-5.5","provider":"openai","segment_id":"common.dismiss","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Dismiss","text_hash":"48845bff334a50a59aaecf499f28a7a24c3b4b891b8b18a9f1169ad8e8a6b261","tgt_lang":"ru","translated":"Закрыть","updated_at":"2026-06-26T21:38:28.190Z"} {"cache_key":"d37ea7b3cf850416061886d5a9f0d1fc52817ec67ed837d2ea72a5745ae3aa99","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"ru","translated":"Мастерская навыков","updated_at":"2026-06-26T21:39:23.906Z"} @@ -1392,6 +1489,7 @@ {"cache_key":"d4e201445928c0a6554b79f54cdaf34d4bddab8f94ed190392b8e30e9615c02a","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.collapseAll","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Collapse All","text_hash":"55988e28a4e8720a588c5c53fd47616d929a404d3d2af7e6f8ba313dce6dc3e4","tgt_lang":"ru","translated":"Свернуть все","updated_at":"2026-06-26T21:41:28.060Z"} {"cache_key":"d4eecbe6a3af3c58b98e4bd542e6510cf029b939817ba349511466796eb95eb7","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.schedules.weekdays.label","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Weekdays","text_hash":"6f4b602bb52984dc6244023f94410f3711649f7fe93b8de47b3b3a608312f49e","tgt_lang":"ru","translated":"По будням","updated_at":"2026-06-26T21:42:10.945Z"} {"cache_key":"d4f6705e245d696007ad03139bc73f806f69939741746005d911cb777e909fc7","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.errors","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Errors","text_hash":"cb702378f31507efa79a2a2c6046050bc9f578f149c88e3c0a3d9532ab4b5300","tgt_lang":"ru","translated":"Ошибки","updated_at":"2026-06-26T21:41:12.411Z"} +{"cache_key":"d568f1ec791f10a50f8f066a2249931ddefb0add3476f8e6b79065c13790272f","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"ru","translated":"Плагины","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"d57dcc4d6fccb57e536eb8f86aa1a45e07b9924d7e001b4f0880dbe20d37d24a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"ru","translated":"Группа","updated_at":"2026-07-05T14:40:26.836Z"} {"cache_key":"d58236d9b264a0b6930f5ca5a6d17e6c62997e75dab4650860574b2c23923d7c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.room","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Room","text_hash":"911ea89c43d9dbb85f5f25fdebc52e6f20816903b5946e36a1163d94d74c2040","tgt_lang":"ru","translated":"Комната","updated_at":"2026-06-26T21:39:01.088Z"} {"cache_key":"d5a66059bb22d021ab8c66eb67184ba99dd1accd2045bb018f02a58570d83aa1","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.channelChipTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{tokens} tokens on this channel","text_hash":"2f961c917719fceaa0b9fd222ea8590637986dce227e23deeeaf63b6cf11e9f8","tgt_lang":"ru","translated":"{tokens} токенов в этом канале","updated_at":"2026-07-09T11:29:21.881Z"} @@ -1400,10 +1498,13 @@ {"cache_key":"d5de051d1efba9256557a50ba4ec81a95de0effeeaa7f5d28aedbe8fb0c23bfc","model":"gpt-5.5","provider":"openai","segment_id":"usage.mosaic.sun","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Sun","text_hash":"db18f17fe532007616d0d0fcc303281c35aafc940b13e6af55e63f8fed304718","tgt_lang":"ru","translated":"Вс","updated_at":"2026-06-26T21:41:31.698Z"} {"cache_key":"d6284fd5ea0e7758b30979a3cf2b4954d1cc84e65db3abef4fff143895c73943","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.tokenRange","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{before} to {after} tokens","text_hash":"ee3c520c48bad23f77e157fd200482d469d807c55785a5113ddc9f1baefdc3e5","tgt_lang":"ru","translated":"от {before} до {after} токенов","updated_at":"2026-06-26T21:38:57.762Z"} {"cache_key":"d6372aa0f79618ea621531676226055acdcb3d3ef8bbce35840ec1e476bd6ed5","model":"gpt-5.5","provider":"openai","segment_id":"workboard.disabledHelpStart","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Workboard is disabled. Enable","text_hash":"10a5b9ffaec507bdc3516021c98c28fa81dfeca9f2dfddcbf3d65e19e0bb52cd","tgt_lang":"ru","translated":"Workboard отключен. Включите","updated_at":"2026-06-26T21:39:38.402Z"} +{"cache_key":"d63e90c19ed4a1aa9e6d42d9faddd399ceb3b45a727696fc5ef3ac883d44e896","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"ru","translated":"Версия подключенного Gateway","updated_at":"2026-07-10T09:47:55.878Z"} {"cache_key":"d69657098b62ab6c0f8f590e180bdad96c6a1210224767b9ceb17bddfd0b8895","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.insecure.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Secure browser context required","text_hash":"760214096b010cdfe7c3e7f9b87a2a300d53cb9de6495517f97162d7999da916","tgt_lang":"ru","translated":"Требуется защищенный контекст браузера","updated_at":"2026-06-26T21:41:46.401Z"} {"cache_key":"d6ba0f364c5321b79f9389471d33fd2241a4a1779d6fc2af8b7d44ebff7956d3","model":"gpt-5.5","provider":"openai","segment_id":"usage.daily.total","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Total","text_hash":"c9b3c38247f744e17dd26fda097d6a9ba9332586b6bdaa038bf8f313a863f2b8","tgt_lang":"ru","translated":"Итого","updated_at":"2026-06-26T21:41:08.400Z"} +{"cache_key":"d6fb3016ab388327d8a90682a4adc12f9828216230a367797bc9bfba85632124","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"ru","translated":"Серверы MCP еще не настроены. Добавьте сервер здесь или выберите коннектор в Discover.","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"d6fe7278838520247437b3e59e406b4b4b826cd523ce3b5966531fac22cd049e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"ru","translated":"Заметка о цели","updated_at":"2026-06-26T21:38:54.164Z"} {"cache_key":"d717ec114ed5e0bc284b67102980b77990c14960ea363391c0b6aeccfe2acfc5","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.bioHelp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"A brief bio or description","text_hash":"13c4378cf9fb4be11b124be3ee805740faafd2e3cf09936e4186ae037cade948","tgt_lang":"ru","translated":"Краткая биография или описание","updated_at":"2026-06-26T21:38:40.558Z"} +{"cache_key":"d718042622fec65b1cf92ac2314229c65dabf271aa4bc1189f447746916a4455","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"ru","translated":"Обновить","updated_at":"2026-06-26T21:40:37.573Z"} {"cache_key":"d726bfe10ab2dd609bdf5e643a124ddd4ed2c381885b10ab5a34720f0906a017","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.protocol.stepDashboard","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Reopen the served dashboard with openclaw dashboard so the UI and Gateway come from the same install.","text_hash":"137c0eab8a7b641e6a2b5723f815ced2ec9338e6106705ae2c4309577951ee6c","tgt_lang":"ru","translated":"Повторно откройте обслуживаемую панель командой openclaw dashboard, чтобы UI и Gateway были из одной установки.","updated_at":"2026-06-26T21:41:46.401Z"} {"cache_key":"d75a4947a8e26efecf30ec11549eb5e6737f88ca94d63558d2d17e66da0ab95a","model":"gpt-5.5","provider":"openai","segment_id":"overview.cards.modelAuthProviders","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} providers","text_hash":"3cfca69a188175f98794914c9e2b5f7a1a8c4bb6d797ae07ba871e02470182f6","tgt_lang":"ru","translated":"{count} провайдеров","updated_at":"2026-06-26T21:40:31.548Z"} {"cache_key":"d7627686d7fd90fd713d17d7e93b36dec0d8cdd5afa63143145cdcee5375a042","model":"gpt-5.5","provider":"openai","segment_id":"connection.reconnecting","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Reconnecting…","text_hash":"27b80374e1151af6df7824a358606c77502548bff4d467e4ae2e146801f601ce","tgt_lang":"ru","translated":"Повторное подключение…","updated_at":"2026-07-05T21:56:07.349Z"} @@ -1429,14 +1530,17 @@ {"cache_key":"db2d8a7e54173ed0564bd1bb5681f37966131af2ad9249fba681c9d7672f864c","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.insecure.summary","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"This page is running over plain HTTP, so the browser cannot create the device identity the Gateway expects.","text_hash":"9e92a7d1ff3113b49e53ed1451360c24b8219e6af5081306d8a4aff4385c2fca","tgt_lang":"ru","translated":"Эта страница работает через обычный HTTP, поэтому браузер не может создать идентификатор устройства, который ожидает Gateway.","updated_at":"2026-06-26T21:41:46.401Z"} {"cache_key":"db31b60e2a1f30245ec72cb4653ce254a7c9f7a446ad223293b22c75f593dc68","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"ru","translated":"{count} сеансов","updated_at":"2026-06-26T21:41:03.285Z"} {"cache_key":"db38fd9ed9e7888fbeed557d0b75fef08f789b7bfd9b05996a06052449810d24","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.noCheckpoints","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No compaction checkpoints recorded for this session.","text_hash":"4fd4068bb85186ade93f7290efe22eaff1d648143f8ab6b0ee71cb2167bd9845","tgt_lang":"ru","translated":"Для этого сеанса не записано контрольных точек сжатия.","updated_at":"2026-06-26T21:39:01.088Z"} +{"cache_key":"db4c999a47085515052239aabb817cf70d754314c73ca2329f02b2f2c0225464","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"ru","translated":"Официальный","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"db7b8b33a996657fcbd5d087ae3e39f67525774af322ea55553584df305c2c52","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.network.stepGateway","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Confirm the Gateway is running with openclaw status or openclaw gateway run.","text_hash":"ff59e911c73ec9f77053c27b1267fd58bbf3606f92b73b67fff05e0125737a19","tgt_lang":"ru","translated":"Убедитесь, что Gateway запущен, с помощью openclaw status или openclaw gateway run.","updated_at":"2026-06-26T21:41:46.401Z"} {"cache_key":"dbd81d2fc9d0a80892ef7df1943e743075a5925f9b0ab9fce472fcd9e74a8efb","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventExecutionUpdated","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Agent updated","text_hash":"d24a95381c8ef4232641339007b250bf6117845a0e7c7569b0830ad2fded11b7","tgt_lang":"ru","translated":"Агент обновлен","updated_at":"2026-06-26T21:40:10.976Z"} +{"cache_key":"dc153518780e4faa27b6901dd8747e1e3478403cdab5aadde05d6c2d511f1e28","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"ru","translated":"MCP-сервер с именем «{name}» уже существует.","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"dc1708c3dfd0f8bfdb5e15ba55fbe98e9f6e0f648bd2bd22463669158a26c257","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.minRead","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} min read","text_hash":"ba43151afaf01bf1e02c6edad8da835d0dedf91b7f2f572fcdea186c5dc353f9","tgt_lang":"ru","translated":"{count} мин чтения","updated_at":"2026-06-26T21:39:11.166Z"} {"cache_key":"dc51fcc28646625ad86600a64fea9b9046468c99ed3248be9453ba93f53c3c76","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"ru","translated":"Доступ к микрофону заблокирован. Разрешите его в настройках сайта браузера, чтобы отобразить список входов.","updated_at":"2026-07-06T17:57:33.379Z"} {"cache_key":"dc5e4f051ad046cad96ec7fd4e44932909d81d4d096291209429110a9ab1fddb","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.calls","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"calls","text_hash":"f46f5990ebfadcab199107258b9dadd8711bd7946d8d00091a1073effcf2a843","tgt_lang":"ru","translated":"вызовы","updated_at":"2026-06-26T21:41:16.423Z"} {"cache_key":"dc65d8e67dbd7050f54dd9309943dcc303631064ed1bb5c23358bf47a48ccf65","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.sendMessage","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Send message","text_hash":"93a26b1eaff99b3a84dd80366660991d15703a96514497afd997c12c43000ed7","tgt_lang":"ru","translated":"Отправить сообщение","updated_at":"2026-06-26T21:41:59.944Z"} {"cache_key":"dc6a1273ee268ef5b43bfee573396ff512ad3b6725db883d6b2e5b93d9e52dbb","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeTenant","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"tenant {tenant}","text_hash":"d9baa0533dfc0139ba37c970d4bf816c5687dbb50b15a13a374dfc93f01a0e42","tgt_lang":"ru","translated":"tenant {tenant}","updated_at":"2026-06-26T21:40:03.947Z"} {"cache_key":"dc90b8a259a31fc23bf4e0c3c802bc0593b104eda5182a97c4daa7160e23a23c","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"ru","translated":"Вложение добавлено","updated_at":"2026-06-26T21:40:10.976Z"} +{"cache_key":"dcaee41553add7dc9afc440bdc6f2c09b49c3bfd69ea4ee092164ad2aff74f57","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"ru","translated":"Загрузка плагинов…","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"dcbff2b4827465b3ebb8f8a85887ace7aacb0dea1f5863cded3b54acddff0f48","model":"gpt-5.5","provider":"openai","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"ru","translated":"Состояние рабочей доски","updated_at":"2026-06-26T21:39:57.757Z"} {"cache_key":"dcc588ef20dd1387f27a5ef4dd744d96ffdff2732199c89b6da828d2aed3e6c4","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.debugMode","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Debug Mode","text_hash":"5f75368293f2c806ad6db16cde4b2a5329bca96422bf47a76986619f61feb73f","tgt_lang":"ru","translated":"Режим отладки","updated_at":"2026-06-26T21:40:37.573Z"} {"cache_key":"dcdd5e0d1c7348b5ce54c385a9d114780e8d5bed4d92b054dbb06cb9f9640dc5","model":"gpt-5.5","provider":"openai","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"ru","translated":"Измените представление, поиск, приоритет, агента или фильтр архива.","updated_at":"2026-06-26T21:40:07.529Z"} @@ -1448,6 +1552,7 @@ {"cache_key":"ddac7deecb494c888887816154d4d371dae0e24a3d1ec13e3737c79f05035b82","model":"gpt-5.5","provider":"openai","segment_id":"workboard.agentLinked","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Linked to {agent}","text_hash":"ccfe5849a95883f4843e7e3a10e89b9dba4713102cc840673d74441aecf8f65c","tgt_lang":"ru","translated":"Связано с {agent}","updated_at":"2026-06-26T21:39:50.999Z"} {"cache_key":"dde669f6bf818af90c5cb21dfd8888605997141d5418acb4940614c12d6f8811","model":"gpt-5.5","provider":"openai","segment_id":"workboard.status.scheduled","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Scheduled","text_hash":"4724f344c1c0e4a1c5e4085610cc31bf67d0959dfda9793d4605b7b329399775","tgt_lang":"ru","translated":"Запланировано","updated_at":"2026-06-26T21:39:43.912Z"} {"cache_key":"dde6c1126848774a508170931fca9ade7bb843d5c24c83d1cd0bf6ef392b623b","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.insecure.stepAvoidDisable","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Avoid disabling device auth for remote HTTP access.","text_hash":"00cb48a6d7afa692a1904b6ee5a3c0902ac0494a49cddffeaa4ad3d913c2edea","tgt_lang":"ru","translated":"Не отключайте аутентификацию устройства для удаленного доступа по HTTP.","updated_at":"2026-06-26T21:41:46.401Z"} +{"cache_key":"dde9ca52cf0c937a67e264725774667dd1f6f96d1aff9c96c18580dee7a049ff","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"ru","translated":"Конфигурация недоступна; обновите страницу и повторите попытку.","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"de0dd491549f536a0afad20e58deba5068e05ddba07e67a3df1090faac9783a2","model":"gpt-5.5","provider":"openai","segment_id":"lazyView.retry","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Retry","text_hash":"942087cc2d41e01304b7195558d093d10c72af8e838c7556d6a02d471ee71852","tgt_lang":"ru","translated":"Повторить","updated_at":"2026-06-26T21:38:44.774Z"} {"cache_key":"de70e204fb635e0575fe6c034bc8bde59dc4924be3a8708c7a5ae056fbc88b0b","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.reorganizingAttic","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"reorganizing the memory attic…","text_hash":"29ce330059eccd078fde850d433f7929bc8bee3097efa5f3313377c9989e929b","tgt_lang":"ru","translated":"перестановка на чердаке памяти…","updated_at":"2026-06-26T21:40:53.979Z"} {"cache_key":"de7e141c1d5d9419fb7874e93c37c2cb9ba574b46a426115b223083671eedde2","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.content","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Content","text_hash":"47bd29075f8b8019f0beec6d86beda7c9bf67aaf05053dcbe0b3bcb63968517f","tgt_lang":"ru","translated":"Содержимое","updated_at":"2026-06-26T21:39:14.470Z"} @@ -1474,6 +1579,7 @@ {"cache_key":"e444a7243e1ef6aa474d33538c1bb56b3f1850635238d2976f10260f69333ec7","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.cron","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Wakeups and recurring runs.","text_hash":"6cc9803f98c63d9917c83a31deaf3c5afc3af9d5a00d6d2200756d884807ebf8","tgt_lang":"ru","translated":"Пробуждения и повторяющиеся запуски.","updated_at":"2026-06-26T21:39:27.659Z"} {"cache_key":"e46069bfc4e503d6fd16415c9b356eb44d6b1678871520d01ad2f9e8153a5347","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.at","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"At","text_hash":"c72c5404cfcb01c1780bcb362c18d37e90af3a33888dad0c1c13e53819ef885f","tgt_lang":"ru","translated":"В","updated_at":"2026-06-26T21:42:28.070Z"} {"cache_key":"e470efd3068df18fb07ba72c751b5966b0fe680a4d48e9d84742b3c0428d4af1","model":"gpt-5.5","provider":"openai","segment_id":"common.create","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Create","text_hash":"4759498ac2a719c619e2c8cf8ee60af2d2407425e95d308eb208425b2a6d427a","tgt_lang":"ru","translated":"Создать","updated_at":"2026-06-26T21:38:28.190Z"} +{"cache_key":"e4e76b27eb69b1c899d362a145ec38cd0bef34de7b76f18a9ae3f36b7b84d2cf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"ru","translated":"Инструменты","updated_at":"2026-06-26T21:41:28.060Z"} {"cache_key":"e4e7fa1b5f61ab0e01354af841e137915f666865ae9573fa4ff5e4992a4f9805","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.protocol.stepDevUi","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"If using pnpm ui:dev, rebuild or restart the dev UI against the current checkout.","text_hash":"14b78bc03b2feff5faa8837f9205ebbe59343de6cdd8223ac15872c4917d3437","tgt_lang":"ru","translated":"Если используется pnpm ui:dev, пересоберите или перезапустите dev UI для текущей рабочей копии.","updated_at":"2026-06-26T21:41:46.401Z"} {"cache_key":"e4fd37aa157e125a245692a5d5e9eea9532cecc15f461d5b5a56cbd9cd4cec95","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolRuns","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} runs","text_hash":"627a5f9e7cc0ba0f9bc65c55fb5e6421519e92d24f35dabffabb1eaf16aa750b","tgt_lang":"ru","translated":"{count} запусков","updated_at":"2026-07-09T11:29:24.217Z"} {"cache_key":"e54b4bf3003359cd16de233ce25c83cbc241c591ca7f699904fbf0e153f221cf","model":"gpt-5.5","provider":"openai","segment_id":"overview.access.language","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Language","text_hash":"a4fe65264ef7dbb38d104b1e81eb3350f3142f3d16f32bdec39b1d9b42c1b8d1","tgt_lang":"ru","translated":"Язык","updated_at":"2026-06-26T21:40:14.690Z"} @@ -1484,6 +1590,7 @@ {"cache_key":"e630671a8c7328ff6487ab4c6caae2076c6b6c301cbca5da20b145fc818f3e9c","model":"gpt-5.5","provider":"openai","segment_id":"login.hidePassword","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Hide password","text_hash":"a60a56c584b3b05b1a95076a36edbab7131a447910cf21124efcb35f769502df","tgt_lang":"ru","translated":"Скрыть пароль","updated_at":"2026-06-26T21:41:35.342Z"} {"cache_key":"e6329a3d501546f04e9560c27212746c06083dc00b4f2fd28e56e3e979076e27","model":"gpt-5.5","provider":"openai","segment_id":"workboard.noLinkedSession","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No linked session","text_hash":"4175600f2b1eef769d0fa3e19589c72ee782947bbdc06b770fe5cb7e57fe1a67","tgt_lang":"ru","translated":"Нет связанного сеанса","updated_at":"2026-06-26T21:39:43.912Z"} {"cache_key":"e648474e289988605f66fef3cbcdc7d55ec7454dea3288e3aba5a11644b308fc","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.saving","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Saving...","text_hash":"dc85af8f2b1d0d6756547cd5f79557466e25e682b882f68d277bd7f125851321","tgt_lang":"ru","translated":"Сохранение...","updated_at":"2026-06-26T21:42:44.768Z"} +{"cache_key":"e6adc353a15a4d0074518b623bc63a961afa954dd3efba5f18abc3b3b3aff51a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"ru","translated":"Только просмотр. Этот Gateway не разрешает изменения плагинов.","updated_at":"2026-07-10T02:30:00.008Z"} {"cache_key":"e6c8262bbdcac1bd5e407beacb0a71a86caa2c431de9c094799f4be83e1786c6","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.timeZoneLocal","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Local","text_hash":"8c31e6e7223097e2e4847773c47a4efab6aaf79deeecc92a7759891c74976dde","tgt_lang":"ru","translated":"Локальный","updated_at":"2026-06-26T21:40:59.486Z"} {"cache_key":"e6f471888436dbd6a154a18b7af682f448ebb318946dd46c2b7855e9ddd4556b","model":"gpt-5.5","provider":"openai","segment_id":"usage.sessions.clearSelection","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Clear Selection","text_hash":"c52ff5ea803d577544a8224d1404ecefa836b803f029d87cd7450af6c18a70ef","tgt_lang":"ru","translated":"Снять выделение","updated_at":"2026-06-26T21:41:20.199Z"} {"cache_key":"e6fee8a4d8faf137f3ec7bc0c8c1e683084b6b0a83389ad3433714d612883c68","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.missingHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"This file is missing. Saving will create it in the agent workspace.","text_hash":"76f5e100c76d9904ada60584ca5d595980600e772931fdfeb9c5e6c85039ff22","tgt_lang":"ru","translated":"Этот файл отсутствует. При сохранении он будет создан в рабочей области агента.","updated_at":"2026-06-26T21:39:14.470Z"} @@ -1510,9 +1617,13 @@ {"cache_key":"e93d1f5faf105e328c5686253523041c46ff3d9cdf7faaa278a33863607370b6","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.now","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Now","text_hash":"fe18013d93d22f4f2a70344d30c00fe62d2ef29189ae5d25ccbda81fbd9c92b0","tgt_lang":"ru","translated":"Сейчас","updated_at":"2026-06-26T21:42:36.583Z"} {"cache_key":"e9461f792ac6c139caae3a911dcc92bcec5247288cefde48e03a7fdd9ef67f41","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventMoved","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Moved","text_hash":"b11c9047f3512271a5cbbe3040a2628206e1d95765b288cf03affcae5edbb457","tgt_lang":"ru","translated":"Перемещено","updated_at":"2026-06-26T21:40:10.976Z"} {"cache_key":"e97925e8487b6f0b972a5844543bb1c6b6c2d91435fc26f6bf0e82156db3f17e","model":"gpt-5.5","provider":"openai","segment_id":"cron.form.agentTurnHelp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Starts an assistant run in its own session using your prompt.","text_hash":"96fbd6ab75c8af8fb9a095827bf23510c72fcbd595d3a20a28ce389d8f288dd1","tgt_lang":"ru","translated":"Запускает ассистента в отдельной сессии с вашим запросом.","updated_at":"2026-06-26T21:42:36.583Z"} +{"cache_key":"e987aa4006fcaebb6aa6616bd0d5d2133226a4468e5cdc276a799ea9f382e3ca","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"ru","translated":"Добавлено","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"e9b34136679240daacb7cc9c3948634a50f76a7049d425ee31954cb09d7a9e10","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.hideFilters","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Hide filters","text_hash":"9e6ea475a2391a64e093d87c05083843ff734b128138c0ab0c277bf8c3bb6e14","tgt_lang":"ru","translated":"Скрыть фильтры","updated_at":"2026-06-26T21:38:48.084Z"} +{"cache_key":"e9d8ccdaff962074268c634f6643f0ee3219518e526f32082b70cb5f8a285f76","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"ru","translated":"Каналы","updated_at":"2026-06-26T21:39:07.415Z"} {"cache_key":"e9e869ed73ea47458ec47d6d1c98ff7edb7120f1faba4277f5d773cd20769b02","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitFiveHour","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"5-hour limit","text_hash":"26d04fad786b1e3a08fd957ec893b0457b72a2926da0ee63847aea9037951d24","tgt_lang":"ru","translated":"5-часовой лимит","updated_at":"2026-07-09T11:50:01.324Z"} {"cache_key":"ea3a290f9231bc950d139a8e14da709c74aae39093bd1913a4a76fe5e4ebaf83","model":"gpt-5.5","provider":"openai","segment_id":"agents.tabs.cronJobs","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Cron Jobs","text_hash":"043d5c96a8cd2805d6743faef29eaa7deb83ff3ed45f8cd42df1b75c257f8d65","tgt_lang":"ru","translated":"Cron Jobs","updated_at":"2026-06-26T21:39:04.015Z"} +{"cache_key":"ea422679abaa1ac7b8313412bd4222f1a445605e3e2f269acd98b434ba2c859b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"ru","translated":"Поиск плагинов","updated_at":"2026-07-10T02:29:44.281Z"} +{"cache_key":"ea534d879476888602416149072156c5760fa5c8ea86f8d10967c26b1b68b540","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"ru","translated":"{enabled} включено, {disabled} отключено, {issues} с проблемами","updated_at":"2026-07-10T06:09:16.015Z"} {"cache_key":"ea644ae5e87aa89b73dad33fa952281e313a6d44be479b4e0f3c2efc5312aa36","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.subject","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Subject","text_hash":"68971283841aecdf1da48428849b3b33164ec5c41d0f3c4d6cea624db5aff8f2","tgt_lang":"ru","translated":"Тема","updated_at":"2026-06-26T21:39:01.088Z"} {"cache_key":"ea6d45d2cc364f203ac5ab837e06278f1a82f96e04b79db49faa3fefb0d91737","model":"gpt-5.5","provider":"openai","segment_id":"debug.lastHeartbeat","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Last heartbeat","text_hash":"40f7951c09dbc025eec26f753c21f5bd6a5dc65a2192d6a788594479b1437207","tgt_lang":"ru","translated":"Последний heartbeat","updated_at":"2026-06-26T21:39:14.470Z"} {"cache_key":"ea6f5da4f5352e50388bce0eebb727a86aeb5b5bc60dea8ec8fd581629e1b9b0","model":"gpt-5.5","provider":"openai","segment_id":"chat.updating","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Updating…","text_hash":"dfe40efe921fe88e332575a3516f4e8cd6bbb71437cf260b2bb9b947c65d1484","tgt_lang":"ru","translated":"Обновление…","updated_at":"2026-06-26T21:41:54.248Z"} @@ -1523,6 +1634,7 @@ {"cache_key":"eb483fc3c9b3c96210194de8f4e7b91ca44ebe69ed7efc543333a96d012ef116","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.ascending","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Ascending","text_hash":"77184595bde3befc7f5a20efc97caea43f4858e4c97cd2ee406af2c61db3266c","tgt_lang":"ru","translated":"По возрастанию","updated_at":"2026-06-26T21:42:21.706Z"} {"cache_key":"eb96f0576e12d9233ee12ff3f2291bf73f5c649e05031e153fa5361c1df07701","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobList.remove","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"ru","translated":"Удалить","updated_at":"2026-06-26T21:42:47.554Z"} {"cache_key":"ebb0521f06df4e63538364c049f7975d7b8f50d0c572e1f93a9e1744a437e490","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.status.nextSweepPrefix","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"next sweep","text_hash":"836b65b782a40d015ac29fa976e399ea979cc1c659c551f5de304c4004ed8dd4","tgt_lang":"ru","translated":"следующая проверка","updated_at":"2026-06-26T21:40:41.209Z"} +{"cache_key":"ebb7b900e25e9781e37d8e7f0fc4903db033d3ca1c8361d0f094b639628666f8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"ru","translated":"Поиск в ClawHub…","updated_at":"2026-07-10T02:29:44.281Z"} {"cache_key":"ebc0fce218977780b4fd43d01157b87f89c209dc022905714dad7a3a58648237","model":"gpt-5.5","provider":"openai","segment_id":"usage.query.placeholder","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Filter sessions (e.g. key:agent:main:cron* model:gpt-4o has:errors minTokens:2000)","text_hash":"cba9bff34c8bfb3e2c1c034d6c95355c1770d661b8702435a4ca31cc58623bd7","tgt_lang":"ru","translated":"Фильтр сеансов (например, key:agent:main:cron* model:gpt-4o has:errors minTokens:2000)","updated_at":"2026-06-26T21:41:03.285Z"} {"cache_key":"ebd4c20482b854b9eb25e381d6f6bbe2ea703e6aad1c22f8dbd24c78c2126a8e","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.restartConfirmation.title","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Restart Gateway to Apply Change","text_hash":"03bab7944e05cd7f3453161737377ac6aab8c0063452f30f89b1cf096cd2f82b","tgt_lang":"ru","translated":"Перезапустите Gateway, чтобы применить изменение","updated_at":"2026-06-26T21:40:41.209Z"} {"cache_key":"ebe28141a4c067a9b5d1703728953f3cf7fca867b53fcde031e2a0f3d94e8cf9","model":"gpt-5.5","provider":"openai","segment_id":"workboard.hideArchivedShort","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Hide archived","text_hash":"dd1c79324e411c473dc6e8ad9506ce890e8acdfcc5d8bd17ff030d1c85d0d727","tgt_lang":"ru","translated":"Скрыть архивные","updated_at":"2026-06-26T21:39:54.162Z"} @@ -1537,6 +1649,7 @@ {"cache_key":"ed6098553ffed5cbe6f9c57991afeb3ba2faee5c5e561ea27b013bf70e1db0e8","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"ru","translated":"Последнее обновление","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"ed612cfc548dda03eb1b2ca39ae4bb6ad37bbbc51425928bea4177084658f1e7","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightToolCalls","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Tool calls","text_hash":"da5122dc0f97b158bfbd27c5bd479322f34e0916a0cd4626d42c03bb0000e4b4","tgt_lang":"ru","translated":"Вызовы инструментов","updated_at":"2026-07-09T11:29:24.216Z"} {"cache_key":"ed7a614c9b18c397f9e323aebc032d292399ce72d248245b9a6935031d8d2f20","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventDispatch","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Dispatch","text_hash":"811ace97bcf2c6d6a25db8bde24dd00c39040fedde80e78e70733e362791ead6","tgt_lang":"ru","translated":"Отправка","updated_at":"2026-06-26T21:40:14.690Z"} +{"cache_key":"edb3fb16f4e684b8c50a1ec43dd400c80e7ce3f6355179a361b2760dadf51a57","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"ru","translated":"Требует внимания","updated_at":"2026-07-10T02:29:49.002Z"} {"cache_key":"edb7a67e4f81efda33ab1ce7f7d828e2b420983b05fefd4c182eee8e952bcadf","model":"gpt-5.5","provider":"openai","segment_id":"usage.overview.sessions","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Sessions","text_hash":"6fa3cbf451b2a1d54159d42c3ea5ab8725b0c8620d831f8c1602676b38ab00e6","tgt_lang":"ru","translated":"Сессии","updated_at":"2026-06-26T21:41:12.412Z"} {"cache_key":"edc4dd01dceabaa2fdd9e43dfab90bdd7b8594888cdd36c4fcfac99741d3c89f","model":"gpt-5.5","provider":"openai","segment_id":"cron.quickCreate.schedules.everyEvening.description","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Daily at 6:00 PM","text_hash":"260b9ed9fe7fac30932e89488f121facfb1cd04b8ecda5ca2ece9a207ad6662a","tgt_lang":"ru","translated":"Ежедневно в 18:00","updated_at":"2026-06-26T21:42:10.945Z"} {"cache_key":"edd9482ff9a877a4eccdbba2919ae6e7289fb09e36e74277b48204249f43195f","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.searchJobs","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Search jobs","text_hash":"989ecb5d07fd4c769ec4212085c63eab4b2bbede961979f8903fd98ed5c874d9","tgt_lang":"ru","translated":"Искать задачи","updated_at":"2026-06-26T21:42:18.092Z"} @@ -1549,14 +1662,19 @@ {"cache_key":"eeb6b27ff77b824387859c16cdc3e13eec351489544ae0aa0be05d10251361ee","model":"gpt-5.5","provider":"openai","segment_id":"usage.empty.hint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Select a date range and click Refresh to load usage.","text_hash":"4dcf5dc94773068c4f25aea20473dffbbd254ea813f8890bd5bf233df13614a5","tgt_lang":"ru","translated":"Выберите диапазон дат и нажмите «Обновить», чтобы загрузить данные об использовании.","updated_at":"2026-06-26T21:41:08.399Z"} {"cache_key":"eefa1ea487aa326584793b8cf77494a80bae9007d0a21fc9666c3ea0297a1af8","model":"gpt-5.5","provider":"openai","segment_id":"workboard.fieldSession","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"ru","translated":"Сессия","updated_at":"2026-06-26T21:40:00.643Z"} {"cache_key":"ef2c45fbe8e874a0fd9e51649ad8a1028ab546d7c55a68fdf18f1f33e41756ef","model":"gpt-5.5","provider":"openai","segment_id":"usage.filters.channel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"ru","translated":"Канал","updated_at":"2026-06-26T21:41:03.285Z"} +{"cache_key":"ef2d89f547bab539dcafaf0fad1685fbaa137e2a1f6c2a3999a3ac26bbf52c3a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"ru","translated":"Gateway не в сети","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"ef5929e9f897c6b2774cafc6b4567c7d4114549ebb1ff068310008899024c1be","model":"gpt-5.5","provider":"openai","segment_id":"common.saving","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Saving…","text_hash":"23e39291d6135814ed7c936e278974544b0df5fbf0eb0427b6700979b7472a93","tgt_lang":"ru","translated":"Сохранение…","updated_at":"2026-06-26T21:38:34.337Z"} {"cache_key":"ef5e45c36fe1007d22108cdd0386abad5279990fc1a4a9608558d9392b750ff8","model":"gpt-5.5","provider":"openai","segment_id":"usage.metrics.sessions","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"ru","translated":"сеансы","updated_at":"2026-06-26T21:40:56.975Z"} {"cache_key":"ef80751e3867c04ed0cfc279a96560b28e92df40138accc0de494696bee77d29","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.advanced.emptyGrounded","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"No staged grounded replay entries right now.","text_hash":"3c85fa80872b7e5f27da121c22707aecb7dc74f627b2bcecff0373916fbf7270","tgt_lang":"ru","translated":"Сейчас нет подготовленных записей обоснованного повторного воспроизведения.","updated_at":"2026-06-26T21:40:44.743Z"} {"cache_key":"ef9e43809b23e65b539af18ca211cec41874ec55e5679800536c8c3b7b52599d","model":"gpt-5.5","provider":"openai","segment_id":"overview.connection.docsHint","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"For remote access, Tailscale Serve is recommended. ","text_hash":"9ac5daefac37fc5d6fdeb9dc835c0dac1be1e27fa893c7371384a76f7cb2a21a","tgt_lang":"ru","translated":"Для удаленного доступа рекомендуется Tailscale Serve. ","updated_at":"2026-06-26T21:40:28.260Z"} +{"cache_key":"efd414f16b5637ed3a6e0d72381453c495971f17bc40525f4420c75c26f0a455","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"ru","translated":"Удалить {name}","updated_at":"2026-07-10T02:29:53.193Z"} +{"cache_key":"f00271e14783881583852bdc31e76e8ae55a758e1c272f202211a84ecba377a0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"ru","translated":"Действия для {name}","updated_at":"2026-07-10T04:28:58.651Z"} +{"cache_key":"f05e3d7656a8d78b79e59883c9aa3302cfb15710a027c776ace9552ecf19b4b0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"ru","translated":"Включено","updated_at":"2026-06-26T21:38:28.190Z"} {"cache_key":"f06e043976dbb401be45d08a4bff81fb033faf41037e37be9b45056c34299663","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"ru","translated":"Сеанс Codex без названия","updated_at":"2026-07-09T10:01:43.745Z"} {"cache_key":"f098b12449c6c2e66c31f004e24b0379a0a7586874d639774792d957efc3e5f4","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.filingLooseThoughts","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"filing away loose thoughts…","text_hash":"352e9ecf138c39219228e6e09c7d8fde37b02f1dd93fe411cdf781257e9be521","tgt_lang":"ru","translated":"раскладывание разрозненных мыслей по местам…","updated_at":"2026-06-26T21:40:53.979Z"} {"cache_key":"f0b423bba8140738bbd7dc66d67635f405d1af87c776a191ad898d2f3ed031a5","model":"gpt-5.5","provider":"openai","segment_id":"channels.nostr.avatarUrl","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Avatar URL","text_hash":"18a20f99701c5c7ac5c7d4f4c62e57e8f35a4aec25a43494baa3b741152c0706","tgt_lang":"ru","translated":"URL аватара","updated_at":"2026-06-26T21:38:40.558Z"} {"cache_key":"f0cae22eb48c931f8ded874f5c6c4a9c629f9b6e5820966bc13b7eda0105b761","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"ru","translated":"{count} готовы","updated_at":"2026-06-26T21:39:54.162Z"} +{"cache_key":"f17e56a5f10453c9d9e1027c6ffbf37869a439ca3ffdaf975acc5a96f2c4f402","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"ru","translated":"MCP-сервер {name} удален.","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"f19246df79b6ee363399903eaea306d40aa1cdaf5e8912b54c5344f8be25ec2f","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.authRequired.stepPaste","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Paste the token from openclaw dashboard --no-open or enter the configured password.","text_hash":"d65aea1772b928b5eb212e6c4c0481b32cbaf6e4d492b32d6c970592e75490f1","tgt_lang":"ru","translated":"Вставьте токен из openclaw dashboard --no-open или введите настроенный пароль.","updated_at":"2026-06-26T21:41:35.342Z"} {"cache_key":"f195ac18671fd877a734a573c4d8011a1c24ffe343137c141ce4b14102d97e86","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"ru","translated":"Использовано ~{percent}% контекста ({used} / {context} токенов, приблизительно)","updated_at":"2026-07-09T07:40:53.552Z"} {"cache_key":"f19b21e953f3412fccdf531bfa9bc4bfdf401891387b5d958173fa853be8ea15","model":"gpt-5.5","provider":"openai","segment_id":"chat.updateNow","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Update now","text_hash":"63bf045213cebbafc438a7a79e633015cbd047b8864eb2f9dffc45b641607048","tgt_lang":"ru","translated":"Обновить сейчас","updated_at":"2026-06-26T21:41:54.248Z"} @@ -1564,6 +1682,7 @@ {"cache_key":"f1bfa26fb66cb07ba87e75db9937c3a720e1b9bd0824c0226fd68920ccd0c3bd","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.loadingCheckpoints","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Loading checkpoints…","text_hash":"28f4a96c140d1effc48388a1f67e650dfcf892df7003d38cd0ebeab22d65ba34","tgt_lang":"ru","translated":"Загрузка контрольных точек…","updated_at":"2026-06-26T21:39:01.088Z"} {"cache_key":"f239059b85c97ba086ef0ebdf3a75494268d6f63b235819dd1bc7cb72e251df1","model":"gpt-5.5","provider":"openai","segment_id":"tabs.instances","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Instances","text_hash":"aa8c181ac3381dcd5890e42f64315a2540a9c7b35897570cf72f7ec1227e52e3","tgt_lang":"ru","translated":"Экземпляры","updated_at":"2026-06-26T21:39:23.906Z"} {"cache_key":"f270f7a0d4bb9caeadb0661788cd7d8398060ecc25e9fd08747aba5e32dd8290","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.selected","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} selected","text_hash":"529aacfdfd2b17bf9fe56ebad9a24339a2d1151327dd420c52c5f163aeb9acc6","tgt_lang":"ru","translated":"Выбрано: {count}","updated_at":"2026-06-26T21:38:51.115Z"} +{"cache_key":"f2724022762207ff9f05356855092a0e9f87fd1fc23753bda4bf32bbcc185af5","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"ru","translated":"Недоступно","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"f28901cdc96d28a11d1116ea2d8d866ac9f8f27c7d9605581a41594b250823d4","model":"gpt-5","provider":"openai","segment_id":"usage.overview.costShare","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{percent}% of cost","text_hash":"1d0533da07d6ee21af9d1d02f4636bd9f70df239ad62388b0a415e550ee2de8b","tgt_lang":"ru","translated":"{percent}% затрат","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"f2aa8098038a55a228fc42278734a10949b334b940e02e18d1045af447148371","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"ru","translated":"Цветовой режим: {mode}","updated_at":"2026-07-07T08:47:46.141Z"} {"cache_key":"f2f4ec18bf5fa5ea4c2fbf6316dec64be8f7760f2055a72816148edc7dadefe1","model":"gpt-5.5","provider":"openai","segment_id":"usage.presets.last90d","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"90d","text_hash":"c906817c1dd244107977b235f1ccc79e27b0b69d88eb9bad6f845e86e7fb08f4","tgt_lang":"ru","translated":"90 дн.","updated_at":"2026-06-26T21:40:56.975Z"} @@ -1607,6 +1726,7 @@ {"cache_key":"f7ee612ff037f5da44db75a1543e4c3148e496a60df718d3c53d439fa33c6b36","model":"gpt-5.5","provider":"openai","segment_id":"connection.lostTitle","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Gateway connection lost","text_hash":"ec6cd265976239ff6fc4f227bb25e8e6286fe38c3d1c64326dcdbb76c28b515e","tgt_lang":"ru","translated":"Соединение с Gateway потеряно","updated_at":"2026-07-05T21:56:07.349Z"} {"cache_key":"f7f7bda338db1af1aafd27983e94948acb04094b1fa8253482196423dc41da9f","model":"gpt-5.5","provider":"openai","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"ru","translated":"Отправлять запросы на доработку в текущую сессию чата вместо сессии мастерской предложения.","updated_at":"2026-06-26T21:39:31.958Z"} {"cache_key":"f818c8d0368081cf4627a7495ea6b933a8578c91c1ee3e2e90c39d9fc10bfc09","model":"gpt-5.5","provider":"openai","segment_id":"agents.channels.setupGuide","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Setup guide","text_hash":"f91058b1dfbde985a500035ec38aab18acd48c844c391b58bc22593630c2a3ff","tgt_lang":"ru","translated":"Руководство по настройке","updated_at":"2026-06-26T21:39:07.415Z"} +{"cache_key":"f82839fb273e393f22160397604c777dd642f02efb28e254556aa069e0f3de39","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"ru","translated":"Принять риск и установить","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"f86ce0fbee87217702d44a021e0d51c0a564fd15a0c4f1e43f2d669cc5077e35","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.defaultOption","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Default ({value})","text_hash":"a9d6571117890ef77ecc72f77ba43e9d8b05ed82c1c64ff27a352c02dff3c2bd","tgt_lang":"ru","translated":"По умолчанию ({value})","updated_at":"2026-06-26T21:38:54.164Z"} {"cache_key":"f86e511303df40c74db4a1e9ad9803c68716427fbdba55e442a64433d69eb5ad","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.filters","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Filters","text_hash":"546ebb8eb993ea561029d9febd84c363bdb09010bb2cb915a8287762b76b9a64","tgt_lang":"ru","translated":"Фильтры","updated_at":"2026-06-26T21:38:48.084Z"} {"cache_key":"f8d1664c037238e7b7966b8af30a892ceffd853ee093dcda14325c2e08271995","model":"gpt-5.5","provider":"openai","segment_id":"common.reloadConfig","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Reload Config","text_hash":"48e6315352561c36be84097326fbb3558b4c2fa3fc4f833402d32040ccb640f7","tgt_lang":"ru","translated":"Перезагрузить конфигурацию","updated_at":"2026-06-26T21:38:30.975Z"} @@ -1626,6 +1746,7 @@ {"cache_key":"fa1ecdd9a2208406e500f1fa04c5220da9a354250742c516481bf709c21cdcda","model":"gpt-5.5","provider":"openai","segment_id":"instances.toggleHostVisibility","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Toggle host visibility","text_hash":"dd0188424f6a0434d4af848b7462f4d12da05800bfc24d82cb2c0d7e443b657b","tgt_lang":"ru","translated":"Переключить видимость хостов","updated_at":"2026-06-26T21:38:48.084Z"} {"cache_key":"faacdcf793d59f43c92e028ff56dea456dd34a00790b3d5ab0e85fe97508e646","model":"gpt-5.5","provider":"openai","segment_id":"login.failure.network.stepUrl","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Check the WebSocket URL and use wss:// when the Gateway is behind HTTPS/Tailscale Serve.","text_hash":"9fa7223c6c3c1256087a9282d8c7d8c484bf04c3dffe3049105f18ed80287601","tgt_lang":"ru","translated":"Проверьте URL WebSocket и используйте wss://, когда Gateway находится за HTTPS/Tailscale Serve.","updated_at":"2026-06-26T21:41:50.917Z"} {"cache_key":"fb0555c9a0e037c2fd3c252238d0dd687ecb8f0c0784e1448087460976d5213a","model":"gpt-5.5","provider":"openai","segment_id":"chat.welcome.suggestions.summarizeRecentSessions","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Summarize my recent sessions","text_hash":"a83a91357cd80ac1038e04a541867c7b21a050e80707c198e8230e5917ca3f8b","tgt_lang":"ru","translated":"Суммируйте мои недавние сеансы","updated_at":"2026-06-26T21:41:54.248Z"} +{"cache_key":"fb2f1a3d6cbcd42ae31e39b55db7c1df0ca23c91f5dea50d4cb51e474b9e990a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"ru","translated":"Плагин-пакет","updated_at":"2026-07-10T02:29:57.079Z"} {"cache_key":"fb4d342a027a22be9d70d2799618179562dd6aa9e50c2dc985a7ee4e0c4dace2","model":"gpt-5.5","provider":"openai","segment_id":"common.dark","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Dark","text_hash":"60acc53f13a5d1bf115878c4a785e9a43e8286c4139a8402a6ac7d23966f9153","tgt_lang":"ru","translated":"Темная","updated_at":"2026-06-26T21:38:28.190Z"} {"cache_key":"fb90daf86f2d7774f2a6ba7f94f8b2f09ba6619e8e4de237178149d13f6eb040","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phase.off","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"off","text_hash":"b4dc66dde806261bdda8607d8707aa727d308cd80272381a5583f63899918467","tgt_lang":"ru","translated":"выкл.","updated_at":"2026-06-26T21:40:44.743Z"} {"cache_key":"fbb98e1a37275cfd53ad516005830141615005ac0c6b4df26b2c3e9e1cb3d615","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.dreams","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Memory dreaming, consolidation, and reflection.","text_hash":"1021dffa2e60b2097acfe27fae40d08fb573eeb6d8bc9fee9d25586431cd67a2","tgt_lang":"ru","translated":"Сновидения памяти, консолидация и рефлексия.","updated_at":"2026-06-26T21:39:31.958Z"} @@ -1640,14 +1761,15 @@ {"cache_key":"fd11f279d5817908fc100bd8c046e43e813144d6adf3a1cd7a2062607f5d99bb","model":"gpt-5.5","provider":"openai","segment_id":"overview.insecure.stayHttp","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"If you must stay on HTTP, set {config} (token-only).","text_hash":"d1a4cb0c430ca9f73d0dbb992f19d6e7e301e24acdc269d368b31fa1efd4ff1e","tgt_lang":"ru","translated":"Если необходимо остаться на HTTP, задайте {config} (только токен).","updated_at":"2026-06-26T21:40:23.750Z"} {"cache_key":"fd3eafd1d58977747eac182c06a43f6478ce9527cc2aacdf97dbe8cddeef0e91","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.missing","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"missing","text_hash":"ffa63583dfa6706b87d284b86b0d693a161e4840aad2c5cf6b5d27c3b9621f7d","tgt_lang":"ru","translated":"отсутствует","updated_at":"2026-06-26T21:39:11.166Z"} {"cache_key":"fd4768f85a045cc51cbd4133d900a8b4558feded0a489a4da2136cbeae588557","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.trace.promoted","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Promoted","text_hash":"0cf04463c4276a6276986c22155bd4a32ce81e8dd162a657dedfa9afb97a7371","tgt_lang":"ru","translated":"Повышенные","updated_at":"2026-06-26T21:40:48.120Z"} +{"cache_key":"fd50a12fd2aeff9fd3ac0592562946bb9665d36a363dc984a7504468de6c6243","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"ru","translated":"Введите URL http(s) или командную строку.","updated_at":"2026-07-10T02:29:53.193Z"} {"cache_key":"fd7e3e68852b2322b06b67550275fe2a3b93dc3d5408dd1e7337602392c229c6","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.updatedUnknown","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Updated Unknown","text_hash":"ae7b1778740ab9aa0178ad72df21881176e9af2e1e4b9e56fb1371524887d319","tgt_lang":"ru","translated":"Время обновления неизвестно","updated_at":"2026-06-26T21:39:14.470Z"} {"cache_key":"fdc87d978c0a2f7d1aceeaded2822a20a01ae26c756ef30cd6aecc3ede7977d1","model":"gpt-5.5","provider":"openai","segment_id":"dreaming.phrases.whisperingVectorStore","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"whispering to the vector store…","text_hash":"44f8f2666f20599ad12e2e33ea95c6f37c8a2b422bf438d4bdb59e778ae6a527","tgt_lang":"ru","translated":"шепчем векторному хранилищу…","updated_at":"2026-06-26T21:40:56.975Z"} -{"cache_key":"fdc9fe26e5abc6c5f1bfba4e52434c2074ec8aa352e58fa7925f6cef188e0430","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"ru","translated":"Lobsterdex","updated_at":"2026-07-09T23:56:22.997Z"} +{"cache_key":"fdce5eeb20196c4dd2e6e5c0d6b7013772c6611e27ba62bf8e162e413e0ed11b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"ru","translated":"Из ClawHub","updated_at":"2026-07-10T04:28:58.651Z"} {"cache_key":"fded699bf6d4a032330275082ba26ad1455f6182e9c2b78a3c5d6f108682bf24","model":"gpt-5.5","provider":"openai","segment_id":"agents.files.liveDraftPreview","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Live Draft Preview","text_hash":"eb6b2fefeacd2aac68f7ea96e616e8ba9eefd3d7c74a0e100bdcafe2d515052f","tgt_lang":"ru","translated":"Предпросмотр черновика в реальном времени","updated_at":"2026-06-26T21:39:14.470Z"} -{"cache_key":"fdfd48f8f365fe9cfe0d32f255c18a34c516f29eb01345c1420ef8a8162ca1a8","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"ru","translated":"{seen}/{total} посещено","updated_at":"2026-07-09T23:56:22.997Z"} {"cache_key":"fe0f9ef52eac115f50aa1a33c00e449d69f18535f6234a76b34df10830b14598","model":"gpt-5.5","provider":"openai","segment_id":"cron.jobs.sort","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Sort","text_hash":"bec69036aa27e7fab7d44cad3909477b76631c39ba46fd7841ea71aae7e5a735","tgt_lang":"ru","translated":"Сортировка","updated_at":"2026-06-26T21:42:21.706Z"} {"cache_key":"fe378f2f7526380fa6b756155a83b82d5041e23921ab9f415108f25eabcb4c51","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"ru","translated":"{count} сеанс","updated_at":"2026-07-05T14:40:26.836Z"} {"cache_key":"fe5a033758c0f5e20be284415e5d0241a5fa35e0547998f2f257e3d6bce746be","model":"gpt-5.5","provider":"openai","segment_id":"activity.toolCallId","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Tool call","text_hash":"17011048725fe0aa705c845f084d0cceafa8c81f7f439bd83a6600d1f516e009","tgt_lang":"ru","translated":"Вызов инструмента","updated_at":"2026-06-26T21:39:35.030Z"} +{"cache_key":"fea5facff420031e91e19b468f052d4c6f94b30cde91ee55b82a6c9acf416462","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"ru","translated":"Отключен {name}. Для применения изменения требуется перезапуск Gateway.","updated_at":"2026-07-10T02:30:00.008Z"} {"cache_key":"fed67f468988b010b5e9e4c85ff6159cb5e990ea9c6c3fdef4326990fc9406fd","model":"gpt-5.5","provider":"openai","segment_id":"usage.details.modelMix","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"Model Mix","text_hash":"4716263d5596745d99dafb4d7ce95bb8afd089368f8203741451c5915005293c","tgt_lang":"ru","translated":"Состав моделей","updated_at":"2026-06-26T21:41:23.762Z"} {"cache_key":"fee6c08455c700ab00ad918c0de072bccaea139108274f7916ecf6f4c9e332be","model":"gpt-5.5","provider":"openai","segment_id":"languages.zhCN","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"简体中文 (Simplified Chinese)","text_hash":"e34fcc9872e46b54fd22bd89aae921332644df9ff58d7778cba9c4007dbeafb2","tgt_lang":"ru","translated":"简体中文 (упрощенный китайский)","updated_at":"2026-06-26T21:42:06.902Z"} {"cache_key":"ff056c22ce867a778cf15d747acab8e3ba8b98b37e33d0dec1479adc8e69fa7c","model":"gpt-5.5","provider":"openai","segment_id":"cron.runs.runStatusOk","source_path":"ui/src/i18n/locales/ru.ts","src_lang":"en","text":"OK","text_hash":"565339bc4d33d72817b583024112eb7f5cdf3e5eef0252d6ec1b9c9a94e12bb3","tgt_lang":"ru","translated":"ОК","updated_at":"2026-06-26T21:42:24.729Z"} diff --git a/ui/src/i18n/.i18n/th.meta.json b/ui/src/i18n/.i18n/th.meta.json index 60df91be14dd..b307c5996c7b 100644 --- a/ui/src/i18n/.i18n/th.meta.json +++ b/ui/src/i18n/.i18n/th.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:27.205Z", + "generatedAt": "2026-07-10T09:47:39.905Z", "locale": "th", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/th.tm.jsonl b/ui/src/i18n/.i18n/th.tm.jsonl index 84389de5ccf7..36445be182b0 100644 --- a/ui/src/i18n/.i18n/th.tm.jsonl +++ b/ui/src/i18n/.i18n/th.tm.jsonl @@ -1,22 +1,34 @@ +{"cache_key":"0010e677e87d70b9ce19c1ec2c1d841f224dbe4a10a82d141f54750fbe17d693","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"th","translated":"การเขียนโค้ดและโครงสร้างพื้นฐาน","updated_at":"2026-07-10T05:22:39.116Z"} +{"cache_key":"00eb7142fcade35d9dc53cb3a2e5f46283e2940a98ba0e369cba8be4710a54b8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"th","translated":"ดูรายละเอียด","updated_at":"2026-06-16T14:17:16.747Z"} {"cache_key":"00f71fe0137a44b95888cd9f932cc685365cde685f55dc2595b7f7d4378e7d4b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"th","translated":"ยังไม่มีไฟล์ที่แก้ไขในเซสชันนี้","updated_at":"2026-06-16T14:17:26.503Z"} +{"cache_key":"00f750168eac8fd086e9318ebf6502603c898072d974ffc57030087a0a498855","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"th","translated":"กำลังดำเนินการ…","updated_at":"2026-07-10T04:28:47.234Z"} +{"cache_key":"0255ce1dc19bd5720b0d72a3b4b1172535be1e9ddc80b14722001302deda52e6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"th","translated":"กำลังโหลดปลั๊กอิน…","updated_at":"2026-07-10T02:28:04.450Z"} {"cache_key":"029299cf3080b71633fc64e23b18841237d32425586b7641397c3ce840dd8d32","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"th","translated":"ยุบพื้นที่ทำงานของเซสชัน","updated_at":"2026-06-16T14:17:26.503Z"} {"cache_key":"02a03065c7f500754697eae4d4d3a6d4ab5fdd5c0b93932044590f3601d365df","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadingMore","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"th","translated":"กำลังโหลด…","updated_at":"2026-07-09T10:01:43.768Z"} +{"cache_key":"03557c2ef81b06ff5856b45b6d41ef4a4bec7dba8f3f3bf54d3179374e4ca570","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"th","translated":"ไม่พร้อมใช้งาน","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"0416370cd59079f175bef46a208ff2e710e82732ed4e4325741f4a765afb3b25","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"th","translated":"เปลี่ยนชื่อเซสชัน","updated_at":"2026-07-02T14:30:49.122Z"} {"cache_key":"0484da8e97f198de06d6e60292b6878b9dab343bacc79b35873515813df20b43","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.open","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Open split view","text_hash":"51e50f7be73433216ae62f58fdbc586372f5a6063ee9978cec96793ef75fa554","tgt_lang":"th","translated":"เปิดมุมมองแบบแบ่ง","updated_at":"2026-07-06T07:24:12.973Z"} -{"cache_key":"0509c04daab3516517e1a2f98d5ef3e91d22e229a96eba4cbfff5d7426b375dc","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"th","translated":"เสียงบุ๋ง ๆ เบา ๆ เมื่อแตะ","updated_at":"2026-07-10T04:50:37.449Z"} +{"cache_key":"05e3614d38dab9a071cc94f435bb3ce724a06c07692ce8e410da237cea5b11cf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"th","translated":"ปัญหา","updated_at":"2026-07-10T02:28:09.425Z"} +{"cache_key":"0646f61fcdb47099036d61479f7fce6252b8469a6dde91decd14349ec0b0b94e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"th","translated":"รับทราบความเสี่ยงและติดตั้ง","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"06734f1ecf70caa17c550088e328262e605109ba6c5bd99782ad7393fd999f47","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitWeekly","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Weekly · all models","text_hash":"144f0e5ca031e40c0cba8a53a9dcb4d9534c74edd976587231da2cd14b4944df","tgt_lang":"th","translated":"รายสัปดาห์ · ทุกรุ่น","updated_at":"2026-07-09T11:49:48.608Z"} +{"cache_key":"06b00fec63f376a0a9f56fb70264aff73bf14f70dba4f8620890cd759086facf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"th","translated":"เชื่อมต่อโลกของคุณ","updated_at":"2026-07-10T02:28:09.425Z"} {"cache_key":"07f2d9fb15a802a2cfb871ebb4649d597039c451b8baa8b2e2731dafa050884d","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"th","translated":"เพิ่มไฟล์แนบแล้ว","updated_at":"2026-05-30T15:38:44.763Z"} {"cache_key":"0898d34ed3959d5ee042391a34a6896f5a7ff366e2960620197f13a4e596d248","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.pending","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Device requests waiting for review: {count}","text_hash":"0bc0822235b930faa4038f1d7859f695de2519c989595c438505f8ce100a5801","tgt_lang":"th","translated":"คำขออุปกรณ์ที่รอการตรวจสอบ: {count}","updated_at":"2026-07-04T16:48:49.478Z"} {"cache_key":"0a0ec19cae45a3fcea7db6c2eac7bf5fb31baad7bba06854b23057b7386e3794","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"th","translated":"ยังไม่มีบันทึกจากผู้ดำเนินการ","updated_at":"2026-06-16T14:17:26.503Z"} +{"cache_key":"0b234a0b41353d1db65aef354c3a1a0fa876b9c2cc3dd14dcea7babf9a038b24","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"th","translated":"ไม่ได้ติดตั้งปลั๊กอินเสริม","updated_at":"2026-07-10T02:28:09.425Z"} {"cache_key":"0b51c6aff1f66c79ba67dd53f88619f76829d952af88fbb1ffafffd080404e7a","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"th","translated":"{count} วัน","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"0bca8ee9c50779080f2276c69d865ed5a4369614745fd8c52b5cf88da23c0b16","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"th","translated":"เพิ่งเสร็จ","updated_at":"2026-06-17T14:16:47.316Z"} +{"cache_key":"0c07a4c2b450abb3ff7fe142ccceef975fe7707cec9a3d26f0c7933d66d65d6f","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"th","translated":"รายงานโดยการเชื่อมต่อ Gateway ที่ใช้งานอยู่ ซึ่งแยกจากบิลด์ Control UI นี้","updated_at":"2026-07-10T09:47:39.902Z"} {"cache_key":"0cbcaaa2c4886b0a4fd95b28b3113edfff93a778194b7dc8b6f3ee4472391ce6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"th","translated":"จัดเก็บแล้ว","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"0cc5d38541ed2d904cd4e842e0a92fabdbd5404e53a3142740ff3f620c0fffba","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"th","translated":"เก็บถาวรแล้ว","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"0d6cea7eb3e01d40a63ed9845617f1824a2c6dc853b4a172ee28210d2b64cfd8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"th","translated":"ไม่ได้ใช้งาน","updated_at":"2026-07-09T10:01:43.768Z"} +{"cache_key":"0e08d9be615f1a85b888acdb2ac4feb54546a16d51b133f4daca33225908f46b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"th","translated":"งานและประสิทธิภาพการทำงาน","updated_at":"2026-07-10T05:22:39.116Z"} {"cache_key":"0e7992a53b613eeb710d6031937ddb976cfa8098c13e701d0a4fe4dcf328e119","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"th","translated":"การ์ดที่มอบหมายให้ agent เริ่มต้นที่กำหนดไว้อย่างชัดเจน","updated_at":"2026-06-17T14:16:47.316Z"} {"cache_key":"0ec7ca78abd6c47bb1eab4547ebc27509a9b62c330e66608a915baa09104da65","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"th","translated":"พร้อม","updated_at":"2026-06-17T14:16:47.316Z"} +{"cache_key":"0f01800ae86604ea5cb5b3ccf94d9f1cf34c5349883e70504a9a206d588d3139","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"th","translated":"เซิร์ฟเวอร์ MCP","updated_at":"2026-07-10T02:28:14.296Z"} {"cache_key":"1112f5da49538c01af280b7973b3344c68de5d17dfec7f2ca64786cec2e07967","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityLow","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Low","text_hash":"f793de205ead5ac302c4a1627829dea41f176b1068b993a32373fc869918374b","tgt_lang":"th","translated":"ต่ำ","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"114790343e3c6435d0b748cf6a87bd82180d4d49d26cc2ac5ae4ec4d8f3062b0","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"th","translated":"โทเค็นขาออก {count}","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"1153acb259f01262164c1d9b1963c6439fb2d2cab81f02f1139a77b86b018d93","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"th","translated":"ติดตั้งแล้ว","updated_at":"2026-07-10T02:28:04.450Z"} {"cache_key":"11963c1cd89cdc5db17a305b8250de51979dbddccd040af4f31ee7a4f2e98ef3","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"th","translated":"ไม่พบไมโครโฟนเพิ่มเติม","updated_at":"2026-07-06T17:34:01.837Z"} {"cache_key":"11b06b3477fbef31388342aef6767b3e4b5988502a4c46459694577c73ea0cd3","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"th","translated":"แค็ตตาล็อกเซสชันไม่พร้อมใช้งาน","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"11c6d0520843253e44c7096600bbc2187c79ead01ed31f5da4fc85b4d643a0d1","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"th","translated":"เมื่อวาน","updated_at":"2026-07-05T14:40:13.915Z"} @@ -25,10 +37,15 @@ {"cache_key":"1263759495d4b53a4a9d9f890c2cbda9ff63e091774c230c4c74e20c7e3a60b0","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.openUsage","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Open usage dashboard","text_hash":"bae5e40b055c195a780a0dc06042d60353da51ab582610096c5cb0d269484c00","tgt_lang":"th","translated":"เปิดแดชบอร์ดการใช้งาน","updated_at":"2026-07-09T11:49:48.608Z"} {"cache_key":"127c4e71a2eaf42c0551539993137cb382a2a7f705948d16275167f0d8836c54","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"th","translated":"โมเดล","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"133b040c3faa22c4b2ea6f5dce395bbc7b495874213ffa66fa96e7841d3f3f59","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.estimatedCost","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Est. cost","text_hash":"3199f14286736527bfc6ad9165629415a5aa087517acd2c0e9b1ae8bb5d26766","tgt_lang":"th","translated":"ค่าใช้จ่ายโดยประมาณ","updated_at":"2026-07-05T16:00:26.191Z"} +{"cache_key":"15b218307c6db75b72c249a2e6aae2e9d2167cc7735b64ac493dc1348de294c0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"th","translated":"ทางการ","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"16bdee3b5beb1bdbec8ef1fd59951841ae86af8f16407d87165782855d3ea940","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"th","translated":"อินพุตไมโครโฟนไม่พร้อมใช้งานขณะที่หน้านี้ไม่ได้ใช้งาน","updated_at":"2026-07-06T17:57:13.451Z"} {"cache_key":"16c94329a7310d2030ffb1bb4cbc326d87dccebc4eae64382d101c49ce848188","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"th","translated":"หลักฐาน","updated_at":"2026-06-16T14:17:16.747Z"} +{"cache_key":"17544518e56dbe7f2b03f61b031a8a5e66f36aefaa1b8f3f0a9e949d04342f73","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"th","translated":"ไม่มีปลั๊กอินที่ติดตั้งตรงกัน","updated_at":"2026-07-10T02:28:09.425Z"} +{"cache_key":"17dd924591b5bac71e544f7a121ad0d2f1ae5624a8dbacaca4a55ed235f221b8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"th","translated":"ต้องตรวจสอบ","updated_at":"2026-07-10T02:28:20.120Z"} +{"cache_key":"1809a3dbe245b850884300de031c38da8af2b07bf2f841644e2835186ce225bc","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"th","translated":"รายละเอียดบิลด์ Control UI","updated_at":"2026-07-10T09:47:39.902Z"} {"cache_key":"193e595b2d6273792dd6c981ee3d20340c45bf782ad88f95f235d4bcd941e533","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"th","translated":"ลบกลุ่ม…","updated_at":"2026-07-06T23:41:15.864Z"} {"cache_key":"1966fe1699042572e631485afdfe2825ba38053aabf2cb56ba8d14a88ec37441","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"th","translated":"โทเค็นขาเข้า {count}","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"199f8a3d3336388b607bb546d198a9e7bbe78e7786a54d3998a165ac4adeb6cf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"th","translated":"ปลั๊กอินโค้ด","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"19e493e602e83c7045fea79ced8ade100c556c32f14060c1c09683cac4395730","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"th","translated":"เปลี่ยนชื่อเซสชัน","updated_at":"2026-07-02T14:30:49.122Z"} {"cache_key":"1a472b796f1f86672d69c5639b310a97e8df049151de2c3400b9b6ab689712d3","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"th","translated":"ไม่พบโฮสต์ Codex","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"1b19ada136dbf679849e1ca50a0b34184af700cd31f4f7ac3859001299d45e80","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"th","translated":"ปักหมุดแล้ว","updated_at":"2026-07-02T14:30:49.122Z"} @@ -42,13 +59,17 @@ {"cache_key":"1e3a3e798e9ce09165639487a738db2bb3d1c9757ffde5e197f1b98ce1c9d475","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"th","translated":"เปิดในแถบด้านข้าง","updated_at":"2026-07-09T11:03:08.210Z"} {"cache_key":"1f04af6023e1c5ca0d1e9fffc97416e36fb02e4841bed6139db707a14e6c22f0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"th","translated":"หายไป","updated_at":"2026-06-16T14:17:26.503Z"} {"cache_key":"1f37b82f8013f1f47df13bc77e3bdc7702a356be7e7b46eebb908d76baea50bc","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"th","translated":"เซสชัน Codex ที่ไม่มีชื่อ","updated_at":"2026-07-09T10:01:43.768Z"} +{"cache_key":"2099d37e67433ffc6dfcc0ed89a5dcd3b4cadcbc112a8f0ff26dfd79051750a2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"th","translated":"ไม่พบปลั๊กอิน","updated_at":"2026-07-10T02:28:04.450Z"} {"cache_key":"20daaa602df28eaa16a929d1e0bf54406dd0b45361cebc0c024763ab76841ccf","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"th","translated":"การเชื่อมต่อ","updated_at":"2026-07-09T08:08:10.509Z"} {"cache_key":"21a1f08b88b1fe7df02ed0e8906e8b14bd8c542262fb8ec71bc13f154f7e07d2","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"th","translated":"เบราว์เซอร์นี้ไม่สามารถแสดงรายการอินพุตไมโครโฟนได้","updated_at":"2026-07-06T17:57:13.451Z"} {"cache_key":"21dd898dc82ab3631a578b239e9974a79cfefb7c3fdd48d5d439273df3542430","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"th","translated":"เพิ่มการตัดสินใจ อุปสรรค หรือบันทึกหลักฐาน...","updated_at":"2026-06-16T14:17:26.503Z"} {"cache_key":"22475c5af907bb4fab16061745b99113975455655f1acc72d4deb78504d5e7bd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.actions","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Workspace file actions","text_hash":"461817d921bc7672e95fe4a3b23f4ac2a4a20e35b3d6eef3f02e8f5ba4201050","tgt_lang":"th","translated":"การกระทำกับไฟล์ Workspace","updated_at":"2026-06-16T14:17:36.173Z"} +{"cache_key":"224974a812c36263ba46b012635a9f94c4e2668f71e8f90b870b24a5843735ca","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"th","translated":"ลบ","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"23b537cf8227ffa9ffe816aa0a107c0fb46b8a169044b95085645c0e80a7af9d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"th","translated":"ใช้แชทปัจจุบัน","updated_at":"2026-06-16T14:17:16.747Z"} {"cache_key":"23d24fab8877e6661a15c2e697264a27c822cb584ce6744b6a92cc36cdc984a2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"th","translated":"แสดง {count}","updated_at":"2026-06-16T14:17:36.173Z"} +{"cache_key":"256dc8fb85a01d82f4187112565d3cb9c55808c6cbb344680ad6c7075acdccaf","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"th","translated":"คัดลอกแฮชคอมมิตแล้ว","updated_at":"2026-07-10T09:47:39.902Z"} {"cache_key":"2653b0830b0ba95a2fe990659f88ae158b5b0aeb02cb6a59096f2899a4da56f8","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"th","translated":"คัดลอกลิงก์","updated_at":"2026-07-09T11:03:08.210Z"} +{"cache_key":"266d8f8bfdf6e332bc968d52844c32e17b9d072de0d9c1bb88abf9d0de49d529","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"th","translated":"จาก ClawHub","updated_at":"2026-07-10T04:28:47.234Z"} {"cache_key":"26f0ebad149505f0c4c7c68572f873cbd989b31ed436f563c7615185e2f91ca6","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"th","translated":"กระตุ้น dispatcher","updated_at":"2026-05-30T15:38:44.763Z"} {"cache_key":"277f8ed7df4cb8a16a9f6901a7973f8ebcd463b18d1562a53433c86d7cbcbaf5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"th","translated":"30 วินาที","updated_at":"2026-06-17T14:16:55.187Z"} {"cache_key":"28c53d38b8d1d8fd0d527e685ba8d5a256cbcf97daa3d963fad0118af0be6345","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"th","translated":"ทั่วไป","updated_at":"2026-07-09T08:08:10.509Z"} @@ -62,24 +83,36 @@ {"cache_key":"2ee52ccfffbeefbd022c809a4ef1162d36431a831d210859649b8394071d4a7c","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"th","translated":"ไมโครโฟนที่เลือกไม่พร้อมใช้งาน เลือกอินพุตอื่นหรือค่าเริ่มต้นของระบบ","updated_at":"2026-07-06T17:57:13.451Z"} {"cache_key":"2f71021bea645cab6f5bb667144b2db85e20f677ef4772acdfa2ad1efa705078","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.newCode","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"New code","text_hash":"3edce074d60711e799f3ebf89c7d2b12069c421558d76340108e13cdc16c6e57","tgt_lang":"th","translated":"รหัสใหม่","updated_at":"2026-07-04T16:48:49.478Z"} {"cache_key":"301282c1781e2c9a9e4d413e6e043714ac9ce314427f964fe3c5c738a8a2c588","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"th","translated":"กลุ่ม","updated_at":"2026-07-05T14:40:13.915Z"} +{"cache_key":"3015fca4e4297e914f0cd084c272c15ba6056fe0118b232cf47c4ab8534285b1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"th","translated":"ไม่สามารถใช้งานการกำหนดค่าได้ รีเฟรชแล้วลองอีกครั้ง","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"316c30cc04e396f8d1fc88fcfe63c7590d3163a20634cfd9a357c6fe09bff3f8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"th","translated":"บอร์ด: {board}","updated_at":"2026-06-16T14:17:16.747Z"} +{"cache_key":"32a05fb33b526fa7cf125b0b644d01176dc388a2a28548b76fe0874b58bf4b1e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"th","translated":"ต้องตรวจสอบ","updated_at":"2026-07-10T02:28:09.425Z"} {"cache_key":"3320bc23f076cdc96bfa4a6e45e567ff5e1c41d73281c42c5c42da746e0c6e3d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"th","translated":"ผลการค้นหา","updated_at":"2026-06-16T14:17:36.173Z"} +{"cache_key":"340f74258a82c9387a630052ca582358e0402737b84bfbf72e8e2da905ddea03","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"th","translated":"เรียกดู ClawHub","updated_at":"2026-07-10T02:28:04.450Z"} {"cache_key":"349160e3360251c52324323fe14c53f08e61bf0af1b0f7bd2d170d230fc3f564","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"th","translated":"เปิดใช้การแชร์เซสชัน Codex บน Gateway หรือคอมพิวเตอร์ที่จับคู่ไว้ แล้วรีเฟรชมุมมองนี้","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"34ae64dd56cb5e314a6d331e4530513903bfd67d5f0fff88b6e107cc114ddaca","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"th","translated":"ค้างนาน","updated_at":"2026-06-17T14:16:47.316Z"} {"cache_key":"3503804bd9e53db60e79e65d882be992624dcb6fe07cb5d0af8d730101dc546a","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"th","translated":"การเข้าถึงไมโครโฟนถูกบล็อก อนุญาตในการตั้งค่าเว็บไซต์ของเบราว์เซอร์เพื่อแสดงรายการอินพุต","updated_at":"2026-07-06T17:57:13.451Z"} {"cache_key":"35642ccf610c7fdeb2f244866db69ecb0dcf4f509053b69741d31ecf3e66e2f3","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"th","translated":"7 วัน","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"369d083e3fcca8928920ce2fdaa56876c2908c158ad5e644667eef2269b7854c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"th","translated":"มีเซิร์ฟเวอร์ MCP ชื่อ “{name}” อยู่แล้ว","updated_at":"2026-07-10T02:28:14.296Z"} {"cache_key":"379644ee30110295a75d95b49789db9849b5974e078627e5a708d7dce4205c5c","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitHours","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{hours}-hour limit","text_hash":"c9091350c3c5c4e3c54dae43eec58cd35555724276a0acc388b98239a573f9df","tgt_lang":"th","translated":"ขีดจำกัด {hours} ชั่วโมง","updated_at":"2026-07-09T11:49:48.608Z"} {"cache_key":"37c6502c7ab388f48be6282fad635c6bb506f4317d8595ace01882e03d938027","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"th","translated":"สรุปเซสชัน Codex","updated_at":"2026-07-09T10:01:43.768Z"} +{"cache_key":"3841c660c58c8c308a55f20002b78e34138b7a9cf0f15df87ec00734072b63e1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"th","translated":"ติดตั้ง {name} แล้ว ต้องรีสตาร์ท Gateway เพื่อใช้การเปลี่ยนแปลง","updated_at":"2026-07-10T02:28:25.633Z"} +{"cache_key":"3859a136246a8893a9864100905317b3e41d536fd20445b053490edaac50dba9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"th","translated":"ผู้ให้บริการโมเดล","updated_at":"2026-07-10T02:28:14.296Z"} +{"cache_key":"3984cf4078c98e2c25f770dae9c97bf6e63c9f9968d4dfa7d556e9f1bc169fa4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"th","translated":"เปิดใช้งาน {name} แล้ว","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"3a3adfc3708809554bbf0caa76d4cd9b7383690440bd9d468834971956d7e30b","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.failed","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Could not create a setup code.","text_hash":"bc3b0c8b6d41d7975d2ad4bd6c6b8603819d888916a2e87ca09ec575f23158c2","tgt_lang":"th","translated":"ไม่สามารถสร้างรหัสตั้งค่าได้","updated_at":"2026-07-04T16:48:49.478Z"} {"cache_key":"3ab6d6111f2f5922d79ed2e0d5555dbecb4ff8c324e632e3329b44a9b77169cc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewAll","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"All cards","text_hash":"2306120917506b5998ec702f3661068b102dac538ba4c9e4634d65fe33eea98a","tgt_lang":"th","translated":"การ์ดทั้งหมด","updated_at":"2026-06-17T14:16:47.316Z"} +{"cache_key":"3c2078fa2ddd0da5e65ab11f167e7286a0c29bbd4446c73f5b810412bad6d27b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"th","translated":"เชื่อมต่อกับ gateway เพื่อเปลี่ยนแปลงปลั๊กอิน","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"3c5d07d156661386692b3d8c2a71ac4fe00174533cc8de778fea9eb06e18aa50","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"th","translated":"ดูรายละเอียด","updated_at":"2026-06-16T14:17:16.747Z"} {"cache_key":"3cc237f01333149cd053bcd99a28d2fca1bb324528fd8cc96e4cce0d36dc6084","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"th","translated":"ความไว","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"3d63c31b922de8f93f71559de6ed6c4ffea1f8b90a7d267c2e8540271cffbbd9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"th","translated":"อ่านแล้ว","updated_at":"2026-06-16T14:17:36.173Z"} {"cache_key":"3dafe38731caf2a9ea18b719e79228cc821e6c7968dd3ab5d38084da32bf0457","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"th","translated":"ใช้บริบทไปแล้ว {percent}% ({used} / {context} โทเค็น)","updated_at":"2026-07-09T07:06:34.293Z"} +{"cache_key":"3dc9d44fb034ba0a7120ad2448d741ad14eef0d44182100834f3a64a982b0450","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"th","translated":"เรียกดูได้เท่านั้น การเปลี่ยนแปลงปลั๊กอินต้องมีสิทธิ์ operator.admin","updated_at":"2026-07-10T02:28:25.633Z"} +{"cache_key":"3e8c9cc4a8572d02966c4134b00e200e9e050a2b0930941e7662c4880d48d087","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"th","translated":"ค้นหาบน ClawHub","updated_at":"2026-07-10T02:28:09.425Z"} {"cache_key":"3ec7e5c1ffad1f6ff867594cf51c3872c052bd964c4a683c06217ff448b56ab0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"th","translated":"เก็บคำอธิบายหลังคำตอบสุดท้าย","updated_at":"2026-07-01T01:08:34.109Z"} {"cache_key":"3f63d0db1eeff1295fb4ac845945d539bdf97febd344e8b2c7be96e78a1c3191","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"th","translated":"ความหนาแน่นการ์ดแบบกระชับ","updated_at":"2026-06-17T14:16:47.317Z"} {"cache_key":"3fe663fc7adf33045965cface65a548f71d8ee03c3b6dc4677b97138bfb3ff35","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"th","translated":"กู้คืน","updated_at":"2026-07-05T21:01:30.011Z"} -{"cache_key":"40635cbc21e5e2aeedb5a57c9a2247ec216ee96905407910b4d356222083edf7","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"th","translated":"ลากเพื่อยึดไว้ทางขวาหรือด้านล่าง","updated_at":"2026-07-10T06:08:40.899Z"} +{"cache_key":"40570f3259042ba2bbb2586e52c2286b146ca3ca01be4076d30c8f92d238128c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"th","translated":"ช่องทาง","updated_at":"2026-07-10T02:28:14.296Z"} +{"cache_key":"405b9498f4207022b4625690ec97ffba5d8897e2f374a79f93f743c375aabe81","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"th","translated":"ลบ {name}","updated_at":"2026-07-10T02:28:20.120Z"} +{"cache_key":"4097278e14faac4e5fbcc12776c804b9f05e6e6bd70b25c4786209f235c71aae","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"th","translated":"เพิ่ม {name} แล้ว ยืนยันตัวตนด้วย “{command}” จากนั้นรีสตาร์ท gateway","updated_at":"2026-07-10T02:28:09.425Z"} {"cache_key":"409e7a32773ca4cfaad6040b79e08f395724751a56fca118fa183822811287ce","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"th","translated":"เพิ่มบันทึก","updated_at":"2026-06-16T14:17:26.503Z"} {"cache_key":"40b441bfc3460c9046cdcf0afa49520cb94d7e914354b17a3528bc111d5baa4c","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.resets","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Resets {time}","text_hash":"5a0f8c1b2755ee505e02e19fadc7377ad48df63cc7d3399c20228fe3edc37cb1","tgt_lang":"th","translated":"รีเซ็ต {time}","updated_at":"2026-07-09T11:49:48.608Z"} {"cache_key":"40b4dcea005f6f61d07fb943ba70904821dcc72fccea5b00ecd6e86bdc26cb73","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.showSetupCode","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Show setup code","text_hash":"dc4fa0026fedf726e622f08eafb87102dfe74b6f27a47c5bc3e78df69498296b","tgt_lang":"th","translated":"แสดงรหัสตั้งค่า","updated_at":"2026-07-04T16:48:49.478Z"} @@ -87,39 +120,54 @@ {"cache_key":"4292409a2003f4067eb24ba4a8815ac103316ba61ba50aad59967feacd1a40b3","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"th","translated":"จัดเรียงเซสชัน","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"42b238926bc9a902b51c0bda06595659730c013d7c844d38c14c7de86bd36faa","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"th","translated":"การดำเนินการลิงก์","updated_at":"2026-07-09T11:03:08.210Z"} {"cache_key":"42c8715173ad98b9e3d2785565de2d832a0016a5478b0456c2c9404e6526a124","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"th","translated":"มุมมองแบบอ่านอย่างเดียวของเซสชัน Codex บน Gateway นี้และคอมพิวเตอร์ที่เชื่อมต่อทุกเครื่องซึ่งแชร์เซสชัน","updated_at":"2026-07-09T10:01:43.768Z"} +{"cache_key":"42db963182cf8a24ef36ce72a5b63090e71054248ff4943d597ce645616ca8cc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"th","translated":"Gateway ออฟไลน์","updated_at":"2026-07-10T02:28:20.120Z"} +{"cache_key":"43fa1664d9da52842f6d8810fff26f29e4b66c54d144e5bf0085e9b7ee8f78ef","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"th","translated":"เวอร์ชัน","updated_at":"2026-07-10T09:47:39.902Z"} {"cache_key":"44ea3a964c0c0ebca1b16523bbd24c90f92e89a93c79f6bb8a6692713d38e11c","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"th","translated":"ไม่เคยมาเยือน","updated_at":"2026-07-09T20:51:52.540Z"} {"cache_key":"451cd83bc7e5fcbe75dbe1de41cc142349a0ad03d767073242f7bebd7d4b9a7c","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"th","translated":"การ checkout งานของเอเจนต์แบบแยก และสแนปช็อตสำหรับการกู้คืน","updated_at":"2026-07-05T21:01:30.011Z"} +{"cache_key":"4589e61511eafaa326ce4568a718379e0fe5bd57b3e52874c6e877a198878998","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"th","translated":"ปลั๊กอินทางการ","updated_at":"2026-07-10T02:28:09.425Z"} {"cache_key":"458d5f79ca3c3a42dc4f3ff021a62bf5596e20dbfd565d92d5ff44c0ace06b97","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"th","translated":"ขาดหายไป","updated_at":"2026-06-16T14:17:36.173Z"} {"cache_key":"45df5421547f480ce67973de1868b3a95c30dc4e5245d3e311818b1d6328a288","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"th","translated":"เธรด","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"465bbbe2ed419c29b7dae2c9eeaacc0722d9f0f5cc3e6e316471781067137814","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"th","translated":"ออฟไลน์","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"46ee4670e7debaa36093b9265617e89875828e41884c21533fa289efd22d9e3c","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitDaily","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Daily limit","text_hash":"1e4ce9cd955f07b1b79cddb1bec9df28d4033d4238c0e54b0b766239133afc8c","tgt_lang":"th","translated":"ขีดจำกัดรายวัน","updated_at":"2026-07-09T11:49:48.608Z"} +{"cache_key":"476cb9303b9b7855238fc7efe3b0a39332c9a66b8909800cbad8c7a5de243794","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"th","translated":"กำลังเพิ่ม…","updated_at":"2026-07-10T02:28:14.296Z"} {"cache_key":"494deeecaeb4c217caee351b85d43d68c7336a7949291e358b07b1fe4f27dc59","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"th","translated":"โทเค็นแคช {count}","updated_at":"2026-07-06T06:40:15.357Z"} -{"cache_key":"49620d6494b049933b994543e0aa352a51679132ef059a4e72c8ca4bbc19a88d","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"th","translated":"แสดงไฟล์เซสชัน","updated_at":"2026-07-10T06:08:40.899Z"} {"cache_key":"49fd0ac92802175ac5684421b46287b291f54f5a2d4d2f36681b92a8ce207041","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"th","translated":"5 วินาที","updated_at":"2026-06-17T14:16:55.187Z"} +{"cache_key":"4db8f0f5b0051f5130075407e11fbb570202a1609f649c3f25cd314d7f8de3fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"th","translated":"ค้นหาปลั๊กอิน","updated_at":"2026-07-10T02:28:04.450Z"} +{"cache_key":"4e41088c7597ad1909a9176a3853f4a2e6970879525e4e8ff74d6bcb2b3d62ed","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"th","translated":"ยังไม่ได้กำหนดค่าเซิร์ฟเวอร์ MCP เพิ่มที่นี่หรือเลือกตัวเชื่อมต่อจาก Discover","updated_at":"2026-07-10T02:28:14.296Z"} +{"cache_key":"4e6db79452e7e2871182af4aed72efd9220d4d337af21ce0c5b41db7be420f3d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"th","translated":"กำลังลบ…","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"509defbafdfd12227921ae61d30ab8c09a8ba87ff32413c32bf6c1e098458449","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"th","translated":"คำอธิบาย","updated_at":"2026-07-01T01:08:34.109Z"} {"cache_key":"50da449dd88713a25b6c2d14425e10eefd29052c0b63790fdec91aa3b20f4474","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"th","translated":"แสดงเฉพาะเซสชันที่เก็บถาวร","updated_at":"2026-07-02T14:30:49.122Z"} +{"cache_key":"5195440febcb12fbd47b5c5cc95fc0a285850d3bb9f1bfed54c2316c22ba8dea","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"th","translated":"กรองปลั๊กอินที่ติดตั้ง","updated_at":"2026-07-10T02:28:09.425Z"} {"cache_key":"52c56b26a75fb8de007b3c16d5b1a04948bec0828d07b49adb53aae99a38387f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"th","translated":"ปักหมุดเซสชัน","updated_at":"2026-07-02T14:30:49.122Z"} {"cache_key":"52fc6571dfbefa0d1c4a465ecc68030c6284d2919dc7053f95fa9b6247926c90","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"th","translated":"ไม่มีกิจกรรม","updated_at":"2026-07-05T14:40:13.915Z"} {"cache_key":"5369cf5e8eec568440f31232d836749bb396f1704db4ea21ed053d8c536cd4df","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"th","translated":"จัดเรียงตาม","updated_at":"2026-07-06T23:41:15.864Z"} {"cache_key":"53a1ada7ff279b0d93db641f2980a4de3dccfa92752cbfa74c1dd4943fdf165b","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"th","translated":"ไฟล์แนบ {count} รายการ","updated_at":"2026-05-30T15:38:44.763Z"} +{"cache_key":"56a3cfbcbc740bacb7ab3ee317e317c1fe569bae99073312149687d0eb0e2322","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"th","translated":"ข้อมูลระบุตัวตนที่ฝังไว้เมื่อสร้างอาร์ติแฟกต์เบราว์เซอร์นี้","updated_at":"2026-07-10T09:47:39.902Z"} {"cache_key":"598fe1c4b3566cb0de14db7f07d3c9033ddf2ab2fc6f816fae82e2b7ac9c0ad9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"th","translated":"โหนด","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"5a327590fef3c90c616f3dfaf750dbbb6c3587cb46806d6ec704d03ffdde28b7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"th","translated":"ใช้แชทปัจจุบันสำหรับคำขอแก้ไข","updated_at":"2026-06-16T14:17:16.747Z"} {"cache_key":"5ad0874d4b88cbec52942933ce469d2fd21f7a845e39319cd329b675581b5c3f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"th","translated":"อัปเดตแล้ว: {time}","updated_at":"2026-06-16T14:17:16.747Z"} {"cache_key":"5b710a8a4f245608cf816817d346b6dfffbea82184f82009ab4bb2eca46b6e21","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"th","translated":"ยังไม่ได้มอบหมาย (ใช้ {agent})","updated_at":"2026-06-17T14:16:47.316Z"} +{"cache_key":"5bc64192027906e84fd6802129251128b347fa29bba0ef6a9d5a2231f5d8d817","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"th","translated":"ไม่พบเซิร์ฟเวอร์ MCP “{name}” ในการกำหนดค่า","updated_at":"2026-07-10T02:28:14.296Z"} {"cache_key":"5bea49e45ca36ff23b3858e5f72d967f5bca2b013c1db1cff3d67d5169b8fb63","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"th","translated":"แยกออกแล้ว","updated_at":"2026-07-04T21:24:03.515Z"} {"cache_key":"5c022ff710d6da649b919281c77ac09342249eff66327284c5c2063e2e2af66e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"th","translated":"ความพยายามที่ล้มเหลว","updated_at":"2026-06-17T14:16:55.187Z"} {"cache_key":"5cab5e765c835662b7293181f1dc602b662f0bbd2dcd6eab3b2f5b715e581cbc","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"th","translated":"ลบกลุ่ม \"{group}\"? เซสชันของกลุ่มนี้จะย้ายไปยัง Ungrouped","updated_at":"2026-07-06T23:41:15.864Z"} {"cache_key":"5dbe781be7c1249284bedc0545e83a68ee31e16453727a2792d4607ab18c6c0f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"th","translated":"ใช้งานอยู่","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"5ddacc892c1409bd3ad5c981d296b785a911a616747b184ccf76995888165c09","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"th","translated":"เก็บเซสชันถาวร","updated_at":"2026-07-02T14:30:49.122Z"} {"cache_key":"5f8bfbd9a28aa730b16508c6024c2c21accdb27958503b83c4f9be0f22ae559b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"th","translated":"ค้นหาไฟล์","updated_at":"2026-06-16T14:17:36.173Z"} +{"cache_key":"5facad13f956a3fc2123328ad29db4ea35e70e1c47e992d5f38dff25301c3fee","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"th","translated":"ติดตั้งแล้ว","updated_at":"2026-07-10T02:28:09.425Z"} {"cache_key":"60125fdafaa5b7b3486e7104b5511ca6e737b2709233bb86f1c5d58ac06376e1","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.restoreSession","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Restore session","text_hash":"35e4dc9befd3b3a29b50938839af0efb41b08051988dde53e1c1e73d1c2a039f","tgt_lang":"th","translated":"กู้คืนเซสชัน","updated_at":"2026-07-02T14:30:49.122Z"} +{"cache_key":"608c9b67a62a6108a861264243ca7726f28ddad62951fd8c8cd59c57470eca49","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"th","translated":"ค้นหาปลั๊กอิน","updated_at":"2026-07-10T02:28:04.450Z"} +{"cache_key":"613b8609b63815790499c57e646cd9c8949d2a272ddc7c3bed1592281532daa2","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"th","translated":"เวอร์ชัน Gateway ที่เชื่อมต่อ","updated_at":"2026-07-10T09:47:39.902Z"} +{"cache_key":"61531c1bb1f8c60b527fa56ae5b09cdf5ee1abb56c7fe325e5f1358db589f5f3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"th","translated":"ป้อน URL http(s) หรือบรรทัดคำสั่ง","updated_at":"2026-07-10T02:28:14.296Z"} {"cache_key":"61823d34a6c50803ae78d4777f34663a606e450252386e1e00c4bd2d07ecc53b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.usageCredits","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Usage credits","text_hash":"fbc841b791a14110e06a9913d3d69153b9cc4cf9542b856821b357a09a7c08a4","tgt_lang":"th","translated":"เครดิตการใช้งาน","updated_at":"2026-07-09T11:49:48.608Z"} +{"cache_key":"6191e1bd5d6e02d7607bf4599cebc4ea74d079660b2cc74df676c1786d0771f8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"th","translated":"แนะนำ","updated_at":"2026-07-10T02:28:04.450Z"} +{"cache_key":"6207398a0cab3f175696331d593045e35dee7dc3a2882ef6ab295dcbb09eec0a","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"th","translated":"คอมมิต","updated_at":"2026-07-10T09:47:39.902Z"} {"cache_key":"6215378cddd31803cb7f5c14d3949bf3b86e6e18085a0f354b9f34220ffa5b85","model":"gpt-5.5","provider":"openai","segment_id":"languages.hi","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"हिन्दी (Hindi)","text_hash":"fab2abfce45382f3031c59477017700a8cb5dfaf8d15379dc24304809b97c7d5","tgt_lang":"th","translated":"हिन्दी (ฮินดี)","updated_at":"2026-06-26T21:43:41.993Z"} -{"cache_key":"62d3225cd3773a3571f95417b306ecb756e6bc6816c0f95ffb2851623fb7d539","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"th","translated":"ยึดไว้ด้านล่าง","updated_at":"2026-07-10T06:08:40.899Z"} -{"cache_key":"630d4bd4058159771fecaa35a2e020f601ab7842080fb33e29ce3dc1bbe1b6f2","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"th","translated":"เยี่ยมชมแล้ว {seen}/{total}","updated_at":"2026-07-09T23:56:05.687Z"} {"cache_key":"63425b218a1043b0a711c15ac5f1da1bd8b832dd73db12422cd274cd4feee608","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"th","translated":"ข้อผิดพลาดของระบบ","updated_at":"2026-07-09T10:01:43.768Z"} +{"cache_key":"6469b52425ae531f200e5ea3586871b7950c4d803b28c8601e59c02b939a9063","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"th","translated":"นำเซิร์ฟเวอร์ MCP {name} ออกแล้ว","updated_at":"2026-07-10T02:28:14.297Z"} {"cache_key":"64fcb939f341d1abad95e9042de94e4fd78efeea7a236741eea23776c13ecabb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"th","translated":"{count} การ์ด","updated_at":"2026-06-17T14:16:47.316Z"} {"cache_key":"65176c96c148257be9a66a27bc692af9c33cf4dabb21c9dfb5ecfee16706db94","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"th","translated":"เชื่อมต่อ Gateway ใหม่เพื่อรีเฟรชเซสชัน Codex","updated_at":"2026-07-09T10:01:43.768Z"} +{"cache_key":"664bbfb2a75844daeb50fff7808d6eb146f4a5ccbeee44f58956cd5dda1d1625","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"th","translated":"รวมอยู่แล้ว","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"67c8f2722b191bfe4a94b551928010898ac97461ae27e00ab82afd0b6f78bbc7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"th","translated":"Agent","updated_at":"2026-07-05T14:40:13.915Z"} {"cache_key":"67e8c843a32ccf8257ebc8120a96b6197dcb79e3624fb7965c6484672d7447ee","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"th","translated":"งานเบื้องหลังที่อยู่ในคิวและกำลังทำงาน","updated_at":"2026-07-09T21:53:36.660Z"} {"cache_key":"69697ca507a7c1e06a7506278a9ef16d7f4d0eb99bdeb78463b2487960e16fe7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"th","translated":"เส้นทาง Workspace","updated_at":"2026-06-16T14:17:36.173Z"} @@ -127,46 +175,68 @@ {"cache_key":"6c97bf393ff6d7a62cc371902acaf8596f384c10b596916eb9aaf7c7c15c21cd","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"th","translated":"เปิดในเบราว์เซอร์เริ่มต้น","updated_at":"2026-07-09T11:03:08.210Z"} {"cache_key":"6d49f61e8daf29818cae027ae36136a2ebff9dc4e819e22d841c22f70ffae4cf","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goal","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Goal","text_hash":"cdbf6975e8a35b0d03558be6822dfae166482c24fb86b0433f60e8167f5c91e4","tgt_lang":"th","translated":"เป้าหมาย","updated_at":"2026-05-29T21:02:14.030Z"} {"cache_key":"6d5f3bb7d2b885270a7256579ad859a29c02462ae2f7a08cf8100b2902f07f2d","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"th","translated":"การละเมิดโปรโตคอล","updated_at":"2026-05-30T15:38:44.763Z"} +{"cache_key":"6de3b98ec1305880d27cff66e2cbc336d91a47a564fb49617f7bad0a3544f6fa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"th","translated":"เพิ่มเซิร์ฟเวอร์ MCP {name} แล้ว","updated_at":"2026-07-10T02:28:14.297Z"} +{"cache_key":"6dfa144906be8452e6a5c53f6a359ceb4e6f27fd28dad28aaa5da066dbd92bbd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"th","translated":"เชื่อมต่อเพื่อเรียกดูปลั๊กอินที่ติดตั้งและแนะนำ","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"6e29e91effb60554142d13abcbeb406fc720b094154bf69901f5cf9e0033ecdf","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"th","translated":"เลิกปักหมุดเซสชัน","updated_at":"2026-07-02T14:30:49.122Z"} {"cache_key":"6e3c71f59e1f2bfd6ee7b64891f24fca14e739d61a076bf99aab0f620442ee2c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"th","translated":"{agent} (ค่าเริ่มต้น)","updated_at":"2026-06-17T14:16:47.316Z"} +{"cache_key":"6e7e11240b1c5aa6e05730d6d35e5a204c9282f1480ab9aa333fdbef6f6641a2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"th","translated":"แหล่งที่มา","updated_at":"2026-07-10T04:28:47.234Z"} {"cache_key":"6e8f75a732771ebd75453388b992d2248c05304390fcab8ea0d5e4f90a376cdb","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"th","translated":"ไม่มีเซสชันบนโฮสต์นี้ตรงกับการค้นหาของคุณ","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"6e9519706f1854b67ab7070de07f07602d0ea8d8fbc04879408d11595b370243","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"th","translated":"การป้อนเสียงแบบเรียลไทม์ต้องการสิทธิ์เข้าถึงไมโครโฟนของเบราว์เซอร์","updated_at":"2026-07-06T22:42:27.978Z"} +{"cache_key":"6f605d9c35c1577dae93e9d59ce042a86dcd0d772424afce3cf7fa1e55b5d670","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"th","translated":"เพิ่ม {name} แล้ว เซสชันเอเจนต์ใหม่สามารถใช้งานได้ทันที","updated_at":"2026-07-10T05:22:39.116Z"} {"cache_key":"708a01aacc39254f1ae99c4dd0a68002866db5d75457ec5d7c9464b1e852e05e","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"th","translated":"{count} คำขอ","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"719ce9935bf4aa81185b6a0f0b5d93dc8454218c2e091635da3e67f6ef218720","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"th","translated":"ย้ายเซสชันไปยังกลุ่ม","updated_at":"2026-07-05T14:40:13.915Z"} +{"cache_key":"71dd1cb4b771b0107a32748dea59c8e93420c094f08c8c3dc5a42e2f115c16d3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"th","translated":"ลองค้นหาด้วยคำอื่น","updated_at":"2026-07-10T02:28:09.425Z"} +{"cache_key":"72d134d275e43ba78a940db2542c44bccce3e8bafd3fd8013e627bc9629684a1","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"th","translated":"ปลั๊กอิน","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"7364137fa0c32929da15f23d85af9c84b275c87da596db00b4db550c6c12e02e","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"th","translated":"การประสานงาน","updated_at":"2026-05-30T15:38:44.763Z"} {"cache_key":"7478e0f3ad002416f61e2d76f6c6831fe43b9d2ccafec65fbef565d89bf0d650","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.waiting","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Official OpenClaw mobile apps connect automatically after scanning.","text_hash":"40dd288c9aa182a2809e74f4511402a69db7b153685db075bb5d216d964c3be1","tgt_lang":"th","translated":"แอป OpenClaw mobile อย่างเป็นทางการจะเชื่อมต่อโดยอัตโนมัติหลังจากสแกน","updated_at":"2026-07-04T16:48:49.478Z"} {"cache_key":"756ae62879dbae56af102938eb09e82d5a8156afaa690bdf3865966a4675a9b3","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortCreated","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"th","translated":"สร้างเมื่อ","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"75d0dffdb049357446962a14388ed3e5ae21a468e14bfad037afda2c8a0a2345","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"th","translated":"พร้อมแต่ยังไม่มอบหมาย","updated_at":"2026-06-17T14:16:55.187Z"} +{"cache_key":"7673189b988a6f634360c49c2d4ab39d9f0cee491963ba11cf4c7a0e5039d3d4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"th","translated":"ClawHub","updated_at":"2026-07-10T02:28:04.450Z"} {"cache_key":"76a105680f440eab4e5c9b2f1b4f89d4e4477a4d27ab9ed70ed08cf8c1b42b43","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"th","translated":"ไม่มีเซสชันที่เก็บถาวรบนโฮสต์นี้","updated_at":"2026-07-09T10:01:43.768Z"} +{"cache_key":"76d3dc73280c799583efe091d1cdf3ec7ae521d630e4af05b33eeb4b8c91c2cd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"th","translated":"ชื่อ","updated_at":"2026-07-05T21:01:30.011Z"} {"cache_key":"774ff18739bc7cc2de2ba259cd83422a98e8d062099e167c4b4cb9c8cccb9040","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"th","translated":"การพึ่งพา","updated_at":"2026-06-16T14:17:26.503Z"} +{"cache_key":"7787cd8dd5d0b8ea71d05c5cdff69c4681746e17ccba5832abd726b3484f75a3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"th","translated":"เซิร์ฟเวอร์ MCP แบบคลิกเดียว","updated_at":"2026-07-10T02:28:09.425Z"} {"cache_key":"782ecc11866c86039ba50f4ea3546778e412e60ff399b5c3b6da014512632f9e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"th","translated":"อัปเดตเมื่อ {time}","updated_at":"2026-06-17T14:16:55.187Z"} {"cache_key":"78d2a95bf81f23a92b74237aebdeccdd0827723fa63e2d470edbe72021e6a992","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"th","translated":"แชทใหม่ใน worktree","updated_at":"2026-07-06T04:56:39.882Z"} {"cache_key":"798d0f1a48623c6a918431df65f91abdc8988976c3515169580a3dde6c76c5be","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"th","translated":"สถานะ","updated_at":"2026-07-05T21:01:30.011Z"} {"cache_key":"7a7af4429406a6161c0f1fd1a63e1b83118773f0ba0c7e26216f7c27a1209e23","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"th","translated":"การมาเยือนของกุ้งล็อบสเตอร์","updated_at":"2026-07-09T20:51:52.540Z"} +{"cache_key":"7a94a1c6cdb728371e2a5ddc11a4758bad00b72dae6c2467d892f7e3ed7bbf96","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"th","translated":"ปิดใช้งาน {name} แล้ว","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"7aec1f6ba985894040080681cabc61d04822261bd081a7ffc2d3b74499b643ff","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"th","translated":"ชื่อกลุ่มใหม่","updated_at":"2026-07-05T14:40:13.915Z"} {"cache_key":"7b2f9888e31a9b6e01c13898e3e7d8d24e60b7abf43dd1614b20cf80c581fa56","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewBlocked","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Blocked","text_hash":"18f2a0947f9d6523991b29b450307f22773f57d65f7efb98d48a167df04d6b1d","tgt_lang":"th","translated":"ถูกบล็อก","updated_at":"2026-06-17T14:16:47.316Z"} {"cache_key":"7b62cd24aed3060b59c9c78b1de476af78cb43320b6e5880f27ae4ba748b1218","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"th","translated":"ดูตัวอย่าง","updated_at":"2026-06-16T14:17:40.285Z"} +{"cache_key":"7b8f42db9f295595e8f0c458783fb4500bafd80f486bd8fe80452e1217be189a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"th","translated":"ป้อนอย่างน้อยสองอักขระเพื่อค้นหาโค้ดและปลั๊กอินแบบบันเดิล","updated_at":"2026-07-10T02:28:04.450Z"} {"cache_key":"7c4d336fd7705785e7525bb903a563c288d21834c60a0775301236a0fe5aea51","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"th","translated":"ค้นหาเซสชัน Codex","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"7d900458d42f7e49aa2e52a4efcd170545393d0229d2efc7c91f83c556492fd7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"th","translated":"ตัวเลือกกลุ่มสำหรับ {group}","updated_at":"2026-07-06T23:41:15.864Z"} {"cache_key":"7da6f742e93739de6f2ea77fcff3e316b7901c1392449c5d62f59029877370a8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"th","translated":"ถูกบล็อก {count} รายการ","updated_at":"2026-06-16T14:17:26.503Z"} +{"cache_key":"7e1906f8198ffda5288df6878cd37428b7a9899def77d004de12c7da50105f5f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"th","translated":"การดำเนินการของ {name}","updated_at":"2026-07-10T04:28:47.234Z"} {"cache_key":"7e43881d4f977e29ba1471fb346e57db6beeabbeb0dd90b5ec876a268b641e41","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"th","translated":"กำลังโหลดเซสชัน Codex…","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"7ef63d089c70146224f861003ce889eef367be28af3f07daf84bac21739306c2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"th","translated":"คัดลอกพาธ","updated_at":"2026-06-16T14:17:40.285Z"} +{"cache_key":"7f198dc6155c1f270717c2de765ea6addcadf1cd79503340561df633b1be09f6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"th","translated":"แค็ตตาล็อกปลั๊กอิน","updated_at":"2026-07-10T02:28:04.450Z"} +{"cache_key":"7fb6d80f1cb4e0f5d62493b03e4badfc38a54ef5b9375c12ad8b1f276d8b0d1f","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"th","translated":"ข้อมูลระบุตัวตนของบิลด์ Control UI และ Gateway ที่เชื่อมต่อ","updated_at":"2026-07-10T09:47:39.902Z"} {"cache_key":"8077d16aa3c637b35170f739327dbf290ebe1f67f642d6b838c989e9ceb356fa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"th","translated":"เซสชัน","updated_at":"2026-06-16T14:17:26.503Z"} +{"cache_key":"808ee360457861124b7fe233f162af9da73e5b5817c97b314a08da8e2e96fd91","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"th","translated":"กำลังคัดลอกแฮชคอมมิต","updated_at":"2026-07-10T09:47:39.902Z"} +{"cache_key":"822fe269c7488de357a35eb257c3ef84a8566cdf1a3ce89a3c6c0425349005d9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"th","translated":"เพิ่ม","updated_at":"2026-07-10T02:28:09.425Z"} +{"cache_key":"827f46122deb859e90b51186c6725fdeb540ed80510f35dab90a9ff124973281","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"th","translated":"ปิดใช้งาน {name} แล้ว ต้องรีสตาร์ท Gateway เพื่อใช้การเปลี่ยนแปลง","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"82b32ba4b5249fe382beca1d06d64587e198ebb5186b5194a3e9ed8ca8a47608","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.runDuration","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Run duration","text_hash":"b5e9698b25697ec71f0947df28e6b08438033fe73b1b87ac7362766d77b45b97","tgt_lang":"th","translated":"ระยะเวลาการทำงาน","updated_at":"2026-07-09T10:13:30.240Z"} {"cache_key":"82d646b330da749d300912d194e5b9fdcdedf9fe9eb12374e18e94fe260ba9b1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"th","translated":"QR การจับคู่หมดอายุ","updated_at":"2026-07-01T10:33:34.756Z"} +{"cache_key":"82fbc1e85c620c203ca2f73eb7156e2b76a1b09cb6b4e34b5277ad3f9d78dfbd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"th","translated":"ยกเลิก","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"832137aa586ce20a92116b1a2fed63a3859db5d6ed742a715d42329e6773d74d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"th","translated":"เปลี่ยนแปลง {count}","updated_at":"2026-06-16T14:17:36.173Z"} +{"cache_key":"8371f17f2d3e0da3db37dee613ff424a7c331aa581c9c5d418d324ef1bbcec96","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"th","translated":"เซิร์ฟเวอร์ MCP","updated_at":"2026-07-10T02:28:14.296Z"} {"cache_key":"83afb1ca30175d23fccff9ffeabddeac8b011d7e3e2784e7c9899c3dc5d92df2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"th","translated":"กลุ่มกำหนดเอง","updated_at":"2026-07-05T14:40:13.915Z"} {"cache_key":"8485e203bb7b42ff9c827427adb72cc92350f094433e98017b3163ef1887e2aa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"th","translated":"อาร์ติแฟกต์","updated_at":"2026-06-16T14:17:36.173Z"} {"cache_key":"84ce5b26d810849dfe05cc7d8c7aaf4a6bd9257e6fb6382694e2d604d9c6cb14","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"th","translated":"แวะมาเป็นครั้งคราว","updated_at":"2026-07-09T20:51:52.540Z"} {"cache_key":"858de1bf711f1a1dadb2cf125f8e6be407131bc818553cc28995613f4e943f45","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"th","translated":"รีเฟรชอัตโนมัติ","updated_at":"2026-06-17T14:16:47.317Z"} {"cache_key":"86481482600a673d954795e85f771efdf2b2fd9a5012dceaf3383d9d3913512e","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"th","translated":"ค่าใช้จ่ายรายวันของผู้ให้บริการ","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"86624fea1131fa6a397cc9d362651cb3cb1114780204e62aea5cd57395d9f891","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"th","translated":"ติดตั้งและจัดการความสามารถเสริม","updated_at":"2026-07-10T02:28:04.449Z"} {"cache_key":"86c4fd537c47f81c836ae0ad4a61c093fe500df50f6c21ae4f7c467c1fb3e2e2","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitFiveHour","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"5-hour limit","text_hash":"26d04fad786b1e3a08fd957ec893b0457b72a2926da0ee63847aea9037951d24","tgt_lang":"th","translated":"ขีดจำกัด 5 ชั่วโมง","updated_at":"2026-07-09T11:49:48.608Z"} {"cache_key":"87092c38f185832024034e533a65686cffdcbf8c2ee34d994ed0e553a607c133","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"th","translated":"มุมมอง Workboard","updated_at":"2026-06-17T14:16:47.316Z"} +{"cache_key":"870c1cf3e2f3746e153f2ba895d9fc1e7897c8610bb3269618264609b90a7aa0","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"th","translated":"เกี่ยวกับ","updated_at":"2026-07-10T09:47:39.902Z"} {"cache_key":"87e113cf89de28fbd18bcde880f7c864f01b1c7c86f1464f4e86ef5b93d9e7cd","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"th","translated":"อินพุตไมโครโฟน","updated_at":"2026-07-06T17:34:01.837Z"} {"cache_key":"88924a87298cec0f3c7886e023a4ca4016447758d843b949b7626a50a6eb78f6","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"th","translated":"Worktrees","updated_at":"2026-07-05T21:01:30.011Z"} {"cache_key":"895b48e798824bb5d8dcbdd29e0927968872219708b704934fd0bedb074604af","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.button","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Pair mobile device","text_hash":"7ac73fd1ec7be4a7e633b8b9022e0815b7d262765fe2cffdf71bd63a0ae6780d","tgt_lang":"th","translated":"จับคู่อุปกรณ์มือถือ","updated_at":"2026-07-04T16:48:49.478Z"} {"cache_key":"8b5706230475bb5b0ac5607a03ec264f2d8e89dc96fa190f3bc24908dc3b280a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"th","translated":"ประเภท","updated_at":"2026-07-05T14:40:13.915Z"} {"cache_key":"8b5e50d733b9b09c9c7a0276a502d5aefa5e05a7d0a8a8498f56b7aad47796a5","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"th","translated":"ออนไลน์","updated_at":"2026-07-09T10:01:43.768Z"} +{"cache_key":"8c13d5af3e0279b1939c7d899117479a4f2e143926e58a4c1da0d3f59b243ffa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"th","translated":"แหล่งที่มายืนยันแล้ว","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"8c28cca12583fe8e9a65f7c4e24e0f416802f2f4861297449e382cc762e449ee","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"th","translated":"เซสชัน","updated_at":"2026-06-16T14:17:36.173Z"} {"cache_key":"8d184816aa95260f0602636f979b1633a86ee62c6698e62e2b3d729c8ccbd186","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"th","translated":"การพึ่งพา {count} รายการเสร็จสิ้นแล้ว","updated_at":"2026-06-16T14:17:26.503Z"} {"cache_key":"8d68824ee510b60ea44fe48eeda3183168b4b06272dea74807f73dad870ef90d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"th","translated":"Gateway","updated_at":"2026-07-09T10:01:43.768Z"} @@ -176,33 +246,46 @@ {"cache_key":"8f9b45532bcbf7d1c8467be10cdefe8aa387b2bf8f54a92b4e683570625167e0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"th","translated":"แสดง {count}","updated_at":"2026-06-16T14:17:36.173Z"} {"cache_key":"90223ca78a20779a5624487b3bd2999d131faa7a8d1c3ad6da0efb18aee1940a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"th","translated":"ไม่ทราบ","updated_at":"2026-06-16T14:17:26.503Z"} {"cache_key":"9072842fe4b1539dcb033d38e139ad57bf8e3692314f555332f58543eab67312","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"th","translated":"60 วินาที","updated_at":"2026-06-17T14:16:55.187Z"} +{"cache_key":"90afc06271eed9720cb77e493638b55c0b0fd3711caf1a83536844609ae2f66e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"th","translated":"เปิดใช้งาน {name}","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"9111ed4eed1b81590955e839bdc505dbcc02ecbbc3ce13d2204d06b8e7c04055","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"th","translated":"เก่ากว่า","updated_at":"2026-07-05T14:40:13.915Z"} +{"cache_key":"914697242a070799a0b5fd1d865339d6aeccbd9068a2cb5b962205fffc3a184d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"th","translated":"บ้านและสื่อ","updated_at":"2026-07-10T05:22:39.116Z"} {"cache_key":"91a44ef1a952ea373fe2a0f82f492633b97299d558eb2c317432808b3dc90142","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"th","translated":"การตั้งค่า Talk ขั้นสูงต้องใช้สิทธิ์ operator.admin","updated_at":"2026-07-06T20:20:02.809Z"} -{"cache_key":"9298a58591aa5ac540a8449bf97ce6b7b36771f223977cccc632171ec3afd5fb","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"th","translated":"{name} · เข้าชมครั้งแรกเมื่อ {date}","updated_at":"2026-07-10T04:20:44.239Z"} {"cache_key":"92995b5332d0f1f8df9b935741716b42d5171c001514414a7fc92cf6a15f8999","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"th","translated":"หมวดหมู่ค่าใช้จ่าย","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"92f7fe101dab2f52e6d8cc16df664a2373244726ce0e622db420fd10e6c587a7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"th","translated":"กำลังทำงาน","updated_at":"2026-06-17T14:16:55.187Z"} {"cache_key":"93b2141d837b6485bdc48c9d190ea20dcb4c1db57cd448d1491f75f0312a0d04","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"th","translated":"ใช้บริบทไปแล้วประมาณ ~{percent}% ({used} / {context} โทเค็น, โดยประมาณ)","updated_at":"2026-07-09T07:40:48.429Z"} {"cache_key":"93bfbe051f71d4a8900ae8a375870f8f34e513b32227519e64314feade787f3f","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"th","translated":"Русский (รัสเซีย)","updated_at":"2026-06-26T21:43:41.993Z"} {"cache_key":"93e2de7b35c13903a76e0d9d187de386f20b49c4521553f21f5f7219ee03281a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"th","translated":"บันทึก worker {count} รายการ","updated_at":"2026-05-30T15:38:44.763Z"} {"cache_key":"940a7aafe3bb52f28ba34b95fdf45612d333bfe4db393e78503157154d91b4ae","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.closePane","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Close pane","text_hash":"7fa0f9613d919e167b0f9aa03c22809d446af293eb6c3bac6866bae66d2656c9","tgt_lang":"th","translated":"ปิดบานหน้าต่าง","updated_at":"2026-07-06T07:24:12.973Z"} +{"cache_key":"94dda2aa0682eb5a437db10c56aa571d879a09e79945b9dbad8a1c5841f07ebb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"th","translated":"อื่น ๆ","updated_at":"2026-07-10T02:28:14.296Z"} {"cache_key":"94f9282e0b98dfc8a1bc902a0f909e5b68e7602a2a4fe34fcc204a3179f147b5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"th","translated":"กำลังทำงาน","updated_at":"2026-06-17T14:16:47.316Z"} {"cache_key":"951a9da98493af2f3606c5201287bd69c1615663ebc1522b1ff17aef06dec37d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"th","translated":"โฮสต์","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"95fa4770de3ae00b0905e7169217228b362b799419e3a3e02348375f42b79339","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.copySetupCode","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Copy setup code","text_hash":"277aeb7a54e49353875cc3dc3bb548f26aef0af0c328d6709455c0f813b3efa8","tgt_lang":"th","translated":"คัดลอกรหัสตั้งค่า","updated_at":"2026-07-04T16:48:49.478Z"} +{"cache_key":"970024c55ab24e790232aece2e1ad6ad1d389e56965f845e3856c8daaf1def75","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"th","translated":"เปิดใช้งานแล้ว","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"973aeb41a19307f1061ddf2447be12ca14bb3a0a0c1c05374a636f529fb6df88","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitDown","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Split down","text_hash":"8730b89df7caaf5b5090f9b7365a0a03e0a13d9682dc6418f556b8a676d9e98f","tgt_lang":"th","translated":"แบ่งลงด้านล่าง","updated_at":"2026-07-06T07:24:12.973Z"} {"cache_key":"98019030d7e9c92f10b9b592e18f46317a99118e18fd4f66fcf05ee9c8ed2ff6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"th","translated":"คำสั่ง","updated_at":"2026-06-16T14:17:40.285Z"} {"cache_key":"983650a8c036939beed22f0dc5e2888757b767fed53e3f2a6ce7a0f2e4ca9512","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"th","translated":"{count} เซสชัน","updated_at":"2026-07-05T14:40:13.915Z"} +{"cache_key":"9912004f066e2232539d0f5a0c1549eddfd7f02003754c1e99804cda56c1af87","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"th","translated":"เครื่องมือ","updated_at":"2026-07-10T02:28:14.296Z"} {"cache_key":"99760959266429519ed5d568c3e92bb3d86b4e46f6918c0566ac0d7f8af3fa60","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"th","translated":"Agent เริ่มต้น","updated_at":"2026-06-17T14:16:47.316Z"} +{"cache_key":"9a0ff6a923c0cc27f5c8fa0ac9702ad8272b7507ea8c9a76640dd91317d0446e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"th","translated":"หมวดหมู่","updated_at":"2026-07-10T04:28:47.234Z"} +{"cache_key":"9b011d9c90e90000989e53ce761ed6be4f2909c7bc9963c94f8c8daf739a6ba5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"th","translated":"หน่วยความจำ","updated_at":"2026-07-10T02:28:14.296Z"} {"cache_key":"9cdab3ee824fd3a1e972babdfb124801663f10ab689495030dbf74467a9fade2","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"th","translated":"Skill Workshop","updated_at":"2026-05-31T21:48:38.842Z"} {"cache_key":"9d01f146ffd9569099c0a526049d63de8aca2ca80d2306cf64bed13a924800ec","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"th","translated":"กู้คืนเซสชันนี้เพื่อส่งข้อความ","updated_at":"2026-07-02T14:30:49.122Z"} +{"cache_key":"9d4a59a016906c4a37dcfae7f1c3c14a2c313c2f3f6602fed852d98bc57d4d42","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"th","translated":"โปรดตรวจสอบคำเตือนของ ClawHub ก่อนติดตั้งปลั๊กอินนี้","updated_at":"2026-07-10T02:28:25.633Z"} +{"cache_key":"9d4bbf20f96cbba3a545b6413af8fd0a9cb15902860354c9514370ee91f0a6ca","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"th","translated":"เพิ่มเซิร์ฟเวอร์","updated_at":"2026-07-10T02:28:14.296Z"} +{"cache_key":"9e04b526090fc222df25eb6d2975eaea1f30697e8270f523d61747276e66c293","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"th","translated":"ทั้งหมด","updated_at":"2026-07-10T02:28:09.425Z"} {"cache_key":"9e3fe364d025a1cdc171e0c04c3efefe8736e11172389dc56f912858b748a2c2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"th","translated":"อัปเดตแล้ว","updated_at":"2026-06-16T14:17:16.747Z"} {"cache_key":"9f01af4efb3d6a9052f7b6b0637530c746e17c41776d73b315aa17efbe1aa7c9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"th","translated":"ไม่มีไฟล์ในโฟลเดอร์นี้","updated_at":"2026-06-16T14:17:36.173Z"} +{"cache_key":"a0982f3a9bdde06cebecf3d28e64e3bbd4130e0dd1aa13ea23283ddfc01f6c3f","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"th","translated":"ปลั๊กอิน","updated_at":"2026-07-10T02:28:04.449Z"} {"cache_key":"a10d87a8e1f91b20dabe0977ab313c1e9e3ed00a447c1d5f0876e2d071d0f009","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"th","translated":"เชื่อมต่อแล้ว","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"a21a37d46016b1e48a8e2688f3879c47026311185650da67094e135f6e5fd0d8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"th","translated":"เปลี่ยนชื่อกลุ่ม…","updated_at":"2026-07-06T23:41:15.864Z"} {"cache_key":"a22e9b5d43731fec0c7dcbcd982d4aacb9936cda33d4cbf8d2a01e7302a993fe","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"th","translated":"พื้นที่ทำงาน","updated_at":"2026-06-16T14:17:26.503Z"} {"cache_key":"a30551d9a8a21ad81e3e758d2b96436e54f440d5e47250fc604dde1e09956e1c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"th","translated":"ไม่ทราบ","updated_at":"2026-06-16T14:17:26.503Z"} {"cache_key":"a310ef2e829f41ca4a1e09db17f9ad3478a45cf5974f80436ace828daf56d80e","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.budgetValue","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{used} of {limit}","text_hash":"e191398f92416f35cb6279f7206d2b67cdee04ce46932a1ece17c8c18ca3636e","tgt_lang":"th","translated":"{used} จาก {limit}","updated_at":"2026-07-09T11:49:48.608Z"} +{"cache_key":"a4588de527c3002e274b52a2ac279c44cd1df31bbb9c40d3be9a4571fcf4ba42","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"th","translated":"การกำหนดค่า","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"a495da1f724603689b7b7eb3df8d42d78f6aefea3299e9d6a62191a6627631ea","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"th","translated":"เซสชันทั้งหมด","updated_at":"2026-07-03T07:40:31.873Z"} {"cache_key":"a4fe522a6e635775e7b93707d6e66242e24f03953f7135b321c746a2053bd578","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"th","translated":"เพิ่มเติมในการตั้งค่า","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"a5eba44bf5e534d1664d279d97f4ccae25b67a39ad215cf71a890e90428059e7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"th","translated":"เพิ่ม {name} แล้ว อัปเดต endpoint และ credentials ในการตั้งค่า MCP ก่อนใช้งาน","updated_at":"2026-07-10T02:28:09.425Z"} +{"cache_key":"a685f9c633eeb86f370fa28bcd7268d35276889b3391c6256f4afed57758a0bc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"th","translated":"ส่วนกลาง","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"a6f1dc20603629daf073eccc63bb00a2ee94514f216f0f73dbf1b532b633d7a7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"th","translated":"ส่งคำขอแก้ไขไปยังเซสชันแชทปัจจุบันแทนเซสชัน workshop ของข้อเสนอ","updated_at":"2026-06-16T14:17:16.747Z"} {"cache_key":"a80dd5b77f4050f9b309a95afa9f221d39aab95f5d7391f213242b2f1af5fd18","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"th","translated":"ปิดข้อผิดพลาด Talk","updated_at":"2026-06-16T14:17:26.503Z"} {"cache_key":"aa540bfab4455a4bc34c10efb2393785872ec6010bb8a2bc122669077171c931","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"th","translated":"เซสชัน","updated_at":"2026-07-09T10:01:43.768Z"} @@ -212,34 +295,45 @@ {"cache_key":"abaff735569310638a6c64d49a608535985b4bab0c75f31448e2a781770a43a8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"nodes.pairing.review","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"th","translated":"ตรวจทาน","updated_at":"2026-06-17T14:16:47.316Z"} {"cache_key":"abf6ccdfa9a1eb8ad21ad5a1f7c2f42f3782a7bf8df8618338a7d1a19dcf7783","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"th","translated":"รูท","updated_at":"2026-06-16T14:17:36.173Z"} {"cache_key":"ac1f3262e69b341a2635adabd94a1009ae6dcf5cde2d1b97eb6ff4299191da8f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"th","translated":"{count}ชม.","updated_at":"2026-06-17T14:16:55.187Z"} +{"cache_key":"ac9176ee7f54d2a4c9aa7914ba03fa37fd4d1657fed5a0670a663427c1ba3339","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"th","translated":"กำลังเตรียมการค้นหา…","updated_at":"2026-07-10T02:28:04.450Z"} {"cache_key":"aedf2fe62397347f04d2675c6a57ae8f8268f73711dc7cd9aded32ca4a53ffe1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"th","translated":"สรุป: {summary}","updated_at":"2026-06-16T14:17:16.747Z"} {"cache_key":"afa564606eed1675fe35df0b800f21713789bf8cb5b05b07c7a6b8c79d20ee63","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"th","translated":"กำลังแสดงไฟล์ที่ตรงกันชุดแรก ปรับการค้นหาเพื่อจำกัดผลลัพธ์ให้แคบลง","updated_at":"2026-06-16T14:17:36.173Z"} {"cache_key":"b143497d12c77b0f86f2774cb7518ce3ad3e0d7b022020e9bcd1d2f847d96d64","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"th","translated":"ตัวกำหนดเวลา","updated_at":"2026-07-09T21:53:36.660Z"} +{"cache_key":"b23f28d47b6261273e80377d7818fc54a3231c19a2a0d1b8e1b1d6846e527837","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"th","translated":"ชื่อเซิร์ฟเวอร์ใช้ตัวอักษร ตัวเลข จุด ขีดกลาง หรือขีดล่างได้","updated_at":"2026-07-10T02:28:14.296Z"} +{"cache_key":"b269b55f0ae0d0e4a1ff126016aa1b0ef7acd4952407b211410ff6aa28d38770","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"th","translated":"ปลั๊กอินแบบ Bundle","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"b2e16b79ed6baa187e1dab4d3beab7ce51dfe74aeac0dc3697ae82bd9835bc92","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"th","translated":"หน้าต่างบริบท","updated_at":"2026-07-05T10:16:28.752Z"} {"cache_key":"b3b799dbf5f8dee31caee57add8cb2918356f333dfe17500b200ab34d1720162","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"th","translated":"ไม่มีเซสชันที่ใช้งานอยู่บนโฮสต์นี้","updated_at":"2026-07-09T10:01:43.768Z"} +{"cache_key":"b3d566f0858eec84060e03c8a8e56b462fb41512e6dafb8d1168d27ec113a60d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"th","translated":"ค้นหา ClawHub","updated_at":"2026-07-10T02:28:04.450Z"} +{"cache_key":"b3d684fc753a08c10859a0736fdc61741e9e08e38b14897ccf47338cf58e1ca1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"th","translated":"ปิด","updated_at":"2026-07-10T04:28:47.234Z"} {"cache_key":"b51e77a6510637329eca069685f7e13ebfc1951e1680b146df6df7c2fdbe80c3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"th","translated":"ขาดหลักฐาน","updated_at":"2026-06-17T14:16:55.187Z"} {"cache_key":"b6312557cab60dc2736fc4e003c9d6de15991678e65618c04975f830178e7555","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"th","translated":"โมเดลยอดนิยม","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"b740419e9f5e981363216bf2f8cab27ba627593a50beb6ae518aad968e6bcb70","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"th","translated":"ปิดใช้งาน {name}","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"b7bd1f8e778ba585d2499f544bb64489e0cd919df3fa332c472d50d4fa96251c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"th","translated":"15 วินาที","updated_at":"2026-06-17T14:16:55.187Z"} {"cache_key":"b82a6688135e77e9c30819144f64667232cf33c3d8c513311ca361bdeb407d32","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"th","translated":"รายละเอียดการ์ด","updated_at":"2026-06-16T14:17:16.747Z"} {"cache_key":"b8ea0d4df287b5ae12bdd9e1dadabb00569abed296d1c605afbbcff7eeda1c3d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"th","translated":"งาน Gateway","updated_at":"2026-06-16T14:17:16.747Z"} -{"cache_key":"ba5d74cf087dbe8544234c3755a21947bac2530df18b5f5e3ef6a9902d52386f","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"th","translated":"Lobsterdex","updated_at":"2026-07-09T23:56:05.687Z"} +{"cache_key":"b939c22548fea3f7fc9bf940f9e1dbf659c67e7ac9f548f0d99303750e538845","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"th","translated":"พื้นที่ทำงาน","updated_at":"2026-06-16T14:17:26.503Z"} {"cache_key":"ba84c92a20667c397bb9f23df0432459ef2c42b0319eed08f493b56dc9886ae4","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"th","translated":"แยก","updated_at":"2026-07-06T22:56:35.269Z"} {"cache_key":"bad4530a9d88678677a333a214edbef1ee1feda76032a4e9bc7897fb627be5b4","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"th","translated":"กำลังโหลดไมโครโฟน…","updated_at":"2026-07-06T17:34:01.837Z"} {"cache_key":"badee6b9e90cf4d48a5437e16b224ac95203d808cf3b2630461fef00e57c48c4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"th","translated":"พื้นที่ทำงาน: {workspace}","updated_at":"2026-06-16T14:17:16.747Z"} -{"cache_key":"bc198429c7ae9f18ab81e7d2bfd28e4ed66955d1a9e0d440447d67a799fd3df2","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"th","translated":"เสียงกุ้งมังกร","updated_at":"2026-07-10T04:50:37.449Z"} +{"cache_key":"bc80a1f1e66b7c83b84c0222be94a3bfb00cad809b3561a0c6f7cf9ba723f03c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"th","translated":"กำลังค้นหา ClawHub…","updated_at":"2026-07-10T02:28:04.450Z"} +{"cache_key":"bca65448da5d36df9da6b30884f8cc3b631964ba702b3303756750faefddfc56","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"th","translated":"ตัวเชื่อมต่อ MCP แบบคลิกเดียว และการค้นหา ClawHub ที่คัดสรรสำหรับบริการยอดนิยม","updated_at":"2026-07-10T02:28:09.425Z"} {"cache_key":"bd15fbd4aae4a9f2d33a8560b09707ad2c2d2ab01837d46df2ab654f7be9c2c7","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"th","translated":"worker {state}","updated_at":"2026-05-30T15:38:44.763Z"} {"cache_key":"bdb0d8aa3825f469d703aca5d30b55d316308bc7a2a473d6012e0d18a5dc1513","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"th","translated":"การใช้บริบทของเซสชัน: {used} จาก {limit} ({pct}%)","updated_at":"2026-07-05T10:16:28.752Z"} +{"cache_key":"bdf91d767276c2b0513a39fd7ede2c85f88e2ac04dbbd238708e4a7a42165168","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"th","translated":"การตั้งค่า MCP","updated_at":"2026-07-10T02:28:14.296Z"} +{"cache_key":"bf0cea061d2485393474c4ba57edc10d3ed2b9b30dba1d4934f227e81bfcc4b3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"th","translated":"ค้นพบปลั๊กอินแนะนำหรือค้นหา ClawHub เพื่อขยาย OpenClaw","updated_at":"2026-07-10T02:28:09.425Z"} {"cache_key":"bf312dc171b09014ce26669bdd26d325775103357284a6ee098a2c3527ec7ea4","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"th","translated":"โหมดสี: {mode}","updated_at":"2026-07-07T08:47:39.499Z"} {"cache_key":"c13f9139970832fe4a46a22f485a4144c95ffbd8339d8225c7734a857c9d8fd9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"th","translated":"ไฟล์โปรเจกต์","updated_at":"2026-06-16T14:17:36.173Z"} {"cache_key":"c1a11971bfe91e898d36a84a45bf97e5fa00bbe7d04cafd2f65f4928c0563b32","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"th","translated":"โหลดเพิ่มเติม","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"c1f38f9de79ea8dde83f267f5a05fa5ec3f08336d592e14e9b48918ed19a2840","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropOpenHere","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Open here","text_hash":"b08e2fd2e872adcb575b305187b9db8482369325806953ce80190fc2dc1ab9fb","tgt_lang":"th","translated":"เปิดที่นี่","updated_at":"2026-07-06T22:56:35.269Z"} {"cache_key":"c2eaef85d5c1cafdd7d072ccee46b833f92cc21b39012d6e07b9220c8e3450a8","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"th","translated":"งานล่าสุดที่เสร็จสมบูรณ์ ล้มเหลว และถูกยกเลิก","updated_at":"2026-07-09T21:53:36.660Z"} +{"cache_key":"c357c7081f7f717a24e9cfac926e615006a05d33d15f8b2f7c5e2777944bce3d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"th","translated":"ปิดใช้งาน","updated_at":"2026-07-10T04:28:47.234Z"} {"cache_key":"c3cfcb94e542aabbb0056e14f4de6974ba01e71dc0039b0ce5ff5efb6c0af3d0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"th","translated":"CWD","updated_at":"2026-06-16T14:17:40.285Z"} {"cache_key":"c438f3366192bad65517fedde27265d08cd301058d0b6589a86b2e0510370321","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"th","translated":"กลับไปที่แอป","updated_at":"2026-07-09T08:08:10.509Z"} {"cache_key":"c45cab3b2e62dd5f5c1030f66329f36d8c4d8e6c102a5e027112e49c802d2789","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"th","translated":"กลุ่มเครื่อง Codex","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"c4d1fed3ad0cc1f443682b1e4801ee6438bd17c5181bee912fbd1bdc67d68fd4","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitRight","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Split right","text_hash":"aa9997bb1d8c23d0b88521c4093fc8c3ee01b187f78635ae4d3e16d27e8a8475","tgt_lang":"th","translated":"แบ่งไปทางขวา","updated_at":"2026-07-06T07:24:12.973Z"} {"cache_key":"c522aa383c390d7d68c659d4b320ca2052aa6534ebb6437180f267360f7c8b9b","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"th","translated":"สร้างสแนปช็อตไม่สำเร็จ: {error}\n\nลบโดยไม่มีสแนปช็อตหรือไม่?","updated_at":"2026-07-05T21:01:30.011Z"} {"cache_key":"c5514493731df155914d1a842f74450ab8abbef41ed505c636273065f632fd35","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"th","translated":"ค่าเริ่มต้น","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"c6247e945019043afd05d6477fc96378af8b4038b740c2824dc8c0ff098a54fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"th","translated":"ติดตั้ง","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"c6d12274dc63704a01e4357919b5bb2232d55fc81fdc2237778ad0cbed0b6497","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.qrUnavailable","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"QR unavailable. Copy the setup code instead.","text_hash":"e8d0d53b8389740ab80b08474ac2539c28e54ad279bd2658fab050e92755b42f","tgt_lang":"th","translated":"คิวอาร์ไม่พร้อมใช้งาน คัดลอกรหัสตั้งค่าแทน","updated_at":"2026-07-04T16:48:49.478Z"} {"cache_key":"c89d8a473119eae1110432f0a312cfa5cb4a44c760052c45da26b9f107528487","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"th","translated":"พร้อม {count} รายการ","updated_at":"2026-06-16T14:17:26.503Z"} {"cache_key":"cacb26858112cda470e74f249d4c3264f399ab157f6a6e40f089b043d4474ca4","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.title","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"OpenClaw mobile","text_hash":"9adab9e889c70409aa1138dbcbba43edfc6d39f9e2855f8182f0f801aaf3541f","tgt_lang":"th","translated":"OpenClaw mobile","updated_at":"2026-07-04T16:48:49.478Z"} @@ -247,23 +341,32 @@ {"cache_key":"cb42e2a1ce9e8819932708bcbfd68a6e93be835f0b790a43dda1bfee0dd41838","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"th","translated":"เรียกใช้ /pair qr อีกครั้งเพื่อสร้างรหัสตั้งค่าใหม่","updated_at":"2026-07-01T10:33:34.756Z"} {"cache_key":"cb848a09d0c12947ce1235f30ce79db4a6efb42c941fba82b149ad7e611e1276","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"th","translated":"ล้างข้อมูลตอนนี้","updated_at":"2026-07-05T21:01:30.011Z"} {"cache_key":"cbf91e61c1f2e2169cd268129c40bec0fb878435f64ec19d83b28f4db9c18a8a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"th","translated":"เสียง","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"ccb9686c89784e18c81d1a1674b4e497200f9cd059c987af2384ea398ea73c1f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"th","translated":"เปิดใช้งาน {name} แล้ว ต้องรีสตาร์ท Gateway เพื่อใช้การเปลี่ยนแปลง","updated_at":"2026-07-10T02:28:25.633Z"} +{"cache_key":"ccf9dbfb2ed2665789899ccb915906579d7d441231ca570f0f1c23db9cdc8224","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"th","translated":"ปลั๊กอินชุมชนบน ClawHub","updated_at":"2026-07-10T02:28:09.425Z"} {"cache_key":"cd218e8d265fe4b39fc78316b3589b561afd4dcf47d2155b2a60471f6517ef0d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"th","translated":"{parent} (หายไป)","updated_at":"2026-06-16T14:17:26.503Z"} {"cache_key":"cf3f550b844b42953b98e808617aa74ad0b78faa25e80efaf0feb375444f1473","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"th","translated":"การ checkout คลังแยกที่เป็นของ OpenClaw","updated_at":"2026-07-05T21:01:30.011Z"} +{"cache_key":"cf5038b2a74be263ef4f3f52153e98e3b5ad25effb8e30536a27778c5c61b9b6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"th","translated":"ไม่มีสิ่งใดที่ค้นพบตรงกัน","updated_at":"2026-07-10T02:28:04.450Z"} {"cache_key":"cfdd930f1507b582bc8c2a04fb6c4524807970e095b58f1bda6a3500a1420a7c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"th","translated":"การรีเฟรชล้มเหลว","updated_at":"2026-06-17T14:16:55.187Z"} {"cache_key":"d0a581aa47fd0fcde92d1b2f192a7522ad0579598a12f48f8e0159b4c86f2024","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"th","translated":"ไมโครโฟน {number}","updated_at":"2026-07-06T17:57:13.451Z"} +{"cache_key":"d0ad7ec98a1be806f89eb7594acf5e621f525235a3c3be3e14b521ca854f5938","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"th","translated":"Control UI","updated_at":"2026-07-10T09:47:39.902Z"} {"cache_key":"d1e35dc7d865f022e920797efb6d3d9decdbf233cd0fa3c3b89862ad63a634ca","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.generating","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Creating a secure setup code…","text_hash":"eca7942aeec595e3a1ebf01564b7dfc4ad90868636da4337f0470dcf1d97bc52","tgt_lang":"th","translated":"กำลังสร้างรหัสตั้งค่าที่ปลอดภัย…","updated_at":"2026-07-04T16:48:49.478Z"} +{"cache_key":"d3306a541ca116c9b69ab6a5e2b8b2d855b9db5423f23410d9067a9c9693b3cd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"th","translated":"เรียกดูได้เท่านั้น gateway นี้ไม่อนุญาตให้เปลี่ยนแปลงปลั๊กอิน","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"d38715e01600fd694106d65dac8e0e1264f2b9430548cd0d9971f174d344a6ae","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"th","translated":"สัปดาห์นี้","updated_at":"2026-07-05T14:40:13.915Z"} {"cache_key":"d3ab03509c5cc49660f6e84e4de88cf90c37de0d4a8a2a895a548c328a21e63f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"th","translated":"อินพุตไมโครโฟนกำลังใช้งานอยู่หรือไม่พร้อมใช้งานสำหรับเบราว์เซอร์","updated_at":"2026-07-06T17:57:13.451Z"} +{"cache_key":"d3d11093e974915370100eaf08d4e185be0b9194cce30426c9aec4c4179ab25e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"th","translated":"ค้นหา ClawHub","updated_at":"2026-07-10T02:28:04.450Z"} {"cache_key":"d3d5b6074020205f2f56ed1989620c2d645b6b8a706c64f3585b1ff73d525963","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"th","translated":"ไม่มี worktrees ที่จัดการ","updated_at":"2026-07-05T21:01:30.011Z"} {"cache_key":"d45788c32ed10ef5b1ccb1de7247c7d9a92c51d638dce3e9f13302ced25d8f92","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"th","translated":"สร้างสแนปช็อตและลบ {name}?","updated_at":"2026-07-05T21:01:30.011Z"} {"cache_key":"d77cd306067a5ed450a81a0d7e87f3b18499030d626b850a18f8983016ebbc9a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"th","translated":"เซสชันบนคอมพิวเตอร์ของคุณ","updated_at":"2026-07-09T10:01:43.768Z"} +{"cache_key":"d8215031d7ffb2466504dda0d21a1ac3a02d348303a198b6f0152f342c34b8d8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"th","translated":"แพ็กเกจ","updated_at":"2026-07-10T04:28:47.234Z"} {"cache_key":"d99cd1222e609321e896dd0f9b9e6f575c3e3dee01f4722d6d1ca8df3671c8b2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"th","translated":"กลุ่มใหม่…","updated_at":"2026-07-05T14:40:13.915Z"} {"cache_key":"da1f5dca017e8dedfc274f1e41b4685e558f654a507030a0c2c05c442de49a50","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"th","translated":"อาร์ติแฟกต์ {count}","updated_at":"2026-06-16T14:17:36.173Z"} {"cache_key":"da52462b1392d185abbfb7d11236bc9032512347fdb7f5190265a69efb164f80","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"th","translated":"ค้นหาชื่อเซสชัน","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"daff40ce5f26360e0eb466c94f74c39a22e221743abf3d623e1823e4ab823f40","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"th","translated":"ตรวจทาน","updated_at":"2026-06-17T14:16:47.316Z"} {"cache_key":"db6cc1af8a1843c77c527cd1adb38721712ada0ab8bae5dccd5430e1f6a7158b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"th","translated":"สูง","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"dc3c7a7bacb69456b7a574a691e0f5941b8a0ab2685c91e42bd23927bb808a47","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"th","translated":"เพิ่มแล้ว","updated_at":"2026-07-10T02:28:09.425Z"} +{"cache_key":"dccb44ad6a4d70fccc2c6bd8bad16dc5abd90b9605db0d16bdea695ca5728da0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"th","translated":"ความสามารถเสริมของ OpenClaw","updated_at":"2026-07-10T02:28:20.120Z"} +{"cache_key":"dd95c9216139530ad3a691a30952ad0a36bb45f2aeef472670388f2e1fc2f007","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"th","translated":"ลบปลั๊กอินนี้หรือไม่?","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"ddaec500809c7da6ffdf688a5a28fe8fa28ac01defe0b58dd445e0e290e931aa","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.help","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Pairing help","text_hash":"38b889fa410f64c497158988bdf8da130164f09128b2960c1dc3f3da24636ac2","tgt_lang":"th","translated":"ความช่วยเหลือในการจับคู่","updated_at":"2026-07-04T16:48:49.478Z"} -{"cache_key":"ddb4703d5f36c1e19446a496ee77ea13132d03d699d27fab39cc318df58fc8d9","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"th","translated":"ค้นหา","updated_at":"2026-07-10T06:08:40.899Z"} {"cache_key":"de11fc787e96bbad84a9632013b2f8b8e8ebacde90c1a975fa6d4bf9321f4756","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"th","translated":"ความหนาแน่นการ์ดแบบสบายตา","updated_at":"2026-06-17T14:16:47.317Z"} {"cache_key":"deababf18ba7631b73882557daa1eb55c04aba8707832b72e53d6f7ed11d7a1b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"th","translated":"เปิดรายละเอียดการใช้บริบท","updated_at":"2026-07-05T10:16:28.752Z"} {"cache_key":"dec135813a7ae4252edfb9865a06ddd248cd1eb5c664b12d632cae62aeec96ed","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"th","translated":"ค่าเริ่มต้นของระบบ","updated_at":"2026-07-06T17:34:01.837Z"} @@ -282,39 +385,60 @@ {"cache_key":"e2f1def0a5847886232330a217fe61c62041176319a07c80e234fca4ff13fc61","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"th","translated":"มีโฮสต์ที่ไม่พร้อมใช้งาน {count} โฮสต์ ส่วนโฮสต์อื่นยังคงพร้อมใช้งาน","updated_at":"2026-07-09T10:01:43.768Z"} {"cache_key":"e2fc3e9fcbf119a5f7042eeb45abbd8129e49f81c5dc041535f17700643139f0","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.subtitle","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Scan this QR code in the mobile app to connect a new phone.","text_hash":"d2db2ea1eaa4ab5857be526ed93b485e1bd8f84a559eeb382151a683a576232e","tgt_lang":"th","translated":"สแกนคิวอาร์โค้ดนี้ในแอปมือถือเพื่อเชื่อมต่อโทรศัพท์เครื่องใหม่","updated_at":"2026-07-04T16:48:49.478Z"} {"cache_key":"e38fee912fdbdc421c101fb416edb0bd3b36572cf81710b5f0c67e6157794305","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"th","translated":"อัปเดตล่าสุด","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"e3b7a189dae7c327eb3956d4d14fe846621239cdc38a28f77e3b6a3a5b11be18","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"th","translated":"พร้อมใช้งาน","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"e43d37f341ca44a677787a4e3aa5f22f6038d93a66b4757c1e3ac73f7fc30d08","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"th","translated":"เซิร์ฟเวอร์ MCP, การยืนยันตัวตน, เครื่องมือ และการวินิจฉัย","updated_at":"2026-05-31T05:36:53.074Z"} {"cache_key":"e4be98b9a889b7574b330f4a30af911a0d57f01599b9f8258d4125fb83359739","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"th","translated":"รีเฟรชพื้นที่ทำงานของเซสชัน","updated_at":"2026-06-16T14:17:26.503Z"} {"cache_key":"e55a8c794b0f38490354984b1eb69a3c96f0b4b5cb6e08d736bf035bfa3e368b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"th","translated":"ช่องทาง","updated_at":"2026-07-05T14:40:13.915Z"} -{"cache_key":"e587d75f76b392fbb2f5fbc0dbf2817f001e1a99c46f8f582a996fde68114b6a","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"th","translated":"ยึดไว้ทางขวา","updated_at":"2026-07-10T06:08:40.899Z"} +{"cache_key":"e62b163b56bb51ff215cd661d84f9be57ab23cade97b09a7c9d3fc94a9fa17d0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"th","translated":"เปิดใช้งาน {enabled} รายการ, ปิดใช้งาน {disabled} รายการ, มีปัญหา {issues} รายการ","updated_at":"2026-07-10T06:09:04.778Z"} {"cache_key":"e6d6e8798a27918f98bacba9d56048261645d51adfeac7bbd8f2411010ad0fc1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"th","translated":"เรียกใช้","updated_at":"2026-06-16T14:17:16.747Z"} +{"cache_key":"e8c1a627bc473c727a1adc8c12dea31b8d94606ee74b99cd194ab5a651a708fc","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"th","translated":"รีเฟรช","updated_at":"2026-07-09T10:01:43.768Z"} +{"cache_key":"e93e2a073166f3358fd04ea7461210dc90652e3e31babb9ddfd49a3c57a371e3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"th","translated":"ClawHub ไม่มีผลลัพธ์สำหรับ “{query}”","updated_at":"2026-07-10T02:28:04.450Z"} {"cache_key":"e968eda53ca0753a2e34ac97e7b27a5b3c0aca534e6dea647ad701b30a05c398","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"th","translated":"บันทึกของ Worker","updated_at":"2026-06-16T14:17:16.747Z"} {"cache_key":"e9f0efbddcd9773b02cdaabf5a97c2d6804b0b7d1f36451e4eb9a599e324d89e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"th","translated":"{agent} (ยังไม่ได้กำหนดค่า)","updated_at":"2026-06-17T14:16:47.316Z"} {"cache_key":"ea705a9b3cb50a40d6d20d46fb239b99b37ae3745afebcef9150ae0922120b9f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"th","translated":"หมายเหตุเป้าหมาย","updated_at":"2026-05-29T21:02:14.030Z"} +{"cache_key":"ea76f2eb80af14874c72459f1287a6f50322789cfff9e18482547defe32c08ad","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"th","translated":"คัดลอกแฮชคอมมิตแบบเต็ม","updated_at":"2026-07-10T09:47:39.902Z"} +{"cache_key":"eb0203e7de31b9fe3a87080ae7a7455e76d462ff8c2c5903d2acf6670e6490a4","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"th","translated":"ไม่พร้อมใช้งาน","updated_at":"2026-07-10T02:28:25.633Z"} +{"cache_key":"eb7f9460ca91a1565bb045e4bc5fff97fa1d499f3574969be84b3d30f180d445","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"th","translated":"URL หรือคำสั่ง","updated_at":"2026-07-10T02:28:14.296Z"} {"cache_key":"eba1827e880ad583e0f915ed993eb22aac98e752f18d0d0565e5e6c06a175640","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"th","translated":"เปลี่ยนมุมมอง การค้นหา ลำดับความสำคัญ เอเจนต์ หรือตัวกรองที่เก็บถาวร","updated_at":"2026-06-17T14:16:55.187Z"} {"cache_key":"ecd7f6d0913fa06b05632df1cc86c2c4e8c8d122f835aa320c953ad4a6fd7e89","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.badge","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Expired","text_hash":"424a2551d356754c882d04ac16c63e6b50b80b159549d23231001f629455756e","tgt_lang":"th","translated":"หมดอายุ","updated_at":"2026-07-01T10:33:34.756Z"} {"cache_key":"ed5b5251ab2a8f84266bd9385c28d3d04c23617f0287086cbf020ad9afaa0bd4","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"th","translated":"วันที่","updated_at":"2026-07-05T14:40:13.915Z"} {"cache_key":"ed9561d68a711c3c22bbb751975f37b529b3101e939c1bf584d04459af8852b5","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"th","translated":"Worktrees ที่จัดการ","updated_at":"2026-07-05T21:01:30.011Z"} +{"cache_key":"edb4d64883d4c6459bcef15b0667f896bf7e0297dcee326f85bf4ab02693b4e5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"th","translated":"เอนจินบริบท","updated_at":"2026-07-10T02:28:14.296Z"} +{"cache_key":"edef0b7d1043f64d906ee080ef92b28c0a5e1376f1b5a50087c654297797eb15","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"th","translated":"ไม่สามารถคัดลอกแฮชคอมมิตได้","updated_at":"2026-07-10T09:47:39.902Z"} +{"cache_key":"eef98157035010a011aed1f192a2ddb7bec054b2e32c34588e43c19208b8c185","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"th","translated":"กำลังติดตั้ง…","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"f0262405f27b22a2a0dcba6aed40aa480f9db65e7b64fb4ea9b0f18d56dd96a6","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.planUsage","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Plan usage","text_hash":"eb55e9232d2a7503c819491be60761e99458daf4947df9676c5cc86b653f59f4","tgt_lang":"th","translated":"การใช้งานของแผน","updated_at":"2026-07-09T11:49:48.608Z"} {"cache_key":"f043b3f843b93f7bd1d3c7b97166dd5ca0ed0eb34ca9d0e88379827ed915dee1","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"th","translated":"เอเจนต์และเครื่องมือ","updated_at":"2026-07-09T08:08:10.509Z"} +{"cache_key":"f0f31b74b2451534ae09b008185ef1de64d46a6760e26f916f491326a586813d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"th","translated":"เชื่อมต่อเซิร์ฟเวอร์ Model Context Protocol เพื่อมอบเครื่องมือเพิ่มเติมให้เอเจนต์ของคุณ การเปลี่ยนแปลงจะมีผลกับเซสชันเอเจนต์ใหม่","updated_at":"2026-07-10T02:28:14.296Z"} {"cache_key":"f1760515d0770255904b29d020945cf00727982de51184762d2998dae7dd37bc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"th","translated":"ผู้เช่า: {tenant}","updated_at":"2026-06-16T14:17:16.747Z"} {"cache_key":"f1e51c2b8c1a0a868cd2c5a7c5586b5a3252658fce17c5cd5b5c34641f13169b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"th","translated":"โปรโตคอลของ Worker","updated_at":"2026-06-16T14:17:16.747Z"} {"cache_key":"f31092778ca62764b041d564587c1fcb1698bde0a1d9270f35e6c56d21fd97d7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"th","translated":"Skills: {skills}","updated_at":"2026-06-16T14:17:16.747Z"} +{"cache_key":"f318d62dc8e0af9c5eb3de53b07be4526a22ac909f35c1aa23abcc68d8d70658","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"th","translated":"รหัสปลั๊กอิน","updated_at":"2026-07-10T04:28:47.234Z"} {"cache_key":"f34df9070dc530abd2c39f9a0d0c4768913e39853860c9e755b276349d3559ad","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"th","translated":"การตั้งค่าขั้นสูงต้องใช้สิทธิ์ผู้ดูแลระบบ","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"f3e06195ff4f0e45ea4a7abd9fc98167837f8be6f98aa1079a159d94fc2c08a0","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"th","translated":"การดำเนินการ","updated_at":"2026-07-05T21:01:30.011Z"} +{"cache_key":"f44f9a7191b02c0835dbda4570c17ba9b8c87139aff2bcfd2496bcc5f0381cc7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"th","translated":"เปิดใช้งานแล้ว","updated_at":"2026-07-10T02:28:09.425Z"} {"cache_key":"f4a389af2a2b1eaec3cacb35bde4eace9424fe077444a0f4faedd9f942982de5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"th","translated":"จัดกลุ่มตาม","updated_at":"2026-07-05T14:40:13.915Z"} {"cache_key":"f4cecbbf79c244d56358325c8914c6dcc2048bf4d56825f93c11cc2d628ca4ea","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"th","translated":"กำลังโหลดพื้นที่ทำงานของเซสชัน…","updated_at":"2026-06-16T14:17:26.503Z"} +{"cache_key":"f59b41137f540fd745f6f333d85408fb69536132629d71480a0d3b658450971e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"th","translated":"ชีวิตประจำวัน","updated_at":"2026-07-10T05:22:39.116Z"} {"cache_key":"f5e56fa259072763d0619ee90dac0f5f6482f4237ed5525cc5a942f9c78b0343","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"th","translated":"ข้อผิดพลาดของเครื่องมือ","updated_at":"2026-05-31T06:44:06.721Z"} {"cache_key":"f6075288904a8bed8a9bdf8e2c975852ba50a5f840dd93b275b923489c57f193","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"th","translated":"ปานกลาง","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"f6cff51abcf319ada18072850b47389c354e6cae81bfa2453a71427a362d3d17","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"th","translated":"ลองอีกครั้ง","updated_at":"2026-07-10T02:28:04.450Z"} +{"cache_key":"f6ff6a9654c9e2a096cb2fa5f91dca2562cde723779db72e85d30df0fc826616","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"th","translated":"ลบ {name} แล้ว ต้องรีสตาร์ท Gateway เพื่อใช้การเปลี่ยนแปลง","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"f71b29f8e6c7bd230d7c02770110897d858c649f636e442fb06ded3e48fbe663","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"th","translated":"ไม่ได้จัดกลุ่ม","updated_at":"2026-07-05T14:40:13.915Z"} {"cache_key":"f79deab2a0132c2018218f43cc3e7dc9bf23d47c137806f93d8cbb3dda690f58","model":"gpt-5.5","provider":"openai","segment_id":"nodes.pairing.qrAlt","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"OpenClaw mobile pairing QR code","text_hash":"6c402a1c5d7208ea5d5ebf5dd95c5826c9bb81f74a880c0cebe4c2eb1347a7bf","tgt_lang":"th","translated":"คิวอาร์โค้ดสำหรับจับคู่ OpenClaw mobile","updated_at":"2026-07-04T16:48:49.478Z"} +{"cache_key":"f7c78098eb5341d9f13ceb77087d6fd538e2e4a203b517469e39b0f34e10915b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"th","translated":"ติดตั้ง {name} แล้ว","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"f7d58b91ce88fe59b2fbabe7aa2ee92134e6320b4df14fbc31a703d50204b6ec","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"th","translated":"ตรวจสอบ ปรับแต่ง และนำข้อเสนอไปใช้ก่อนที่จะกลายเป็น Skills ที่ใช้งานจริง","updated_at":"2026-05-31T21:48:38.842Z"} {"cache_key":"f83cccdee97981e85f09bdbe9b67c01ff9dd8480f8628fd8ee8f2ca4dbeff053","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"th","translated":"ใช้งานล่าสุด","updated_at":"2026-07-05T21:01:30.011Z"} +{"cache_key":"f86742a6e570e6b8c699e214346b2c1f75836ae7df924550b9ad2cac44596366","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"th","translated":"เปิดใช้งาน","updated_at":"2026-07-10T04:28:47.234Z"} {"cache_key":"f8858923a8d3a2986391108644f83c16a727bbfd2f1a1fdbedd37ed621171697","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"th","translated":"ไม่มี","updated_at":"2026-07-05T14:40:13.915Z"} +{"cache_key":"f8d872dace5aaf76cd7dc9123a5a18ac53079fd70b282f8d3c843f998bab20f9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"th","translated":"ไม่สามารถรีเฟรชการกำหนดค่า Control UI ได้: {error}","updated_at":"2026-07-10T02:28:25.633Z"} +{"cache_key":"f9a7bade3406c7de13213bf46b002f025a73f8ca1bdd3fff38a2628f03e62ba0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"th","translated":"ค้นพบ","updated_at":"2026-07-10T02:28:04.450Z"} {"cache_key":"f9e87a281611ef72a66713d4d35b27d4405756e004b08a16a2019d698573b912","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"th","translated":"ระบบ","updated_at":"2026-07-09T08:08:10.509Z"} {"cache_key":"faa733d0af2c77b6b9c2126fb4875772052f99c1c33ef2057dad8551827923ec","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"th","translated":"อ่าน {count}","updated_at":"2026-06-16T14:17:36.173Z"} {"cache_key":"fac6f14dd83ab732a31fce8717e59bfc76700225593ebb8e05d0320059bb2c22","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"th","translated":"วันนี้","updated_at":"2026-07-05T14:40:13.915Z"} {"cache_key":"fb020f902ee4e74343481a8a08e7d6875f0528527657dcf53f05878ce36a95f9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"th","translated":"ไม่มีไฟล์ที่ตรงกัน","updated_at":"2026-06-16T14:17:36.173Z"} +{"cache_key":"fb199d5a1050b605b8c962530e7841b5e3a185d6b9b340b3b445f0a3ae50eeb6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"th","translated":"ปิดใช้งานแล้ว","updated_at":"2026-07-10T02:28:20.120Z"} {"cache_key":"fb8d9e2eebe57e7505bf5940ab990bc106300e925ac8b2e462da30db28e3201b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"th","translated":"ใช้งานอยู่","updated_at":"2026-07-09T10:01:43.768Z"} -{"cache_key":"fbe3ff96d3388c407daf99dc061c81e5136483f44b7e9bb6fa95c9a4dfd97caf","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"th","translated":"เงียบ","updated_at":"2026-07-10T04:50:37.449Z"} +{"cache_key":"fbdfbff6cb29f888ba140c35730642c36eaf1c5b7768442afd7734251f23e7a6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"th","translated":"ติดตั้ง {name}","updated_at":"2026-07-10T02:28:25.633Z"} {"cache_key":"fcd3a3c38c0cd838eb56cf1d78e1c7d9a3bdde1c9b7996605cb0df6c2a46bceb","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.title","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Context usage details","text_hash":"0e04e44654b5a2abf769dcd2f82a32e0501a41689d6635d7f718978c160958f0","tgt_lang":"th","translated":"รายละเอียดการใช้บริบท","updated_at":"2026-07-05T10:16:28.752Z"} {"cache_key":"fe39c3445ee29a98143befb2bd946787ab1eded517da85838696d33b72881b80","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"th","translated":"ขยายพื้นที่ทำงานของเซสชัน","updated_at":"2026-06-16T14:17:26.503Z"} +{"cache_key":"ff009f21d0305715629fd5a615f8b6a837e6815a09d9f47e91cd333de740b1d8","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/th.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"th","translated":"สร้างเมื่อ","updated_at":"2026-07-10T09:47:39.902Z"} diff --git a/ui/src/i18n/.i18n/tr.meta.json b/ui/src/i18n/.i18n/tr.meta.json index 061110e518b4..ec2b5c419955 100644 --- a/ui/src/i18n/.i18n/tr.meta.json +++ b/ui/src/i18n/.i18n/tr.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:26.758Z", + "generatedAt": "2026-07-10T09:47:25.002Z", "locale": "tr", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/tr.tm.jsonl b/ui/src/i18n/.i18n/tr.tm.jsonl index ce7b9c34e1e5..ebb4a52534d9 100644 --- a/ui/src/i18n/.i18n/tr.tm.jsonl +++ b/ui/src/i18n/.i18n/tr.tm.jsonl @@ -1,57 +1,87 @@ {"cache_key":"00307a5dd5257a88c6445e132cbc93e104d2bdd87ad84526b6c1e86bf6386124","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"tr","translated":"Güncellendi {time}","updated_at":"2026-06-17T14:15:40.711Z"} +{"cache_key":"0046e64d21b7dbea4c67c7e93cfb485ae0f91755a206331169d3b6bcf2a95e23","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"tr","translated":"Diğer","updated_at":"2026-07-10T02:26:48.666Z"} {"cache_key":"00661f69dead370e3e8474c509f40487bedfa4857a4ca16a8bd883c0cd41af77","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"tr","translated":"Tüm oturumlar","updated_at":"2026-07-03T07:38:50.835Z"} {"cache_key":"00d30f653c06736aa3a2bbe35921a6a96807e49599793b20dd8dca7670befc56","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.title","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Context usage details","text_hash":"0e04e44654b5a2abf769dcd2f82a32e0501a41689d6635d7f718978c160958f0","tgt_lang":"tr","translated":"Bağlam kullanımı ayrıntıları","updated_at":"2026-07-05T10:16:19.859Z"} {"cache_key":"015291223996d13a19afe0ec21487f5d3df219881e84bc7750c5a628acd1a103","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"tr","translated":"Özet: {summary}","updated_at":"2026-06-16T14:15:38.462Z"} +{"cache_key":"01fc1f57d585286797726d28d7ea023b5f66741daac5a6c43e6bcecc95e65ffc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"tr","translated":"Eklentiyi paketle","updated_at":"2026-07-10T02:26:56.132Z"} {"cache_key":"033526609d4a6265b6fe4e2c4647fa2bfe4a5cc57e205cb80a849108310c7e6f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"tr","translated":"{count} engellendi","updated_at":"2026-06-16T14:15:44.904Z"} {"cache_key":"040135aa57e274603d56f34d01fddffd6e809f5fd173abc712de6efd635ed267","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"tr","translated":"Ses","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"04281bcb591914445d2913055b82faaa42c2ee818e22966e9ccdc3d832d81fc2","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"tr","translated":"Control UI","updated_at":"2026-07-10T09:47:24.999Z"} {"cache_key":"04d72a26ac7a5155272413cda0949de9a91c5be887a33716789eeb62224b5e03","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"tr","translated":"Kullanılamayan ana makine sayısı: {count}. Diğer ana makineler kullanılabilir durumda.","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"0640b555c6cc82eb5dbec3c2d235f4eb7702e6bc6ceca03332f36aa0e708cd14","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"tr","translated":"{agent} (varsayılan)","updated_at":"2026-06-17T14:15:34.754Z"} {"cache_key":"06e857d1eed4892aa137e75435f47a9be51e77b5e1e9aa556a19f636f4ac2819","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"tr","translated":"Ayrıntıları görüntüle","updated_at":"2026-06-16T14:15:38.462Z"} +{"cache_key":"06ee585198e2a49d20a163f1bfa20d5835a12d6ebbbfb9ab03c1d1fa43813644","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"tr","translated":"Genel","updated_at":"2026-07-10T02:26:52.321Z"} {"cache_key":"077263cc682bcb0807648c5c1ee571081a8f4336d50598d16384877610e03101","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"tr","translated":"Bilgisayarlarınızdaki oturumlar","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"07c264746ea25b54900b320697ee4a23074083621609e3fcf326fdbe5fdb94f6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"tr","translated":"Yapılar","updated_at":"2026-06-16T14:15:55.679Z"} +{"cache_key":"07eca4f4f00bd7eaf141d8ba5686277e2ab297ddef2fb5d197d43d97d77006ff","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"tr","translated":"İş ve üretkenlik","updated_at":"2026-07-10T05:22:25.491Z"} {"cache_key":"08370b21bf6293d2177080313901fa7cbf0e4f8a2acc0a00077473606a04ebe0","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"tr","translated":"Araç hatası","updated_at":"2026-05-31T06:44:00.618Z"} {"cache_key":"084b69e7056ef7e7626e7d6fb565317c9e3889288952ce6c7426abf50aaca7cb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"tr","translated":"{parent} (eksik)","updated_at":"2026-06-16T14:15:44.904Z"} +{"cache_key":"08bcc6138768c91314e8d40c1f33f630d2c5caf63adca1e96d64e7e12e9fd811","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"tr","translated":"Kategori","updated_at":"2026-07-10T04:28:33.072Z"} +{"cache_key":"0a04bd9b303dfb8ad05f2e19ee40a860f0e824c9c9b7d0be120061c2769c1ef7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"tr","translated":"Yüklü eklentilerle eşleşme yok","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"0a84c3d939338fa134af196a515605aadf284c3624aee4bb7cac7b0821ee8ddb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dragSessionHint","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Drag to move between groups","text_hash":"3e8692b1cd1c1f9a606a779f1037aa390c885fde224ddb841df9259e8aab03ae","tgt_lang":"tr","translated":"Gruplar arasında taşımak için sürükleyin","updated_at":"2026-07-05T14:40:02.505Z"} -{"cache_key":"0ccf594943dd7bb3b2663574c4bb28c628c03537a38abb4b4dd0f539f0217e73","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"tr","translated":"Sağa veya alta sabitlemek için sürükleyin","updated_at":"2026-07-10T06:08:26.731Z"} +{"cache_key":"0bfdf6dd64a721b809cf7d2aa2467a9e35256df2c294c882a99aebcdfe5ae739","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"tr","translated":"Eklentiler","updated_at":"2026-07-10T02:26:56.133Z"} {"cache_key":"0ceb770ab8ba99880399338ceedd8462cbc0386cbbc8fb91c1780c6f22294a57","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"tr","translated":"Bilinmiyor","updated_at":"2026-06-16T14:15:44.904Z"} {"cache_key":"0d44a6a84486d73837db0b7176696b699114cf3d719a18f4809b6bf6b7eea3b0","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightSessions","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Sessions tracked","text_hash":"b1b77d34c51bc94340e818faacf7b2271593f409d75d7be9be7a5a12047775f0","tgt_lang":"tr","translated":"İzlenen oturumlar","updated_at":"2026-07-09T11:28:06.616Z"} +{"cache_key":"0f231e2313f1615f1995ac110cfed59fe43a6def0682e707c866d35b54d923dc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"tr","translated":"Riski kabul et ve yükle","updated_at":"2026-07-10T02:26:56.133Z"} +{"cache_key":"0fe3dd73296f4772f68b2cd312e29260698d148e3dffa83f01f797fc19124cc6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"tr","translated":"Eklentileri ara","updated_at":"2026-07-10T02:26:40.262Z"} {"cache_key":"10106e765cf38f14a85e7bef8a801736894d4ec7b704a6ed9809160f00d477bb","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"tr","translated":"Geri yüklenebilir","updated_at":"2026-07-05T21:01:15.459Z"} {"cache_key":"1030468fd5ff3fef78667b766c099c571856d4a91cda2f1c95c5b3aa2d3a0216","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"tr","translated":"Mikrofon girişleri meşgul veya tarayıcı tarafından kullanılamıyor.","updated_at":"2026-07-06T17:56:54.065Z"} {"cache_key":"1117d38f17ae930c76b31cf9aa8bf458eefe218c60f45d9635c89ab77723c101","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"tr","translated":"Oturumun sabitlemesini kaldır","updated_at":"2026-07-02T14:30:28.149Z"} {"cache_key":"114ab1d0416cafb81ef1d460c5b7a808a932c4ca481e69ecf4bf56780993342e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"tr","translated":"{count} hazır","updated_at":"2026-06-16T14:15:44.904Z"} {"cache_key":"12b447bfa3d169a4d4300c7d233265660319115cfb1047eebeaefde0c3b1fec9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"tr","translated":"Codex ana makinesi bulunamadı","updated_at":"2026-07-09T10:01:43.764Z"} +{"cache_key":"12f2f036abf1be208ade83a897ae152485911c9dace5361fd26e7b0244b4f776","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"tr","translated":"Kullanılabilir","updated_at":"2026-07-10T02:26:52.321Z"} {"cache_key":"130df49611dbb0acbb48d377657457fda7716dcbaece90d0bf65486dc81e1c1b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"tr","translated":"Bağımlılıklar","updated_at":"2026-06-16T14:15:44.904Z"} +{"cache_key":"1331ad08c2f5ca1c08d09f97af0a372b3b8119b84b328e49b37c05ed12e5f0a5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"tr","translated":"Etkinleştir","updated_at":"2026-07-10T04:28:33.072Z"} {"cache_key":"158d692e079368de776f21e391d3722894a29060c9bb09f55b65e6ac2551219c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"tr","translated":"Codex oturumlarını yenilemek için Gateway'e yeniden bağlanın.","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"15db176f83390bf298f9cfb15ac2e8f561bb1dc4840da437bc7c4b8f2787821f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"tr","translated":"Oturum çalışma alanı","updated_at":"2026-06-16T14:15:44.904Z"} {"cache_key":"179333c70b0dbfefe0749ce6a93ae0435399fcf5f8414bf5ce8eb59e899f456c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"tr","translated":"Yok","updated_at":"2026-07-05T14:40:02.505Z"} +{"cache_key":"17f97cbab1e1b7109030fd8accda13c5eab04f0ba6c6dcfaa05ff1f1af7f94dd","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"tr","translated":"Commit hash’i kopyalanamadı","updated_at":"2026-07-10T09:47:24.999Z"} {"cache_key":"1919502bd8e44cd39f4c0d46b2104d2e27459c936e3f49c921ebe73c963daf01","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"tr","translated":"İşçi protokolü","updated_at":"2026-06-16T14:15:38.462Z"} +{"cache_key":"196eae0e83ebe024daf17f56bc9e59e9970323db8a9c84bbf89b4c9a17a2dca6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"tr","translated":"{name} MCP sunucusu kaldırıldı.","updated_at":"2026-07-10T02:26:48.666Z"} +{"cache_key":"19802dd10c76165a282df4460d9892a1fde45f396e618b7641f932c1dcfda00b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"tr","translated":"Dahil","updated_at":"2026-07-10T02:26:52.321Z"} +{"cache_key":"1a26d9d39a3a01eca449d0de21e464eebac347059309a623dd4fe497d7a081fc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"tr","translated":"Çalışma alanı","updated_at":"2026-06-16T14:15:44.904Z"} {"cache_key":"1b5ae439d0835bec48972c57150d7558d42636a23bb22c5e6b24ecbe04d2fa3d","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"tr","translated":"{count} worker günlüğü","updated_at":"2026-05-30T15:38:34.866Z"} {"cache_key":"1b970b4dacffa83f210f39625874446306cac12fab441345cba3fa09f28b267a","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"tr","translated":"Uygulamaya dön","updated_at":"2026-07-09T08:08:04.089Z"} +{"cache_key":"1ba098d5de7f2698eae58b5c953ac0a14c549ed5f16a22dacc648e001ddab05e","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"tr","translated":"Control UI ve bağlı Gateway derleme kimliği.","updated_at":"2026-07-10T09:47:24.999Z"} {"cache_key":"1bc0875455334fc2f5843a764ec2d67a23e187c5febc6e2569344a73553a9768","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"tr","translated":"Dosyaları ara","updated_at":"2026-06-16T14:15:55.679Z"} {"cache_key":"1bf8f5cd0b42d2f1bbc1693befb46f87c77da4c00f0ba6d83ecf758c853c85c4","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"tr","translated":"Bu hafta","updated_at":"2026-07-05T14:40:02.505Z"} {"cache_key":"1c64ce2c2d3fde834e4321c823ef61fb8911db5cf9126849341f9aab08b339d3","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"tr","translated":"Dün","updated_at":"2026-07-05T14:40:02.505Z"} +{"cache_key":"1d41e450ed712ac34a8dc8fd09f3bd24e6232e0aba9fe3f90088faf3fe55f41c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"tr","translated":"Yapılandırma","updated_at":"2026-07-10T02:26:52.321Z"} {"cache_key":"1e4d40f0601e8e19df9ebbc8446baab309a79a6f9958358b1000070feb4f7e3f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"tr","translated":"Güncellendi","updated_at":"2026-06-16T14:15:38.462Z"} {"cache_key":"1e8845c06d3fa62868f9a4ed4d23f517f8573a6a4402df02761ec6b46380cd7f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewAll","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"All cards","text_hash":"2306120917506b5998ec702f3661068b102dac538ba4c9e4634d65fe33eea98a","tgt_lang":"tr","translated":"Tüm kartlar","updated_at":"2026-06-17T14:15:34.754Z"} {"cache_key":"200194c669225014f0e5c7612a4018ee5c0aa250879e65bda13480d93c3aba84","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityLow","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Low","text_hash":"f793de205ead5ac302c4a1627829dea41f176b1068b993a32373fc869918374b","tgt_lang":"tr","translated":"Düşük","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"203133c8c77c040e83e62ca1f2d9f97834c691553374cd8febe0dd6e2599d39b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"tr","translated":"{name} yüklendi. Değişikliği uygulamak için Gateway yeniden başlatılmalıdır.","updated_at":"2026-07-10T02:26:56.133Z"} {"cache_key":"2041a0cfb1d97dd8ae9df9a3046e36bc5ccb462808ec3fecae136657c97fb270","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"tr","translated":"Oturum bağlam kullanımı: {limit} üzerinden {used} ({pct}%)","updated_at":"2026-07-05T10:16:19.859Z"} +{"cache_key":"205c15276a17b6a6b58e3ed8f9434f092a0fe6f60b32ad5cf0b3d1e3764c2c2c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"tr","translated":"Bu eklenti kaldırılsın mı?","updated_at":"2026-07-10T02:26:52.321Z"} +{"cache_key":"20b352ff6fa6f8532c3ed0a0074499395538a8f82abb2b0a7869a3070a53ed43","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"tr","translated":"Gateway çevrimdışı","updated_at":"2026-07-10T02:26:52.321Z"} +{"cache_key":"2138271ed339ed7eb0121602fbafd52b620baa1c63f26f04f586fc09c3d88182","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"tr","translated":"{name} eklendi. Kullanmadan önce MCP ayarlarında endpoint'i ve kimlik bilgilerini güncelleyin.","updated_at":"2026-07-10T02:26:44.278Z"} +{"cache_key":"21ccab30d95135277bb88bee31888d5a0e48f4a80f5fee3b9d4dba3544e8cb1e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"tr","translated":"Ayrıntıları görüntüle","updated_at":"2026-06-16T14:15:38.462Z"} +{"cache_key":"225f06a7c2a150f1a1c9a03419fbd5ee56f407d3420bbd896e172bfe1c72ae84","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"tr","translated":"Bu eklentiyi yüklemeden önce ClawHub uyarısını inceleyin.","updated_at":"2026-07-10T02:26:56.133Z"} {"cache_key":"2365560d46b3a6a7ffde6cbd63047f8b82f9bbfa19ed05088ed9af6cd4f97fe3","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"tr","translated":"Dal","updated_at":"2026-07-05T21:01:15.459Z"} -{"cache_key":"242276a4c5c0b2f2c02746a39e24189763c6ebc478c0f4597ab44a3b2f79213f","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"tr","translated":"{name} · ilk ziyaret {date}","updated_at":"2026-07-10T04:20:37.154Z"} {"cache_key":"2425436cbd6df1e63399e29ead2cc39b64f74162add08ff66575a408f31b6868","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"tr","translated":"Hedef notu","updated_at":"2026-05-29T21:01:25.865Z"} {"cache_key":"2456f4f807cd1e004809b36bc2db4b3429400456c2223b31becd7cebfa484a59","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"tr","translated":"Yeni grup adı","updated_at":"2026-07-05T14:40:02.505Z"} {"cache_key":"2509113a25ff3c441876b46e77af4f0242887d6017240a1a7ce77b510b94721d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"tr","translated":"Skills: {skills}","updated_at":"2026-06-16T14:15:38.462Z"} {"cache_key":"25cccc1ff40dc50bd8f151bb72b3a6e7c1040823c8738151fa4abf87949637a3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"tr","translated":"Oturum çalışma alanını yenile","updated_at":"2026-06-16T14:15:44.904Z"} {"cache_key":"260f0e6afbc13b3334919d6266f7b884b66e9cd826d11baf30a1c16fe178c261","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolRuns","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} runs","text_hash":"627a5f9e7cc0ba0f9bc65c55fb5e6421519e92d24f35dabffabb1eaf16aa750b","tgt_lang":"tr","translated":"{count} çalıştırma","updated_at":"2026-07-09T11:28:06.616Z"} {"cache_key":"260fd991bdab790e7000fdc040b534cc6c4df79f676627694c389eb25157b4ea","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"tr","translated":"Özel gruplar","updated_at":"2026-07-05T14:40:02.505Z"} +{"cache_key":"26982e8c9710b73581fe89536aa9607409744f395e4b7ba63511d524377bd85e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"tr","translated":"MCP ayarları","updated_at":"2026-07-10T02:26:48.666Z"} {"cache_key":"272fd9196f891764f2ce3ef2c0cd9a3d519bfcbb5bbffb85f266877532e9b9ad","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"tr","translated":"Rahat kart yoğunluğu","updated_at":"2026-06-17T14:15:34.754Z"} +{"cache_key":"277508b0c81a8cb9722ff21f44bcc558df4bb42644c35d2e394482bb722a5ff4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"tr","translated":"Farklı bir arama deneyin.","updated_at":"2026-07-10T02:26:44.278Z"} +{"cache_key":"28a1427b2942ea2c168e05737bc4fd48b3ff5b06bc3d772099dea95de2025ab8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"tr","translated":"{name} devre dışı bırak","updated_at":"2026-07-10T02:26:56.132Z"} {"cache_key":"28d0ed466ace5b4d10716412ceec212738b402bf8ff631ae424a8384407a17bb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"tr","translated":"{count} gösteriliyor","updated_at":"2026-06-16T14:15:55.679Z"} +{"cache_key":"294e85f8c2458ed74f71bdc7ca389d519b4aea11baed8bced9f8cab07b1b055e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"tr","translated":"Tekrar deneyin","updated_at":"2026-07-10T02:26:40.262Z"} {"cache_key":"29e83d087cfb7e2fd53417aaf6175832a5063eeb6a3d9201cb0d648da0dcce4d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"tr","translated":"Çalışma alanı: {workspace}","updated_at":"2026-06-16T14:15:38.462Z"} {"cache_key":"29fff63f87cb4dbd93520a159c5e4f70e32133ddd7b6802ade19ecd5a7e4fc9f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"tr","translated":"Gateway","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"2a476a935fe188af5dfff645c830ed4b12273628f243035bd54d509a47e0dc21","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"tr","translated":"Sistem hatası","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"2acb67ba0dc28ffa2535fc3839219971052fd9e2e40c071d558cdefc40a6e643","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"tr","translated":"CWD","updated_at":"2026-06-16T14:15:58.007Z"} {"cache_key":"2ae974dacafada0fdbaa55cae99c634e9dee4e61c34d91c3553784c3a4a55d80","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"tr","translated":"Genel","updated_at":"2026-07-09T08:08:04.089Z"} {"cache_key":"2b37f0e00ebd0fb395978f6a1b8bebe1df96a7f889791d6f4a6840ccbcf7c9fb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"tr","translated":"{count} okundu","updated_at":"2026-06-16T14:15:55.679Z"} +{"cache_key":"2c2292d488339453e61f4aa7fefc81691291df97c5b786fbdaf473fe1a971aff","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"tr","translated":"Yalnızca göz atma. Eklenti değişiklikleri operator.admin erişimi gerektirir.","updated_at":"2026-07-10T02:26:56.133Z"} +{"cache_key":"2c39b4406e795c5825b42ed79330d119811c4b321153a5c0356367d5f401223d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"tr","translated":"Sunucu adlarında harfler, sayılar, noktalar, tireler veya alt çizgiler kullanılır.","updated_at":"2026-07-10T02:26:48.666Z"} +{"cache_key":"2c4df8f77e4e1ce6ce0373204bd5ad421ba43fe3496aa0c232c73c385cc92c92","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"tr","translated":"Bağlı Gateway sürümü","updated_at":"2026-07-10T09:47:24.999Z"} {"cache_key":"2ca683651b818cf086bacdaa9cfe6842675bdf1685c9d6db8fe684da20d481cc","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"tr","translated":"OpenClaw tarafından sahip olunan yalıtılmış depo checkout'ları.","updated_at":"2026-07-05T21:01:15.459Z"} {"cache_key":"2d40b70dbb98cd5595d17718f5c501f73feb387ea0402c7826b9b431b841ac8a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"tr","translated":"Çalışma alanı yolu","updated_at":"2026-06-16T14:15:55.679Z"} +{"cache_key":"2daa8e13d98dee1544d466ba1f0f0696cfb148b9f132424c30a390ea03900ea6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"tr","translated":"Eklendi","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"2e673b16d3288fbf506ccad8d5699c4a5d4ecd8c964ce03cef64b06d9ecd5924","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"tr","translated":"Çalıştır","updated_at":"2026-06-16T14:15:38.462Z"} {"cache_key":"2ecce114f52a075fba87e9ce2932ee295a36495a1c55f0b63a0ab756a73f830a","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"tr","translated":"Çalışma ağacında yeni sohbet","updated_at":"2026-07-06T04:56:26.786Z"} {"cache_key":"2ee5fcadf1f425bd80fed498e9515f38f8c29cf02d3126af27329691a1012de1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"tr","translated":"Yenile","updated_at":"2026-07-09T10:01:43.764Z"} @@ -62,16 +92,22 @@ {"cache_key":"30ac0d36f96a2782b8914c5a8efe45a47f94a2400e211423ec0288bce16061a9","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"tr","translated":"Yalıtılmış aracı görev checkout'ları ve kurtarma anlık görüntüleri.","updated_at":"2026-07-05T21:01:15.459Z"} {"cache_key":"30ac5734449c6a2cb25be33225bf08a6259aac9f74248e849caafacd4b4ac9c7","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"tr","translated":"Mikrofon girişlerine erişilemiyor.","updated_at":"2026-07-06T17:56:54.065Z"} {"cache_key":"312511439ce34cd89206d7ada43e154c5d2d8ed2175de8fb61c89d27e368bfa0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"tr","translated":"Gateway'de veya eşleştirilmiş bir bilgisayarda Codex oturum paylaşımını etkinleştirin, ardından bu görünümü yenileyin.","updated_at":"2026-07-09T10:01:43.764Z"} +{"cache_key":"31921ebb6485f2d2834a6e00430f74f0dc001e704ef1e518bddb8cafcb24f620","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"tr","translated":"Yalnızca göz atma. Bu gateway eklenti değişikliklerine izin vermiyor.","updated_at":"2026-07-10T02:26:56.133Z"} {"cache_key":"336528accf7135887cc90636ed3fe47e62ee31a3d45247ba8ad5b85c27b9dc91","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"tr","translated":"{count} ek","updated_at":"2026-05-30T15:38:34.866Z"} +{"cache_key":"33ba28d68966435d6c3ef30aa79e34f18bfbd397df3ab2d8386cc67136b3e0fe","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"tr","translated":"Yükleniyor…","updated_at":"2026-07-10T02:26:56.132Z"} {"cache_key":"34600dfb47def1c50ed0947cde7a6d619fa363b9bdcd24a805f9f905f10e8d03","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"tr","translated":"Grupla","updated_at":"2026-07-05T14:40:02.505Z"} {"cache_key":"34e949943bb113fd64377bb17b863957539ffb4442175f1e78dca554fe1223d6","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statPeakDay","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Peak day","text_hash":"c3a0833ac4b7cd06e29368f323fef10520637658605aa35de342df7bac6357f1","tgt_lang":"tr","translated":"En yoğun gün","updated_at":"2026-07-09T11:28:03.876Z"} {"cache_key":"3566fa6c6f374aeafe13d00570f0f6fe9a8322a3efc73a644f61ead85c0d5326","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"tr","translated":"Sistem varsayılanı","updated_at":"2026-07-06T17:33:54.041Z"} {"cache_key":"356839bcc6971b3c7cb64a7becf4963d5f0d21edb12cb84f11a94c2585b340f3","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"tr","translated":"Daha fazla yükle","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"36be73e9fb370228e02836deff7764c817c047412649daf2a280d57c0d5c8c8b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"tr","translated":"Revizyon istekleri için mevcut sohbeti kullan","updated_at":"2026-06-16T14:15:38.462Z"} +{"cache_key":"370a4a86a4c7073e7535e44a263647eb409435202ee74c138bf3282b35852187","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"tr","translated":"{name} devre dışı bırakıldı.","updated_at":"2026-07-10T02:26:56.133Z"} {"cache_key":"37ed3377cd8af0cac4482d15591b5c0e3f9334a169acc801596266464a4a35df","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"tr","translated":"5sn","updated_at":"2026-06-17T14:15:40.711Z"} {"cache_key":"38931383e024c35cba9ed5349c17d08a16258b6673823a131c5db5c7a75707df","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"tr","translated":"Çalışma alanı","updated_at":"2026-06-16T14:15:44.904Z"} {"cache_key":"392a546b38f14051b5d086ce6e4c15371da5d5f2cdb6f78d0cad589345a41f52","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"tr","translated":"{count}sa","updated_at":"2026-06-17T14:15:40.711Z"} +{"cache_key":"3a97685551e01489164ba64131f78464d31b16565b20083eb2069942e9eb19b6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"tr","translated":"ClawHub'da aranıyor…","updated_at":"2026-07-10T02:26:40.262Z"} +{"cache_key":"3acd0d15613c4d24c17694e781bf68168f5979e44cbc3ae74d2b2dac5a72fc76","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"tr","translated":"Sunucu ekle","updated_at":"2026-07-10T02:26:48.666Z"} {"cache_key":"3ad1871625a8fea5ea547c90b7a4b1d7540f92b30769e80b79f5847d79892f3f","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolsEmpty","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No tool runs recorded yet.","text_hash":"9db22f17f7e8e1c3f86b168cde0d59ef62ea10f4363e51f802a5a06f341dc343","tgt_lang":"tr","translated":"Henüz kaydedilmiş araç çalıştırması yok.","updated_at":"2026-07-09T11:28:06.616Z"} +{"cache_key":"3b0435b7083ff1e2f175acd71e10e54395c158e0de5a5b2beb9764f88fc5b0b4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"tr","translated":"Paket","updated_at":"2026-07-10T04:28:33.072Z"} {"cache_key":"3b3701eba552ba3db0806de0d5424d5b16e80095b1a117159ac31f32d2f97320","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"tr","translated":"Bu ana makinede etkin oturum yok.","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"3b44764a589dc75297e399aa6c7b4bb7da5cb008c495f875fb569849df225ce4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"tr","translated":"Yapılandırılan varsayılan agent'a açıkça atanan kartlar.","updated_at":"2026-06-17T14:15:34.754Z"} {"cache_key":"3c52db77e1ac0d7dae803f505eb481e20445cf4ca5f8e18588ce7c62442580ca","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"tr","translated":"Pano: {board}","updated_at":"2026-06-16T14:15:38.462Z"} @@ -82,23 +118,32 @@ {"cache_key":"3e1b0cb1fcae361de9c6b39f69da7c3affbc5b900cad6cd395d7d37f79ee7662","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"tr","translated":"Okundu","updated_at":"2026-06-16T14:15:55.679Z"} {"cache_key":"401681284b43a2227310d254cf7f2b0dac1c14609336d32dcfb59ed92b75c247","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnly","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Archived only","text_hash":"da7ebd8c482f38dc2a5b693a0ec25aaa04ea7b5fa3713cce9fa41a28f2201a6b","tgt_lang":"tr","translated":"Yalnızca arşivlenenler","updated_at":"2026-07-02T14:30:28.149Z"} {"cache_key":"4086f53d892d97fec66f127b16a971d6e0e31a4da618fc49ed51dd53d3790ea6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"tr","translated":"30sn","updated_at":"2026-06-17T14:15:40.711Z"} +{"cache_key":"419f0ef8ad244f45249caa16ec790a3fd9a6be70d12ebb8062855cf3d7186537","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"tr","translated":"Kaldır","updated_at":"2026-07-10T02:26:52.321Z"} {"cache_key":"434c9c18245683962a47ba3184d0095a4f87a3321d5cdc38067050d9aee2dd35","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"tr","translated":"Kapalı","updated_at":"2026-06-17T14:15:34.754Z"} {"cache_key":"43acb3047cb32a86fd855f4cf1b7aa100836d69fbd3584773aee3ee804af2cba","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"tr","translated":"Oturumu yeniden adlandır","updated_at":"2026-07-02T14:30:28.149Z"} {"cache_key":"43d707241e7e1419e6c5d077413015b0ba9c7da30b9cb26a20688794d5677bf6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"tr","translated":"İşçi günlükleri","updated_at":"2026-06-16T14:15:38.462Z"} {"cache_key":"43e9451f0115c2a5f6c53c816869561baaefa61187ae3c612fad2b60ebb1a925","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"tr","translated":"Mikrofon girişi bulunamadı.","updated_at":"2026-07-06T17:56:54.065Z"} +{"cache_key":"43eaf0733a0b5a9cd7148f6df564526df296649f83925e6b8dc77eb619308ce0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"tr","translated":"Çalışıyor…","updated_at":"2026-07-10T04:28:33.072Z"} {"cache_key":"441eeb432cefe15ada3de577251b0a2a778f672b10dab25a515f04021b7b6a82","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"tr","translated":"Aracılar ve Araçlar","updated_at":"2026-07-09T08:08:04.089Z"} {"cache_key":"444ce52391d2f26f094d40247a1343bb4a28a63618a26640bfeb714cdcbe8e5a","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightModel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Most used model","text_hash":"a13c86cd4f835d2c2b5af940171ede2a27e0f805cef070d87628f1bd333bb706","tgt_lang":"tr","translated":"En çok kullanılan model","updated_at":"2026-07-09T11:28:06.616Z"} +{"cache_key":"45ba2486453e350bfe7296959b21f2eb7ee7c12d91e45bedf3b7ac9ade7e44d7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"tr","translated":"Eklentileri değiştirmek için gateway'e bağlanın.","updated_at":"2026-07-10T02:26:56.133Z"} +{"cache_key":"45d53caf5341bcff31681c28ee71b05b3a7f410bee79cf09543d7de17d774acb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"tr","translated":"Yükle","updated_at":"2026-07-10T02:26:56.132Z"} {"cache_key":"45ece6358dcaf6287d91c195281607f6ef03a4f032ba169870afd6d77750023f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"tr","translated":"kalp atışı {age}","updated_at":"2026-06-17T14:15:40.711Z"} {"cache_key":"467179f4fae289ea53d9565c5d71905f1f90dad1460432f3209d9724158aef2b","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"tr","translated":"Geri yükle","updated_at":"2026-07-05T21:01:15.459Z"} +{"cache_key":"46952e83913d4402792fce0634d55704b6ee368471d402fa6d8537d0553857b1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"tr","translated":"MCP sunucuları","updated_at":"2026-07-10T02:26:48.666Z"} {"cache_key":"4749b1ed62b303dc56267c593f8cc29ad144a0396fbdca3a694032d2a9671c74","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"tr","translated":"Yüksek","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"47da24b1e63ada137e085d2d8cb50de96ede2f53cf8db9656b14d323064dfb81","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"tr","translated":"Son güncelleme","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"48d2738a7216ead12723c4a285afc8143354c2cf04ee27804fa8588658257e5a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"tr","translated":"Kod eklentisi","updated_at":"2026-07-10T02:26:52.321Z"} {"cache_key":"495b1324128c4e347510c73cb4ff14d90edf94c617372c4f5049cc427f5ba0fb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"tr","translated":"{count} oturum","updated_at":"2026-07-05T14:40:02.505Z"} {"cache_key":"49600d3e11a0d4398c96cb495e14031dec519b26739de6d44a9b18bf9d8dadbc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"tr","translated":"Güncellendi: {time}","updated_at":"2026-06-16T14:15:38.462Z"} +{"cache_key":"49a748328b842d2cc8366c9988960fa783779ff3cb67205d481b3119a9fa4337","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"tr","translated":"URL veya komut","updated_at":"2026-07-10T02:26:48.666Z"} {"cache_key":"4a4da5d58c9550a5d99a28954968b773278c813ba4c908edea1bfc05e38763b7","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"tr","translated":"Renk modu: {mode}","updated_at":"2026-07-07T08:47:34.967Z"} +{"cache_key":"4aad8595b262176c2ab1f7d3cbda3863043bfdf3a4c20d5f2db94739d00b73e7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"tr","translated":"Arama hazırlanıyor…","updated_at":"2026-07-10T02:26:40.262Z"} {"cache_key":"4bdecaf52f9ec5e39f32f030b654bd181fefdbd429910b0084f396db2829b852","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"tr","translated":"En çok kullanılan modeller","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"4be03d8a44f9a21694f206231c150fe8716997534e86101ffe7379fe4258e068","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"tr","translated":"Otomatik yenileme","updated_at":"2026-06-17T14:15:34.754Z"} {"cache_key":"4beae23919439f69e2733c599a6546322d4d57814b2c386f8b9ec48884dbb9aa","model":"gpt-5.5","provider":"openai","segment_id":"languages.hi","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"हिन्दी (Hindi)","text_hash":"fab2abfce45382f3031c59477017700a8cb5dfaf8d15379dc24304809b97c7d5","tgt_lang":"tr","translated":"हिन्दी (Hintçe)","updated_at":"2026-06-26T21:43:35.090Z"} {"cache_key":"4c0dc3ff962e671322ac1a4f903a007a979d79b36b718e8900e3fa60c2e3afc4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"tr","translated":"Yeni bir kurulum kodu oluşturmak için /pair qr komutunu tekrar çalıştırın.","updated_at":"2026-07-01T10:32:46.731Z"} +{"cache_key":"4c506766013d565718860e3d126d6aade8cec476d82eeabf7151d1078e2b6c8f","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"tr","translated":"Derlendi","updated_at":"2026-07-10T09:47:24.999Z"} {"cache_key":"4c8422a0f909944c0263b23daa336086ddabe6a6793d56d47a353d7da22b1bb3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"tr","translated":"Görünümü, aramayı, önceliği, ajanı veya arşiv filtresini değiştirin.","updated_at":"2026-06-17T14:15:40.711Z"} {"cache_key":"4d7f793812d970ffdf2dc56cb42f5cf2a584c6bfadf157a07d71e9cc72952c3b","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolRun","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} run","text_hash":"269b72554d7e530ba9a8a05270baba9af1ea6a9f02bb4889bf75ef0b3bb20c44","tgt_lang":"tr","translated":"{count} çalıştırma","updated_at":"2026-07-09T11:28:06.616Z"} {"cache_key":"4f478d602258323a6affdd398539670902f15dcefe7a644a51da98d64bcec874","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"tr","translated":"Boşta","updated_at":"2026-07-09T10:01:43.764Z"} @@ -107,8 +152,10 @@ {"cache_key":"4fe1a65d3bedf4003f8ce07ee83e0bf3505ff30d57d1c10ab1f3c896319c1347","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"tr","translated":"Model","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"50d4e0d0a62dc1f2c554e0a808165262e7f69e147d3f1e637342f003ba06f613","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightToolCalls","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Tool calls","text_hash":"da5122dc0f97b158bfbd27c5bd479322f34e0916a0cd4626d42c03bb0000e4b4","tgt_lang":"tr","translated":"Araç çağrıları","updated_at":"2026-07-09T11:28:06.616Z"} {"cache_key":"5115daf9c8e64954d713f0e90a0d0fa6bdf66ae47d1590bf3d07f43974105e7c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"tr","translated":"Bu ana makinede arşivlenmiş oturum yok.","updated_at":"2026-07-09T10:01:43.764Z"} +{"cache_key":"5359467a9ada2e1fd297c1030210b43b616e9e32b01c62706f83887286696610","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"tr","translated":"Tümü","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"5421d84740de0531998f46c67fb63a826436afee47014f443e76670334afad34","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"tr","translated":"{agent} (yapılandırılmamış)","updated_at":"2026-06-17T14:15:34.754Z"} -{"cache_key":"542ce40e3dd7e02b5fbab22130318df484d3a1f90a33b562d1dc92da2b5e27a8","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"tr","translated":"Oturum dosyalarını göster","updated_at":"2026-07-10T06:08:26.731Z"} +{"cache_key":"5426580e71a9e855dd8b9b713ac5f484a8931553aeabcfa950325a3bbdef436f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"tr","translated":"Eklentileri ara","updated_at":"2026-07-10T02:26:40.262Z"} +{"cache_key":"5571cc9ab0d53592768f91eb75d377597ca70a7186f4a1312388921768c71046","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"tr","translated":"ClawHub'daki topluluk eklentileri","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"559d5ff10cecac26c56583816e401bd664cfbb22f8b3388e547fa90ca0f4077e","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"tr","translated":"Ek eklendi","updated_at":"2026-05-30T15:38:34.866Z"} {"cache_key":"56d63f64e1311441985c736b05cd9b37e84ad752569d1c62f73bbd8deece26e7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"tr","translated":"Yeni grup…","updated_at":"2026-07-05T14:40:02.505Z"} {"cache_key":"584024698f7282e27d9ab6eb348a6a2e6d2f1857a57edd673190a309b3548115","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"tr","translated":"Arşivlenmiş","updated_at":"2026-07-09T10:01:43.764Z"} @@ -118,28 +165,42 @@ {"cache_key":"5a16fbfe8d957f82784196dff16869f809499d308391925db7fec23a34728158","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"tr","translated":"Grubu yeniden adlandır","updated_at":"2026-07-06T23:41:07.084Z"} {"cache_key":"5af4e794a31405310dffc136564853d34571986ff215853ff82bc14b8b6fe558","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"tr","translated":"{count} oturum","updated_at":"2026-07-05T14:40:02.505Z"} {"cache_key":"5b41c0683d863093dd7c58ec7349987d077c6e676e4dc2932185d02a307ceecd","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"tr","translated":"Oturum kataloğu kullanılamıyor","updated_at":"2026-07-09T10:01:43.764Z"} +{"cache_key":"5b7217d2fb6fd16056dc61b34ff3eec9645986c800be2d2567a2d7b15a0ef9b4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"tr","translated":"Kaynak","updated_at":"2026-07-10T04:28:33.072Z"} {"cache_key":"5be4c5f35c2ea7e5b998c4a5d7f23dfb33ba8b8d60c85554541c6aaa8562ec0c","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.offline","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Connect to the gateway to meet your agent.","text_hash":"8804d65574fee21ed454bc82cb65b5ac8f0320877b5e4db12230aa665cd86f18","tgt_lang":"tr","translated":"Ajanınızla tanışmak için gateway'e bağlanın.","updated_at":"2026-07-09T11:28:03.876Z"} -{"cache_key":"5bfb9ec63b3db6aaecc25872043c27c2eaa52ed1f08a77f517bca096df6ea192","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"tr","translated":"Dokunulduğunda küçük blub sesleri","updated_at":"2026-07-10T04:50:25.947Z"} +{"cache_key":"5c2a56dfd2419efa4d1f7e20dad02b65895ddf46526841219526e26eece9f33f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"tr","translated":"Resmi","updated_at":"2026-07-10T02:26:52.321Z"} {"cache_key":"5d1990e29d69db53d4585ae7274b4d3368269b98114bdb4b759e35b495379b8a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"tr","translated":"Bu ana makinedeki hiçbir oturum aramanızla eşleşmiyor.","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"5d832e33caa4974c70f7fbd0377814761b1ea23691b360793e9224f0cdf2192d","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightUniqueTools","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Distinct tools","text_hash":"fba464c701baf969580caaec17d4b305c85824e189a770ce3c6ff4b6fa120989","tgt_lang":"tr","translated":"Farklı araçlar","updated_at":"2026-07-09T11:28:06.616Z"} {"cache_key":"5da2baa863c9876d38f879d20305be9ca6ec5b45cda035c1955235ee77e81d17","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"tr","translated":"Bilinmiyor","updated_at":"2026-06-16T14:15:44.904Z"} +{"cache_key":"5ed4911746889d1dcb8d3c92f1f09cd53676cf4f3155faf9e2ab61816433f735","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"tr","translated":"Yüklü eklentileri filtrele","updated_at":"2026-07-10T02:26:44.278Z"} +{"cache_key":"5ef574b6dc6b55fc71a91121e1ee5dbb38acd9af38f78e6e5f2d20b3f325a685","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"tr","translated":"Bu tarayıcı yapıtı derlendiğinde gömülen kimlik.","updated_at":"2026-07-10T09:47:24.999Z"} {"cache_key":"5f3c3fb8654d60ea5d3348bc2ccbdd41513ba09e653f6130262aa2e404149d68","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"tr","translated":"Asla ziyaret etmez","updated_at":"2026-07-09T20:51:40.521Z"} +{"cache_key":"5f5b6bb2339ec51562fd6262991c1e0c1a77e24c6b356b2bc329d754c8c838cd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"tr","translated":"ClawHub'da “{query}” için sonuç yok.","updated_at":"2026-07-10T02:26:40.262Z"} {"cache_key":"5f78eb2c9cec98ad10aca5f0cf38125560ef12452de115fbf2d8928faa77fe35","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"tr","translated":"Istakoz ziyaretleri","updated_at":"2026-07-09T20:51:40.521Z"} {"cache_key":"5fdbc89d4308e28aa94e30e69d05d7b79dadf354922f5522b905070702f349fa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"tr","translated":"Talk hatasını kapat","updated_at":"2026-06-16T14:15:44.904Z"} +{"cache_key":"605a556693da4eb7b0b8064d924512205da7d89a00a36ef7f513ba1666746339","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"tr","translated":"İsteğe bağlı eklenti yüklü değil","updated_at":"2026-07-10T02:26:44.278Z"} +{"cache_key":"60882fa45aa2ede4a320ba5186cbbd92739dd53ac81656bd54aa66ddc2955004","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"tr","translated":"Ekleniyor…","updated_at":"2026-07-10T02:26:48.666Z"} +{"cache_key":"609dd157a073bb5ecbb7773ebb8babfb2737c9acc7c8e046ed303cecde3d05ce","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"tr","translated":"{name} öğesini kaldır","updated_at":"2026-07-10T02:26:52.321Z"} {"cache_key":"610e81960ab9e3620b58537c737e3060f0910ab2e2e73b599ac5bf8a55efc653","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.loading","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Diving for stats…","text_hash":"81a616d9c5f179db9a23f119bd752b6c0445a3e37bcc28e76eab97fd29da7c74","tgt_lang":"tr","translated":"İstatistikler için dalınıyor…","updated_at":"2026-07-09T11:28:03.876Z"} {"cache_key":"627f07dbd017c4db1abbe8e345c9a8bb71e7f2e45fe025472acedaff9a6e8c44","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightAgents","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Agents in the reef","text_hash":"050a0a3d70a5c89d65789f7983024ee9eb2539cee6c2e0b31677ac78b0cd3534","tgt_lang":"tr","translated":"Resifteki ajanlar","updated_at":"2026-07-09T11:28:06.616Z"} +{"cache_key":"627f329f46d7cd6407323723d175646649e1cc0ee70b792119615a1686727425","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"tr","translated":"Ev ve medya","updated_at":"2026-07-10T05:22:25.491Z"} +{"cache_key":"6281ae7c9cbc85799d75e7e3ab066d92a63fea59ff9f711b44694bed642ac29e","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"tr","translated":"Sürüm","updated_at":"2026-07-10T09:47:24.999Z"} {"cache_key":"6284c26a54b3908a12e4380bd35d5d3732dd48ff8d948996d9e6290d9bc359cf","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"tr","translated":"Gruplanmamış","updated_at":"2026-07-05T14:40:02.505Z"} {"cache_key":"628ba89ce65fb39170d70bb9e9173c156ba9d577acab5f446258d7b44b16f002","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"tr","translated":"Varsayılan agent","updated_at":"2026-06-17T14:15:34.754Z"} +{"cache_key":"62935144e081c60712c29a17d525fd5853a73f4204d907b7260d03065e0e7ad2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"tr","translated":"Keşfedilecek eşleşme yok","updated_at":"2026-07-10T02:26:40.262Z"} +{"cache_key":"6336b1d45dc7b68aeba68d9c3920f6e8ef30993b0e2c98be217faa37fe5ec896","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"tr","translated":"Sorunlar","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"6369eb461c66a1b5c0bb43710f7db7bff836bcb0cd2c7e1727d1d6c49da49d4b","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"tr","translated":"{name} için anlık görüntü alınıp silinsin mi?","updated_at":"2026-07-05T21:01:15.459Z"} {"cache_key":"63a7292b140fe5ec33618d60f732342d907891445a9203f509f56e34bf4cc01e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"tr","translated":"Ayarlarda daha fazlası","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"63cf220dc15b0270a26980287a4d8cede4d094caff00474b97700434096f451c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"tr","translated":"Oturum çalışma alanı yükleniyor…","updated_at":"2026-06-16T14:15:44.904Z"} {"cache_key":"6521c8bf1076edb94c0756c62ae3d14e0a9b414a306ab1de34e85258a9756763","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"tr","translated":"Mevcut sohbeti kullan","updated_at":"2026-06-16T14:15:38.462Z"} {"cache_key":"658a5eca139f1df96184fef16455a4b71830beb9bbccce3154ed0172b4c527f4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"tr","translated":"Yenileme başarısız","updated_at":"2026-06-17T14:15:40.711Z"} +{"cache_key":"667b7aa5dedccab02a359a2ec3e2c09d3952415964c294fdde0433875b695fd2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"tr","translated":"Resmi eklentiler","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"686e4778491154af4ced34229b2b27e3ad651a96ff806000bcd3f4f1888c1a8e","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapTitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Token activity","text_hash":"05f1f9836e5173d8ab4539357cfa050c3ad480fc049ddc22cb8fb8ea437997e2","tgt_lang":"tr","translated":"Token etkinliği","updated_at":"2026-07-09T11:28:03.876Z"} +{"cache_key":"691fcdef70ad8eb33c8916785e95a5814f4bd393db15fc0c2581a11c3ef1c10e","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"tr","translated":"Control UI derleme ayrıntıları","updated_at":"2026-07-10T09:47:24.999Z"} {"cache_key":"6a0f14e1e99f863397a690666e302aa68762ab655547c2a652cc8092ee0f8f0f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"tr","translated":"kanıt eksik","updated_at":"2026-06-17T14:15:40.711Z"} {"cache_key":"6b0b169e30763403e3fb9000a88c80fb6a7c08b312372dd9d8d61b400aef3b8b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"tr","translated":"Çalışma panosu durumu","updated_at":"2026-06-17T14:15:40.711Z"} {"cache_key":"6c4e98b1321e034b89c649b065a9a325d2cc9f7986f553d79fe0c0c9a8760ace","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"tr","translated":"Codex oturum özeti","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"6d88c150bd277aaa537ae3055d71b0e223669d7a29523d84c684287de408a80f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"tr","translated":"Önizleme","updated_at":"2026-06-16T14:15:58.007Z"} +{"cache_key":"6db669780c9ccb109f9822bb0ea0c39e6f932d34ec0005a8a53c72634dab829d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"tr","translated":"Dünyanızı bağlayın","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"6dd4e221a22ba8d118a0d14f1480bc2fa116773cf6565aa48139c7e51a4b876d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"tr","translated":"Grubu sil…","updated_at":"2026-07-06T23:41:07.084Z"} {"cache_key":"6e26905dc1b186b14367c6edcec7393195733683e8747bb6d8170003d9faed74","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"tr","translated":"Bu tarayıcı mikrofon girişlerini listeleyemiyor.","updated_at":"2026-07-06T17:56:54.065Z"} {"cache_key":"6e99e58afea4dd163235745577c624405d4e8a8869577cbc18b882ff7410ba1e","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"tr","translated":"Böl","updated_at":"2026-07-06T22:56:29.564Z"} @@ -147,10 +208,16 @@ {"cache_key":"6ece2e2648fede9d3b6c310b32cad183b97eff6e8c30f760f6567a1d1213ddbb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"tr","translated":"Kanıt eksik","updated_at":"2026-06-17T14:15:34.754Z"} {"cache_key":"6f13df8b845a7b2e26bcb704017fccd1d1cb5ee46ab204b6440e3dcfc0f7a63e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"tr","translated":"Son tamamlananlar","updated_at":"2026-06-17T14:15:34.754Z"} {"cache_key":"6f42026e6900a2573f42e31f929aa05af235af6b8bbae4b4a97b8f95f000463a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"tr","translated":"Gelişmiş Talk ayarları operator.admin erişimi gerektirir.","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"7062377a0b082af6b6b1bbc5130b0f49f367e4b1f10e4236ac4e8848ebc42c92","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"tr","translated":"Devre dışı bırak","updated_at":"2026-07-10T04:28:33.072Z"} +{"cache_key":"706b378177032320d73b355833806f97bd2edc8c2565b4aef4ca68536077d50e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"tr","translated":"{name} yükle","updated_at":"2026-07-10T02:26:56.132Z"} +{"cache_key":"70ac10b470f81bfdc5cfe0d49678874bad0fbb759aacb3d3cd7bbb2f231c7208","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"tr","translated":"Etkin Gateway bağlantısı tarafından bildirildi; bu Control UI derlemesinden ayrıdır.","updated_at":"2026-07-10T09:47:24.999Z"} {"cache_key":"70bfc342e9642ce6f4ed57d77ebf8f0d7170486d5eb08bcdfb4fe877a819578e","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"tr","translated":"Protokol ihlali","updated_at":"2026-05-30T15:38:34.866Z"} +{"cache_key":"718378f26dd9ad8fc332dd07af8d5143a8715024325eed3cf88237c0fe8d085a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"tr","translated":"{name} etkinleştirildi. Değişikliği uygulamak için Gateway yeniden başlatılmalıdır.","updated_at":"2026-07-10T02:26:56.133Z"} {"cache_key":"71bfaedeeff1c2e408c3ad632d79bc0a0c58e0b3212d509def9fbf1031587a7d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"tr","translated":"Codex oturumlarında ara","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"72502d99be56da80d98b392627473881d2ba1b3e20460565e0bf2224619c90c5","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"tr","translated":"MCP sunucuları, kimlik doğrulama, araçlar ve tanılama.","updated_at":"2026-05-31T05:36:46.292Z"} {"cache_key":"72950d8e1d3e280660155ce2398828175c0f94279145486cf8443fcf9418cbd6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"tr","translated":"Otomatik","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"733b8c76ad1f176f0d5880a801f12a23d53c34bdf5588db7424963e36d50147d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"tr","translated":"Model sağlayıcıları","updated_at":"2026-07-10T02:26:48.666Z"} +{"cache_key":"74679c6b7c1bb9436857b2df47a947a0f4789c4b5cd57efb7c51f50c940f051a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"tr","translated":"Keşfet","updated_at":"2026-07-10T02:26:40.262Z"} {"cache_key":"75628707041dcbbd106ffb135c4b9e9c6987f635cc466abf20b38fc2e44c6b6a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"tr","translated":"Tanılama","updated_at":"2026-06-16T14:15:38.462Z"} {"cache_key":"757043636a92ec1d820899cbc0054f425dbe072befadc709684f9a69c5f6baa8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"tr","translated":"Açık bir agent olmayan kartlar.","updated_at":"2026-06-17T14:15:34.754Z"} {"cache_key":"763541d9e176624185a500f6c4ce240b509fbe83aef9299874f690ae69a1da52","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"tr","translated":"Kanıt","updated_at":"2026-06-16T14:15:38.462Z"} @@ -161,11 +228,14 @@ {"cache_key":"7838cf9c64bf90e5a39a66df50bafe0e9f908e10c278c2a318f83f348a74a5e8","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statCurrentStreak","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Current streak","text_hash":"f1758c2815840f1bbef57663a13d2c243c6d0c052fcb09bc1a75319ebc9621d5","tgt_lang":"tr","translated":"Mevcut seri","updated_at":"2026-07-09T11:28:03.876Z"} {"cache_key":"78f8981d3e6766c2ab71bdc380d753a3153c2cf3d535b52c08a7b7fdcbc63cb2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"tr","translated":"Eksik","updated_at":"2026-06-16T14:15:44.904Z"} {"cache_key":"7b14f60cb0f01b1eaa37bf45054889c40bb38b9c603a7f53136f9b309f76802c","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"tr","translated":"Bugün","updated_at":"2026-07-05T14:40:02.505Z"} +{"cache_key":"7b33e6e085a503ecd95f3b6c8a84c39a679cd052ac555b927f09aca6736dc0a7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"tr","translated":"Eklentiler yükleniyor…","updated_at":"2026-07-10T02:26:40.262Z"} {"cache_key":"7b948c18323d4be1867dda751c9821948113e65a7495abb860de1546073c7086","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"tr","translated":"Oturum çalışma alanını genişlet","updated_at":"2026-06-16T14:15:44.904Z"} {"cache_key":"7cda36fa0dbc277b2df6018c5f3ba0b0f3fe74b4cd3388b3206fbb7734d31ce1","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"tr","translated":"Bağlantılar","updated_at":"2026-07-09T08:08:04.089Z"} {"cache_key":"7de5d48aa4e135c652383ccb22c2b1de90bd1d1a94e930eeecbf8c8b57ec67c0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"tr","translated":"Düğüm","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"7e0f380e47bf1f155c1de859d51b0ae233ad0d38ccd077625c57179cd77b28c6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"tr","translated":"eski","updated_at":"2026-06-17T14:15:40.711Z"} {"cache_key":"7e1baab014c7c62c1043319fad1e2ddd77698cf70d26b39959de210a9f26cce2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"tr","translated":"Nihai yanıttan sonra yorumu koru","updated_at":"2026-07-01T01:07:50.766Z"} +{"cache_key":"7e96572b01425bd5f6e5720757b278730169cba7090f696bf6a5053701e97315","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"tr","translated":"Tam commit hash’ini kopyala","updated_at":"2026-07-10T09:47:24.999Z"} +{"cache_key":"7efffa68b448566c2eb5e9ffc75bf710ef853c0555651a18adfbb87b458ffd0c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"tr","translated":"Öne çıkanlar","updated_at":"2026-07-10T02:26:40.262Z"} {"cache_key":"7ffa8cfef54c3bdc90819fb8f0673de5edb5fa7af96f8c4b33de880903daa31e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"tr","translated":"Oturumu yeniden adlandır","updated_at":"2026-07-02T14:30:28.149Z"} {"cache_key":"80161ffdfc0330081158ffc8ca2dd6eaab0a49f5573244b8c725afe67b28ba40","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"tr","translated":"Varsayılan","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"830e86b81ff563467521c9eb63f3b28137906bceeef6d20d62b6c5c78efb4c07","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"tr","translated":"Eksik","updated_at":"2026-06-16T14:15:55.679Z"} @@ -177,17 +247,23 @@ {"cache_key":"8825b9eff1f02c8960e38e68b2fb8630108648fba80bbf3b3e2151d9ac60f855","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"tr","translated":"{count} gösteriliyor","updated_at":"2026-06-16T14:15:55.679Z"} {"cache_key":"899366b1af448ceb0f1e556a61d9e4cffbdd0f4cc880761fe5e30d65405578ee","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"tr","translated":"Workboard görünümü","updated_at":"2026-06-17T14:15:34.754Z"} {"cache_key":"89dc18d52451cd19d966cefb92e113df76f096c54ef2c6c44a745639484261be","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goal","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Goal","text_hash":"cdbf6975e8a35b0d03558be6822dfae166482c24fb86b0433f60e8167f5c91e4","tgt_lang":"tr","translated":"Hedef","updated_at":"2026-05-29T21:01:25.865Z"} +{"cache_key":"8a4fb1dffc23c3bc42ad3d4bf8b678dc3918556154be4df71eb71db7df79e781","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"tr","translated":"{name} etkinleştir","updated_at":"2026-07-10T02:26:56.132Z"} {"cache_key":"8ab7e2d4be2fe9c8ed09d5301995941af78d05be436cde23ec13e6f240582ea2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"tr","translated":"çalışıyor","updated_at":"2026-06-17T14:15:40.711Z"} +{"cache_key":"8b5a65c5ab7507c2b6ca8c0e079b2c9d64d8c8d731117f7d8b54cb3dec18501c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"tr","translated":"Devre dışı","updated_at":"2026-07-10T02:26:52.321Z"} {"cache_key":"8c9a788cba141728fe94dd1037da343bba80d14f04ccf0faf54f6ed2be1850f8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.restoreSession","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Restore session","text_hash":"35e4dc9befd3b3a29b50938839af0efb41b08051988dde53e1c1e73d1c2a039f","tgt_lang":"tr","translated":"Oturumu geri yükle","updated_at":"2026-07-02T14:30:28.149Z"} {"cache_key":"8cb3f5d501a8fcc1e182d2149551add1f1877b94c1d18eac1fca9be167bdfdec","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"tr","translated":"Çevrimdışı","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"8cd17d44b625263173bfaf790c719d1279d27595946aa54a6d4744a9b47be1e1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"tr","translated":"ana makine","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"8ff814b8050e54df90674b2fcc47c936da4031bdbd01279e668e9437f478fb71","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"tr","translated":"Proje dosyaları","updated_at":"2026-06-16T14:15:55.679Z"} +{"cache_key":"90f1307d7949d420e68557590a85f8bb328438e297013da93f96ae5af0cbad1b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"tr","translated":"{name} etkinleştirildi.","updated_at":"2026-07-10T02:26:56.133Z"} +{"cache_key":"9141af695d2b2a5b97628969c7d1af359b2deafb0f9fd73ed2a61c798d339588","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"tr","translated":"Popüler hizmetler için tek tıkla MCP bağlayıcıları ve özenle seçilmiş ClawHub aramaları.","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"9242a48fb9cd01ab01362cbd8906f959e075decc88c54b9553418e0e6ad4d73b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"tr","translated":"Bir karar, engel veya kanıt notu ekleyin...","updated_at":"2026-06-16T14:15:44.904Z"} {"cache_key":"92890c582b8f6f5de66812db445573240c1bb3aa8f91c38e626e7caff56a9a75","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"tr","translated":"Son etkinlik","updated_at":"2026-07-05T21:01:15.459Z"} {"cache_key":"92c20fd1483df7c02610d457a6d219af032932a91ce87b40b1a85802215d2928","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"tr","translated":"\"{group}\" grubu silinsin mi? Oturumları Gruplandırılmamış'a taşınacak.","updated_at":"2026-07-06T23:41:07.084Z"} {"cache_key":"9348fc6992cd73d05b7eafbfe424b83883772b55897663db7693c759f2ba9ec5","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"tr","translated":"Realtime Talk, tarayıcı mikrofon erişimi gerektirir.","updated_at":"2026-07-06T17:56:54.065Z"} +{"cache_key":"9449371cabef73f49c27c6d372535220ab41297e38881c2b960d97e1e770fe74","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"tr","translated":"ClawHub'dan","updated_at":"2026-07-10T04:28:33.072Z"} {"cache_key":"94bd79c6fa39d1726c2227292a68185044d79e2cc8c67928b18e61674c886d32","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.channelChipTitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{tokens} tokens on this channel","text_hash":"2f961c917719fceaa0b9fd222ea8590637986dce227e23deeeaf63b6cf11e9f8","tgt_lang":"tr","translated":"Bu kanalda {tokens} token","updated_at":"2026-07-09T11:28:03.876Z"} {"cache_key":"954b22bddb9f683bb8b27c152a5934374a800924138a3bf1e3358853e344ea1b","model":"gpt-5.5","provider":"openai","segment_id":"tabs.profile","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Profile","text_hash":"d696a35bdd1883da07a8d6c41bb7a3153381b23aa197629ee273479a6eaa5a9c","tgt_lang":"tr","translated":"Profil","updated_at":"2026-07-09T11:28:03.876Z"} +{"cache_key":"95524e2d0bba3f2bdbc36b221805cb5047cbdcd1179ba3f271e574cf5404ab66","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"tr","translated":"“{name}” MCP sunucusu yapılandırmada bulunamadı.","updated_at":"2026-07-10T02:26:48.666Z"} {"cache_key":"9631d6dcffd86d7c5983627ad6062d794b2f493ae06634e7bb63c8563a0d514d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"tr","translated":"Revizyon isteklerini önerinin çalışma alanı oturumu yerine mevcut sohbet oturumuna gönder.","updated_at":"2026-06-16T14:15:38.462Z"} {"cache_key":"963652cc54e5c441292bf178d8a420840d5477318828d8ce8c73856d2002832f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"tr","translated":"Etkinlik yok","updated_at":"2026-07-05T14:40:02.505Z"} {"cache_key":"964e7ba8c6704e8dda08607ee34facf35781ffdfee28016357ed6cbdad51e556","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"tr","translated":"Daha eski","updated_at":"2026-07-05T14:40:02.505Z"} @@ -198,12 +274,15 @@ {"cache_key":"97102ab3a80a1ae36082a861420fd92a312cfd8367e1514b7d12053ca48527c7","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"tr","translated":"worker {state}","updated_at":"2026-05-30T15:38:34.866Z"} {"cache_key":"98202f1f837636c6e5fd8955840cad75870946cf28f699991def2ea993609165","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"tr","translated":"Eskimiş","updated_at":"2026-06-17T14:15:34.754Z"} {"cache_key":"9860a243fd38c67d4bb47442de834dc41f3945dfec81dd928302f06f95b2aa1f","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"tr","translated":"Dağıtıcıyı dürt","updated_at":"2026-05-30T15:38:34.866Z"} +{"cache_key":"9926cd69761c6f50b4ed9f3d48ea36f44bfe53465ea168a4e097f38a9f8f224a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"tr","translated":"Kanallar","updated_at":"2026-07-10T02:26:48.666Z"} +{"cache_key":"9b5df24eb839b7149519d0da44049182212fed22be458916bf3b74792a907adb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"tr","translated":"Dikkat gerekiyor","updated_at":"2026-07-10T02:26:52.321Z"} {"cache_key":"9bee0cd109e508c63f759010f70c52d79a93178a89e20cb735ca75b66750da42","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapSub","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"A year in the reef — deeper red, busier claws.","text_hash":"906b1cb4b717da013c2b9d075676cbe9d381b56a3385c636a7d4154127e976e0","tgt_lang":"tr","translated":"Resifte bir yıl — kırmızı derinleştikçe kıskaçlar daha yoğun.","updated_at":"2026-07-09T11:28:03.876Z"} {"cache_key":"9c767b9135cc85609fd74808e0cc9445fe2cfd990d9443058661d92dcd06bac4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"tr","translated":"başarısız denemeler","updated_at":"2026-06-17T14:15:40.711Z"} {"cache_key":"9d289d734d6a8556a00bfdfec95caeb3c45c42ef0859045e10882836edd2e118","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"tr","translated":"{count} kart","updated_at":"2026-06-17T14:15:34.754Z"} {"cache_key":"9d4a25c59e40b583196e890c42eb1bb95d3a6f434b7beb333cbcbdc3aeaa552e","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"tr","translated":"Bağlantı eylemleri","updated_at":"2026-07-09T11:02:57.343Z"} {"cache_key":"9d716a0744760d4f1b9c10f33b35dcd56ff4f45f652ed615b12e4c408f76e28e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"tr","translated":"Oturum","updated_at":"2026-06-16T14:15:55.679Z"} {"cache_key":"9dac74b483c171a47f6b3cc0d3c9572a5d9d5dd2771bf15a3013f7cf49b5093e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"tr","translated":"Eşleştirme QR kodunun süresi doldu","updated_at":"2026-07-01T10:32:46.731Z"} +{"cache_key":"9e20bf919059c702224b36becc22e96d759b5787e59b5f4b9a53aaa340c8b56c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"tr","translated":"ClawHub","updated_at":"2026-07-10T02:26:40.262Z"} {"cache_key":"9ed64673e78da6b8b194fca6945ce32f5c14d39673e4dff2422002fb347b477c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"tr","translated":"Depolanmış","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"9ee768d5e90aa74e8beb4d7b399b8de97525853a430c93e4cf5bf36960e9cf40","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"tr","translated":"Not ekle","updated_at":"2026-06-16T14:15:44.904Z"} {"cache_key":"9f1e9bbf7356db37362e4bc64f675f28fb1b3041f0ab3f29238f5c850118766f","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"tr","translated":"Varsayılan Tarayıcıda Aç","updated_at":"2026-07-09T11:02:57.343Z"} @@ -213,39 +292,54 @@ {"cache_key":"a157c880e4c7a8ae55d40d95ff7c3c77aa4594416ebf7a3748faf16a771783b0","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"tr","translated":"{count} gün","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"a1811b9d4784b851c80ad3fee6ac76d04649aa621ca1520f0461a161ff3a6f4b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"tr","translated":"{group} için grup seçenekleri","updated_at":"2026-07-06T23:41:07.084Z"} {"cache_key":"a20bb3c897b5e16a531b2fc182037e739717a2da560962989a9942f98573b5e1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"tr","translated":"Oturum arşivi filtresi","updated_at":"2026-07-09T10:01:43.764Z"} -{"cache_key":"a2873160c4972db4583a3a23ae2c353db619cbde517eb5a945022bd6bc7758eb","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"tr","translated":"Sağa sabitle","updated_at":"2026-07-10T06:08:26.731Z"} +{"cache_key":"a605800b34e78ba16215bf3ed73894c76f6f5f4ebf243a07b73bce6ba77648c7","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"tr","translated":"Commit hash’i kopyalandı","updated_at":"2026-07-10T09:47:24.999Z"} {"cache_key":"a71493e86bf94e893a7a73754a70daab9c819359a232721a274e12062b0a3930","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"tr","translated":"Worktree'ler","updated_at":"2026-07-05T21:01:15.459Z"} -{"cache_key":"a73b0d76c357902ba5374dda322fba7b2be9cb783daa22843949e536611b0984","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"tr","translated":"Ara","updated_at":"2026-07-10T06:08:26.731Z"} {"cache_key":"a8a596df9e733218ba2f0fe1c9fe2e6615291eb296d1125ad3d3d0349be39878","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"tr","translated":"Yolu kopyala","updated_at":"2026-06-16T14:15:58.007Z"} {"cache_key":"a8c54cfb0d4ce72a2405b67a8d593e8f89fad4059119581354bdd2d6e0d4c029","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"tr","translated":"Bugün","updated_at":"2026-07-05T14:40:02.505Z"} {"cache_key":"a8e6f36bd4051376b626a805e26f950735401871b8346770ea7818f5eb577fb5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"tr","translated":"Gateway görevi","updated_at":"2026-06-16T14:15:38.462Z"} {"cache_key":"a9a413f7c44a239b71300979e535c46cef1176daa3a1004793995b25dec9d3c8","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"tr","translated":"Orkestrasyon","updated_at":"2026-05-30T15:38:34.866Z"} +{"cache_key":"aa23fe4ce1a7ff7d94378002de06fb3357a9aa31bc9773dc07dbd3133082a4ab","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"tr","translated":"{name} eklendi. Yeni ajan oturumları bunu hemen kullanabilir.","updated_at":"2026-07-10T05:22:25.491Z"} {"cache_key":"ab2830fe755f6834fb328183627a3f1005f663258f788e5c9f6444235eda1e42","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"tr","translated":"Oturum çalışma alanı özeti","updated_at":"2026-06-16T14:15:55.679Z"} {"cache_key":"ac4d586a485e0daa2f9f81350504b00c3ebff7558e928e325b0b8efb5a12f440","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"tr","translated":"{count} bağımlılık tamamlandı.","updated_at":"2026-06-16T14:15:44.904Z"} +{"cache_key":"ac53fbf8022438f328a0b9ef65c579f12485a6c2fe9be4446a6a0b049b8d1653","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"tr","translated":"Yüklü","updated_at":"2026-07-10T02:26:44.278Z"} +{"cache_key":"ac58e8aa98de8ddefff3836edbff29a6b066cebc371b1588688c3b19ca7638f9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"tr","translated":"Bir http(s) URL'si veya komut satırı girin.","updated_at":"2026-07-10T02:26:48.666Z"} {"cache_key":"acbf184463004227b7de6c67f48946333ed4de213cd5c6908fe9686210d2921e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"tr","translated":"Oturum başlıklarında ara","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"adc499ce22912c3e76e50f2c0b07c1dd96ab35c7c4b305e0886504bfb7cbc620","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"tr","translated":"Kenar Çubuğunda Aç","updated_at":"2026-07-09T11:02:57.343Z"} {"cache_key":"adc81a01197719ff0254dabf3ed035c1974c6136d64ded848dfde72d71f2bec2","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"tr","translated":"Ara sıra uğrar","updated_at":"2026-07-09T20:51:40.521Z"} {"cache_key":"addf38e908bc55b22a68fa78197055daae4b43a60eb90f2b3a53f292e337eccf","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"tr","translated":"Sıralama ölçütü","updated_at":"2026-07-06T23:41:07.084Z"} +{"cache_key":"adf78a9ac9406d611196379ecdf5b79a7b8628b5aae8290e20ffbfdebe78888f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"tr","translated":"Kaldırılıyor…","updated_at":"2026-07-10T02:26:52.321Z"} +{"cache_key":"ae32c206510b9243ccf03f91e38888624e868850d54f28cf3fa5f0b6caf6c41e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"tr","translated":"Eklenti kataloğu","updated_at":"2026-07-10T02:26:40.262Z"} {"cache_key":"ae3b206d7b7e3cde502931add2ca004a17f7c3e9f442dd2c4d383b95d1708314","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"tr","translated":"En son tamamlanan, başarısız olan ve iptal edilen görevler.","updated_at":"2026-07-09T21:53:28.317Z"} {"cache_key":"ae545453391754dc2f91e3c268f968cefab7d19c63288164fc90ba9b203f8919","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.actions","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Workspace file actions","text_hash":"461817d921bc7672e95fe4a3b23f4ac2a4a20e35b3d6eef3f02e8f5ba4201050","tgt_lang":"tr","translated":"Çalışma alanı dosya işlemleri","updated_at":"2026-06-16T14:15:55.679Z"} +{"cache_key":"af3263b7055a8e7167a9b0b051e3eb418ec7e5853f101ec20f404b2bc80840ce","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"tr","translated":"Control UI yapılandırması yenilenemedi: {error}","updated_at":"2026-07-10T02:26:56.133Z"} {"cache_key":"b00d79eaaaa8b82211090344f727f51a2ad50847519b800fdafd5c63f86a5310","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"tr","translated":"Bağlamın %{percent} kadarı kullanıldı ({used} / {context} token)","updated_at":"2026-07-09T07:06:27.135Z"} {"cache_key":"b0a1e2433c6758052f971414566fc03105ca1279a85dc17c1505c1c59f39b884","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"tr","translated":"Mesaj göndermek için bu oturumu geri yükleyin.","updated_at":"2026-07-02T14:30:28.149Z"} {"cache_key":"b0d6ae9c6dc3562c32584646a6fb8ad85898ae8dbf603d99cc4dca88c3a41275","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"tr","translated":"Başlıksız Codex oturumu","updated_at":"2026-07-09T10:01:43.764Z"} +{"cache_key":"b1d6e36870fb5780c183b1c7fd7892d64ca6487e2f647743098da08721da8452","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"tr","translated":"MCP sunucuları","updated_at":"2026-07-10T02:26:48.666Z"} +{"cache_key":"b1fc63cc672133b3b5e6d45537181c1362a3c85a384cff54a9ad6df6288308d1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"tr","translated":"İsteğe bağlı OpenClaw özelliği.","updated_at":"2026-07-10T02:26:52.321Z"} {"cache_key":"b235d401a489607a81e0258c27a6b8c90a96b8084f1dc67f71a01db3a4b35001","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"tr","translated":"En son çalıştırma token'ları","updated_at":"2026-07-05T10:16:19.859Z"} +{"cache_key":"b26ba14b6fbd0288cc58dd043cf3424039c5c75f2ef4c3a101639a84b857d219","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"tr","translated":"Aracınıza ek araçlar sağlamak için Model Context Protocol sunucularını bağlayın. Değişiklikler yeni aracı oturumlarına uygulanır.","updated_at":"2026-07-10T02:26:48.666Z"} {"cache_key":"b2ad7d572ab6d484f2cfad4587e03fbf3b04bdd48c8b7ee9e5cc9e0dd4a96337","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"tr","translated":"Mikrofon erişimi engellenmiş. Girişleri listelemek için tarayıcı site ayarlarında erişime izin verin.","updated_at":"2026-07-06T17:56:54.065Z"} +{"cache_key":"b2b6d375e4acffa3c41f41f5d1d9a3305725a84d48f5d20d773f9438b1664ddc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"tr","translated":"{name} yüklendi.","updated_at":"2026-07-10T02:26:56.133Z"} {"cache_key":"b61974a73e046e0114497527c6cd29771c2f76b47a056f7d4b9b703985d3a542","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"tr","translated":"Gelişmiş ayarlar yönetici erişimi gerektirir","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"b6a94889bce6967a6d4fb19be75cc3b42ff5952feb115061697297773621f8c3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"tr","translated":"Bağlam motorları","updated_at":"2026-07-10T02:26:48.666Z"} +{"cache_key":"b7bb0e554db8150fae81453efbe8322c8ac37993e62d1cbe0bd08e8c1c64cf7b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"tr","translated":"İptal","updated_at":"2026-07-10T02:26:52.321Z"} {"cache_key":"b80a2c2d6650f119da1885309febb8930fd59667e5d5430e78ac79aeb0e15ce9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"tr","translated":"Bağlamın ~%{percent} kadarı kullanıldı ({used} / {context} token, yaklaşık)","updated_at":"2026-07-09T07:40:42.523Z"} {"cache_key":"b882ff1e838c5f27ac8a67aaec2d5a30e12a106569a89fcf8f6e5376cd74f5af","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"tr","translated":"Yönetilen Worktree'ler","updated_at":"2026-07-05T21:01:15.459Z"} {"cache_key":"b8c051919e59e1f10e79b5504b2faecb8670691f9f0fa4f695f0c5ed5f3af693","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"tr","translated":"{count} istek","updated_at":"2026-07-06T06:40:15.357Z"} -{"cache_key":"b8e16d36f37677a19a84161d20de999da977446c86f04436003c0d814947ee15","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"tr","translated":"Istakoz sesleri","updated_at":"2026-07-10T04:50:25.947Z"} {"cache_key":"b8e6293eade783cfe454dff3a1020ad9e83645f720889c9b78b43c02e4cac099","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"tr","translated":"ayrıldı","updated_at":"2026-07-04T21:23:59.587Z"} {"cache_key":"b8f2bfa008fa7522401fcc41e779db8fc44c209cf2c6c2a006f8bb42efa761a9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"tr","translated":"Bağlı","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"b9a951c2c5fada6c247c5b74082c52859f3031dabfb1c1bc29e9bb428de83e31","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"tr","translated":"Grup","updated_at":"2026-07-05T14:40:02.505Z"} {"cache_key":"ba1a0eba2ee75c9c6d68c133f6c7f449371c0f9cdf26a9e815e6965a05bc693a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"tr","translated":"Codex oturumları yükleniyor…","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"bad777edcd94bd234973b61c9d5dc2dc85dd615d2cd5fa3b2c837a066ee68fe1","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"tr","translated":"Yönetilen worktree yok.","updated_at":"2026-07-05T21:01:15.459Z"} {"cache_key":"bb6d020ba6bac19fd8edea3182fbebdd5fb39f8daef4500f9416f93d8b9aa168","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.legendMore","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"More","text_hash":"d47d7cb0e4f8fd2be5ee07826694c18917d83ca77d0a01698582d05f432db996","tgt_lang":"tr","translated":"Daha fazla","updated_at":"2026-07-09T11:28:03.876Z"} +{"cache_key":"bbbb56c8e071e430aaaf6cace5f35c8bc47bb52ae6cca65de1ccae4bcb6cc0b8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"tr","translated":"Eklenti bulunamadı","updated_at":"2026-07-10T02:26:40.262Z"} +{"cache_key":"bbfaeebe2758c7e74f4b25d467a4742f149438314d67842053483a8182667389","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"tr","translated":"Eklenti Kimliği","updated_at":"2026-07-10T04:28:33.072Z"} {"cache_key":"bc58bb9489ab7e42f0cb9853119310847cb29bbfb65f7fdd3ec56a8a8590dc42","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changed","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Changed","text_hash":"2a6141e43be0c2125e3b5d9f74b4ff1261a0b320ff927c83d4d9b1b65585bad7","tgt_lang":"tr","translated":"Değiştirildi","updated_at":"2026-06-16T14:15:55.679Z"} +{"cache_key":"be0d6020887d84c6d8acb5833ff774b9da04b22bff6acbd26b56accc9f10ce79","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"tr","translated":"{name} kaldırıldı. Değişikliği uygulamak için Gateway yeniden başlatılmalıdır.","updated_at":"2026-07-10T02:26:52.321Z"} +{"cache_key":"be69e5b619b4f7c6c0c4545870f95f2ce5e2b9bb606387c0cc17c7426b0cfc5a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"tr","translated":"Henüz yapılandırılmış MCP sunucusu yok. Buradan bir tane ekleyin veya Keşfet’ten bir bağlayıcı seçin.","updated_at":"2026-07-10T02:26:48.666Z"} {"cache_key":"bed0ecfb1c19be6af0ab8c199bb318f522577f7458349378d88f07e12569ad90","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightMessages","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Messages exchanged","text_hash":"3e0eaa1c266dfdf2f9799c1f3c574da7533f63057934e0aa003eddabc517cfbe","tgt_lang":"tr","translated":"Alınıp verilen mesajlar","updated_at":"2026-07-09T11:28:06.616Z"} +{"cache_key":"c09638a9d862d2abd48d0e21491a28be0636e42b0db3385047eb470b7dac4039","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"tr","translated":"Ad","updated_at":"2026-07-05T21:01:15.459Z"} {"cache_key":"c2084fbeee0e59bf49eb0aa2794575580613627652a9beb5bbdd03e443903b81","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLongestSession","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Longest session","text_hash":"7f727c1b85939ac165087fe5c3081e15ca00c6e6a0c0b6f8c908ff21eda7a4f2","tgt_lang":"tr","translated":"En uzun oturum","updated_at":"2026-07-09T11:28:03.876Z"} {"cache_key":"c20fa853de92ab1d3691d3e8a983247af05267463454e8fc0f2ca43ae751671d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"tr","translated":"Eşleşen ilk dosyalar gösteriliyor. Sonuçları daraltmak için aramayı hassaslaştırın.","updated_at":"2026-06-16T14:15:55.679Z"} {"cache_key":"c2259c3bfec5787e5a1cd62de465c661dcaacb17a0ba20079bf25820d36dff63","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapCellTokens","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{tokens} tokens","text_hash":"507a17952dbcbb44f1b9ffff34ec5fc71563ca5d60c07c5fa9ab68339e462139","tgt_lang":"tr","translated":"{tokens} token","updated_at":"2026-07-09T11:28:03.876Z"} @@ -253,28 +347,38 @@ {"cache_key":"c2906c6259d5dec700a0d97dd6c94b9b17a843d5019f01fbec95cc6440207423","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"tr","translated":"Sıkışık kart yoğunluğu","updated_at":"2026-06-17T14:15:34.754Z"} {"cache_key":"c768e6a17eb50e509e53105db194c18493e694d7e5ff464863175c918c9e15f5","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.streakDays","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"tr","translated":"{count} gün","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"c8e5c11bc3b14b694aaaaee6256466a3078b4ec3153a30bb63f161a7ccaefea1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewBlocked","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Blocked","text_hash":"18f2a0947f9d6523991b29b450307f22773f57d65f7efb98d48a167df04d6b1d","tgt_lang":"tr","translated":"Engellendi","updated_at":"2026-06-17T14:15:34.754Z"} +{"cache_key":"c925f6025617330ecda627026bb224f57a978cf39508ede0f315c490f0a47558","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"tr","translated":"Kodlama ve altyapı","updated_at":"2026-07-10T05:22:25.491Z"} {"cache_key":"c98c03740098459302bd81344d19af43486479786bf07662face2a72434a8ace","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"tr","translated":"Arama sonuçları","updated_at":"2026-06-16T14:15:55.679Z"} {"cache_key":"c9de54ee87cf743f2f4e2b932e7564d548fe741e024c99beadcc0af05c5dc797","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"tr","translated":"Oturumu bir gruba taşı","updated_at":"2026-07-05T14:40:02.505Z"} -{"cache_key":"c9ec6ff4a1a7644820aae2b29ac17e0d63fc25e5112e05669a8197922b734f55","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"tr","translated":"Alta sabitle","updated_at":"2026-07-10T06:08:26.731Z"} {"cache_key":"c9fe5618f41fec3bf8e7e07838e0a40bbee41fe18295575cc77da6997cea7522","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"tr","translated":"Maliyet kategorileri","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"ca01d1aa0952de6c803f366cb405404702dcda8657a38049e719584ad0a8380b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"tr","translated":"Orta","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"ca6fbff519e3a9811741240fe6c8cff8c27bd676027d59a243bda34e0a2b1ca4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"tr","translated":"Yapılandırma kullanılamıyor; yenileyin ve tekrar deneyin.","updated_at":"2026-07-10T02:26:52.321Z"} +{"cache_key":"ca97b6b0b2369366f4d802d5c574cc9f3acea0821cd8aa80dc08ec98f518de4e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"tr","translated":"Tek tıkla MCP sunucusu","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"cb2062ad7c2713d59eb363a12521239e5267a72516c896509d017cb537b6daef","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"tr","translated":"Oturumu sabitle","updated_at":"2026-07-02T14:30:28.149Z"} {"cache_key":"cb393ab35f81444b9d33f8d6182a2fa053238e75a179a5d540c113774e694cd4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"tr","translated":"15sn","updated_at":"2026-06-17T14:15:40.711Z"} -{"cache_key":"cb5eb67d6f12c8130e3a88c8cea2aef14fe4bbeb115ca74c43a87dcb04ad6006","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"tr","translated":"Lobsterdex","updated_at":"2026-07-09T23:55:59.611Z"} {"cache_key":"cb8098bc575ec3cb3804ac943e22bc642e6d49309d932a2b2bd84c3c91b9f645","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"tr","translated":"Henüz operatör notu yok.","updated_at":"2026-06-16T14:15:44.904Z"} {"cache_key":"cdf91727cea6fee69a8d6d1cbc78ef14157a243ca56c078d16a70c76115abe4d","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"tr","translated":"Bağlantıyı Kopyala","updated_at":"2026-07-09T11:02:57.343Z"} {"cache_key":"ce0dea84f06e4f6f33c5895862388d4ab8c97b794ac8a1ea9b5bedefe45b84da","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"tr","translated":"Mikrofon girişi","updated_at":"2026-07-06T17:33:54.041Z"} {"cache_key":"ce0fee74eb15e48d1a90ac3db4907e6cb39b62575daa408cb2c9d4fe2051533e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"tr","translated":"Kanal","updated_at":"2026-07-05T14:40:02.505Z"} {"cache_key":"cf945f44bc75097cc776c137e5fc965a5be2dc89367ea8d2af1eb2fae637162c","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"tr","translated":"Eylemler","updated_at":"2026-07-05T21:01:15.459Z"} +{"cache_key":"d12c7f102aa2159b43b2a1195447237b18adf79c534f495e618bfd7f71df57af","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"tr","translated":"Kullanılamıyor","updated_at":"2026-07-10T02:26:56.132Z"} +{"cache_key":"d145dd802a821fa0f1a369066f7ff16109d041a773f9d2b0728b4a6900b44546","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"tr","translated":"Eklentiler","updated_at":"2026-07-10T02:26:40.262Z"} {"cache_key":"d152f805939b9482c98fb58e654d6c42b8fe4db66a425bbff3f2f276bdfe30cf","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"tr","translated":"Arşivlenmiş","updated_at":"2026-07-09T10:01:43.764Z"} +{"cache_key":"d17f829880d97a7e23edb8441261e939164377e156361ba8374aa296789b0cb3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"tr","translated":"OpenClaw'ı genişletmek için öne çıkan bir eklenti keşfedin veya ClawHub'da arama yapın.","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"d1c9c4f886bede28afcfb5e9b7d0f86a33d89ee82e339701460f83c88ba4c43a","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"tr","translated":"Ad","updated_at":"2026-07-05T21:01:15.459Z"} +{"cache_key":"d20c2f8e8b365bbb11ad0d3f93d46b0be7c8027c04da5463d49f2655d87cc8b1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"tr","translated":"Yüklü ve önerilen eklentilere göz atmak için bağlanın.","updated_at":"2026-07-10T02:26:52.321Z"} {"cache_key":"d3747bc35c921a3c10ffb58f269e16f5bed87b5f6b525f746ee73c42a9745d92","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"tr","translated":"Oturumu arşivle","updated_at":"2026-07-02T14:30:28.149Z"} {"cache_key":"d43e0cd1492b4a742ce8c3389a8ecc9b71f6cf21018918b22895c8d45d6e0745","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"tr","translated":"Tür","updated_at":"2026-07-05T14:40:02.505Z"} +{"cache_key":"d462c8be86f584174c6a40edb80670f8869fed86606e8c22393b99758c79ea7c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"tr","translated":"{name} eylemleri","updated_at":"2026-07-10T04:28:33.072Z"} +{"cache_key":"d48fba6fa7f536e0f6ee78d01b30c67b10cb9b9fb526410990055810a670ad92","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"tr","translated":"ClawHub'da bul","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"d618481593a9a70914841b5d18181903a0182c3538a0695b3e302f54f7801968","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"tr","translated":"Oturumları sırala","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"d61930eeb8f6873411a48d3b7e2a9c60fef44c18f8280639c77597aae11fbce2","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.streakDay","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} day","text_hash":"a4d254870473ab599749406cae968f3d24c7da6d9082093cf43ee4317175fd2d","tgt_lang":"tr","translated":"{count} gün","updated_at":"2026-07-09T11:28:03.876Z"} +{"cache_key":"d631f40282b348cbd61a23e578d0899de5f44e39e15f7a450e69a54b9fc361ae","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"tr","translated":"{name} eklendi. “{command}” ile kimlik doğrulaması yapın, ardından gateway'i yeniden başlatın.","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"d77357210ade7d4e3bbce6a0163e3ce8b2b18da90eee708d500394fb44ea57f6","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"tr","translated":"Bu sayfa etkin değilken mikrofon girişleri kullanılamaz.","updated_at":"2026-07-06T17:56:54.065Z"} {"cache_key":"d79bbaf7048dd0d002871dec455ba02f4f1f7c0675e58b70d5d9a34b5c41ec06","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.profile","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Your agent's stats, streaks, and life in the reef.","text_hash":"1fdc442e9cb9b6f4abdb44a4e6c4c304ab51c2dbe616e4c975add631108a4b28","tgt_lang":"tr","translated":"Ajanınızın istatistikleri, serileri ve resifteki yaşamı.","updated_at":"2026-07-09T11:28:03.876Z"} +{"cache_key":"d80a241f38b001a06e8407b7990380b47d49f3b94269902e598d68b38a2da047","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"tr","translated":"İlgilenilmesi gerekiyor","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"d846fe272cd52518fe04370e57c893e8a26cda79c469a2e3e84a174cab1851d6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"tr","translated":"Grubu yeniden adlandır…","updated_at":"2026-07-06T23:41:07.084Z"} +{"cache_key":"d89367b56bb13e731a9496c70fced58ec9a18b67c69840d92ba54ac0d1088036","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"tr","translated":"Ekle","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"da33b66cf6548364a04982d4c5b02d9af67697fdd14dbe38788ea49eaf18c88d","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"tr","translated":"7 gün","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"db4d6576cd4976ebcf18d7fbd999484ad8e5e2d75581c5d66b6ed243454f705a","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"tr","translated":"Sistem","updated_at":"2026-07-09T08:08:04.089Z"} {"cache_key":"db684d29adc2e12596a133ecd472681afdd3ff8ea4ed23ca9482e019b0a0aaf3","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"tr","translated":"{count} çıkış belirteci","updated_at":"2026-07-06T06:40:15.357Z"} @@ -284,40 +388,60 @@ {"cache_key":"dd34ba4eaba33ea13fa80bfead0f810ace102285deb1c555d44e0cd6fbcac4b8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"tr","translated":"Bu Gateway'deki ve oturumlarını paylaşan tüm bağlı bilgisayarlardaki Codex oturumlarının salt okunur görünümü.","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"dd6aab3b8f27c7c48c53a5d14bcf6c1c081cd460b1fbb91ffe54a1d17e78d5b3","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"tr","translated":"Depo","updated_at":"2026-07-05T21:01:15.459Z"} {"cache_key":"df28c20f2135ea21eb3e76bfe0230193c81d560a2ea0c63b84eb891e584434fc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"tr","translated":"Operatör notları","updated_at":"2026-06-16T14:15:38.462Z"} +{"cache_key":"df3b15534ae7082e2c5a939bc74751852c619659d7ed45ccdae0e0b139e40d0d","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"tr","translated":"Hakkında","updated_at":"2026-07-10T09:47:24.999Z"} +{"cache_key":"e0dc2b36d1bfc3de54179ac0649ab0944d0ffa62a784fd303dc131b701a0e169","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"tr","translated":"Yenile","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"e146357cd72b16fe76c6c9e683030cf37ad83efef9730690406cb4b9a5e199b5","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadingMore","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"tr","translated":"Yükleniyor…","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"e19f3630c9be3dab26172388bd6487f95887e96adb6e491203a79efb20b28248","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"tr","translated":"engellendi","updated_at":"2026-06-17T14:15:40.711Z"} {"cache_key":"e1d98506a23308af92305877947ff05a33927dbc25389e149cab7a17eb894d92","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"tr","translated":"Tarih","updated_at":"2026-07-05T14:40:02.505Z"} +{"cache_key":"e22ddf92f2927c591c0d83ff63db2b3845bc46637d393b668f477f4da82eaa7c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"tr","translated":"Etkin","updated_at":"2026-07-10T02:26:52.321Z"} {"cache_key":"e3ca75a603c24f83fb1f075167f718d00dbe2611757fe7a70369f537d9ef9f61","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"tr","translated":"Sabitlenmiş","updated_at":"2026-07-02T14:30:28.149Z"} +{"cache_key":"e4a2e0e8a800a498a8ca25f19e5207189a17199b124dc4d6ee836942e6aac54f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"tr","translated":"{name} devre dışı bırakıldı. Değişikliği uygulamak için Gateway yeniden başlatılmalıdır.","updated_at":"2026-07-10T02:26:56.133Z"} +{"cache_key":"e4d3e2ddf0a8dac55246ad3ef28a1a85764d928ac4658280cc9b0c39f4df5696","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"tr","translated":"{enabled} etkin, {disabled} devre dışı, {issues} sorunlu","updated_at":"2026-07-10T06:08:56.649Z"} {"cache_key":"e56806000a2d91a068122111f2e37f1053c82be101033d1f5a3a70300158c8c8","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"tr","translated":"Teklifleri canlı becerilere dönüşmeden önce gözden geçirin, iyileştirin ve uygulayın.","updated_at":"2026-05-31T21:48:30.961Z"} {"cache_key":"e57d32e76458f36c7b4b821a0a12afb3902b2ed61e5bf1bca504041d63cdcea2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"tr","translated":"{count} yapı","updated_at":"2026-06-16T14:15:55.679Z"} +{"cache_key":"e5e4b51437aad33ad5885c06c55971c0eca10bd238874f0f20d07115e4aed15d","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"tr","translated":"Kullanılamıyor","updated_at":"2026-07-10T02:26:56.132Z"} +{"cache_key":"e69393feceeafa75dcf9456d91044c48670d08fd8ce813cb9324416231b834a0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"tr","translated":"ClawHub'a göz at","updated_at":"2026-07-10T02:26:40.262Z"} {"cache_key":"e6d955856bb891dda15fefea2ce840f83e6e51a19e94c302d6ead0876b2599e5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"tr","translated":"Otomasyon","updated_at":"2026-06-16T14:15:38.462Z"} {"cache_key":"e7e16428fc9fb1fc9f990a4c8af91d541dacee223321c2fd48b962d2dc5a7b67","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLongestStreak","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Longest streak","text_hash":"49095cff1349a49e9b8672a0ef850d5bec7be2af58e803a0f17c41faf6753f39","tgt_lang":"tr","translated":"En uzun seri","updated_at":"2026-07-09T11:28:03.876Z"} +{"cache_key":"e7f10f08ff05f203f2ce3f5952270b83e6fa61768d6c59a9ea2cca160aa3f902","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"tr","translated":"Yüklü","updated_at":"2026-07-10T02:26:40.262Z"} +{"cache_key":"e8419c7778eb131b49785a521dcebe4e5a0f610db63badac825a8463304912ae","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"tr","translated":"Doğrulanmış kaynak","updated_at":"2026-07-10T02:26:52.321Z"} +{"cache_key":"e8b3834b267ccb7ae6921b83a9498514c2b805ce51f76ad27cfa8ff1edc7bd8b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"tr","translated":"Etkin","updated_at":"2026-07-10T02:26:44.278Z"} {"cache_key":"e97ef2970a9d7968038d3d57cc468185fe1887843bb4159013b2b5dce1a5eb46","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"tr","translated":"Русский (Rusça)","updated_at":"2026-06-26T21:43:35.090Z"} {"cache_key":"e9c5c600012848585c8da32f5d5d2b5f30dc53ae156fa6f327f91f710c3e64d7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"tr","translated":"Kiracı: {tenant}","updated_at":"2026-06-16T14:15:38.462Z"} {"cache_key":"ea0d1aaae64058b3994c2a516a2bc4f8c3b0210868459fd0a33d52efa28da621","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"tr","translated":"Bağlam penceresi","updated_at":"2026-07-05T10:16:19.859Z"} {"cache_key":"ea4a297c89f219e6e2cab955f543c2a17bd3d7839beee2f6897d18d325bb40d9","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.emptyTitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"A fresh shell","text_hash":"da0d613f0ec767755258b8a2c43bec5d305997daeca16068dc927fbda8194378","tgt_lang":"tr","translated":"Taze bir kabuk","updated_at":"2026-07-09T11:28:03.876Z"} {"cache_key":"ea9813d513769859f492b31040e1b8431f51edcfa243352b2093027e361e80ca","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.legendLess","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Less","text_hash":"ae5239ec63f28cd401ccd63e9f56e4ede8254a738a135ebcd33e844c18dd247f","tgt_lang":"tr","translated":"Daha az","updated_at":"2026-07-09T11:28:03.876Z"} {"cache_key":"eaa8338820ff1ee2d48719a4b881d13c98a90afaf64d1b4771d74fd0bcc2ea18","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"tr","translated":"Durum","updated_at":"2026-07-05T21:01:15.459Z"} +{"cache_key":"eb294ea96337069d38701610ab68191dfa2cb4967b34ab5a20482a9e8a57b2f3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"tr","translated":"Kod ve paket eklentilerini bulmak için en az iki karakter girin.","updated_at":"2026-07-10T02:26:40.262Z"} {"cache_key":"ecafbe1898c4caba421310853e57e38f33ddbf1e294a1b1a4a35b94ae2bdd47c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"tr","translated":"çevrimiçi","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"edd082955eb740a958ac0bc12398f9a4ce97be4eb1a2d311e9898434a86dc0d4","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolsTitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Most used tools","text_hash":"8bc3f9b213a6e4c632b3c09d45d7c373a07c75389ab5d6c17cc053352ea16847","tgt_lang":"tr","translated":"En çok kullanılan araçlar","updated_at":"2026-07-09T11:28:06.616Z"} {"cache_key":"ef076ed851ac04302da699a1cb853733152b535c91f035429a64dcbf6a7f0d9e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"tr","translated":"Kök","updated_at":"2026-06-16T14:15:55.679Z"} {"cache_key":"efa08e578bca0a9d95b888d1e705a3f9a52217aa93bf23b853eae16fdc18868e","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"tr","translated":"{count} giriş belirteci","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"f0a7a04b0f7ae959edd0746e81aa24fc5c01a3bc67e8d9b588037284b04d01c3","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropOpenHere","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Open here","text_hash":"b08e2fd2e872adcb575b305187b9db8482369325806953ce80190fc2dc1ab9fb","tgt_lang":"tr","translated":"Burada aç","updated_at":"2026-07-06T22:56:29.564Z"} {"cache_key":"f0aa575b9c8b229574dd918c574821d2cf1b52f60f014b88c2a556ddd3538639","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"tr","translated":"MCP","updated_at":"2026-05-31T05:36:46.292Z"} +{"cache_key":"f1cd93192f32bec6b671d14d210a29b0fe56fd1a054d036817b2dc609ccfa581","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"tr","translated":"Commit hash’i kopyalanıyor","updated_at":"2026-07-10T09:47:24.999Z"} {"cache_key":"f269e0584fa4c79357ebddf2841dd009af4e1512ff0ec8fafb7ef4f75c33a560","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"tr","translated":"Mikrofon {number}","updated_at":"2026-07-06T17:56:54.065Z"} {"cache_key":"f3eb09f69c1f31341c5bba3f15096d252ebb520a5df89b538135ebc3d83b6925","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"tr","translated":"Ek mikrofon bulunamadı","updated_at":"2026-07-06T17:33:54.041Z"} {"cache_key":"f4d469d442c1143c4f9b5aba43306949ea1b48c4bf9f54750cf8919fa27b6db6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"tr","translated":"Çalışıyor","updated_at":"2026-06-17T14:15:34.754Z"} +{"cache_key":"f520017d1513ba45e1a11c85a07fcff5a748fb106affc4503ad15072ceba54da","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"tr","translated":"{name} MCP sunucusu eklendi.","updated_at":"2026-07-10T02:26:48.666Z"} +{"cache_key":"f58609ad48d0fa8648f30aaf6578f6f2eaa302a86d47409468b2084a163a2647","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"tr","translated":"“{name}” adlı bir MCP sunucusu zaten var.","updated_at":"2026-07-10T02:26:48.666Z"} +{"cache_key":"f5b1a55e69bb8e11787b474c77318e003161c1fabe951dac52386c6c71bb5c9a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"tr","translated":"Bellek","updated_at":"2026-07-10T02:26:48.666Z"} {"cache_key":"f669b5a79963a0342470f6df5ad4d5d8c6ac39f96e794dba85d6c1698aad1470","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"tr","translated":"Mikrofonlar yükleniyor…","updated_at":"2026-07-06T17:33:54.041Z"} +{"cache_key":"f814e9b51604499a1827a8848d7fc2d7ed5aa48052cefc2ebcf664dae7fb5500","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"tr","translated":"Commit","updated_at":"2026-07-10T09:47:24.999Z"} {"cache_key":"f873120ccd2393e18cb9b0d7011697a61d22139abfb2310f0a25a33c9daab421","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"tr","translated":"Hazır","updated_at":"2026-06-17T14:15:34.754Z"} {"cache_key":"f925578192b9bea8cd41606f18b8a8b2c9eab17b78eb94ec59a4a209f9ada223","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"tr","translated":"Gerçek zamanlı sesli giriş, tarayıcı mikrofon erişimi gerektirir.","updated_at":"2026-07-06T22:42:17.218Z"} -{"cache_key":"f97a5bb82cdb8cedd9720c18d4bcdf6dc36a6c453ee68ec35b46a5b5d96c87fa","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"tr","translated":"{seen}/{total} ziyaret edildi","updated_at":"2026-07-09T23:55:59.611Z"} {"cache_key":"f9ed2d7b6191ac88c862c30f763ea14d327735f11d666a546f47373978962203","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"tr","translated":"Bu klasörde dosya yok.","updated_at":"2026-06-16T14:15:55.679Z"} +{"cache_key":"fac62eca56c761686a04153d0f81e993e2a6d35840e765d6dcfdb9bcdd8b500c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"tr","translated":"ClawHub'da ara","updated_at":"2026-07-10T02:26:40.262Z"} {"cache_key":"fae58301beb41fc8e613e252fd4eff0e230eee066e6a880052afb44a882fbf85","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightsTitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Activity insights","text_hash":"ba3b52a117285b5aada2567de5773c4141fd7d70a62b9b7afda8db8f9aebb40b","tgt_lang":"tr","translated":"Etkinlik içgörüleri","updated_at":"2026-07-09T11:28:03.876Z"} {"cache_key":"fae9b6cbc1a1b588e30ddbd2e7fdbb79f88e37369546a33c8ee9c052cfd8f126","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"tr","translated":"Kuyruğa alınmış ve çalışan arka plan işleri.","updated_at":"2026-07-09T21:53:28.317Z"} +{"cache_key":"fbf3206554300bce68cffc876cf472f7b632730dc788dd174f990895123beb60","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"tr","translated":"Kapat","updated_at":"2026-07-10T04:28:33.072Z"} +{"cache_key":"fbf7f82695345388d8073e7262eb058c20d26b0737640da18e785ef4ea6bd438","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"tr","translated":"ClawHub'da Ara","updated_at":"2026-07-10T02:26:40.262Z"} {"cache_key":"fd0999f79fb45a2011c1467e97048285e4fc608c7a8b4fc6d974f94ab81b25ba","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"tr","translated":"Eşleşen dosya yok.","updated_at":"2026-06-16T14:15:55.679Z"} {"cache_key":"fd45fa4985ecb3d17c3c52989775d7faf14dc71c5b6071dd3b44e063a2b4e70b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"tr","translated":"Etkin","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"fd9c787dce49f629de037ee325beed710c7ee7f0a889e824e18e7fd1a94f72d3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"tr","translated":"{count} değiştirildi","updated_at":"2026-06-16T14:15:55.679Z"} {"cache_key":"fdc117faa198572dfcf4d51b112bd7d36e4a827a7929ca7cfb4bb01bbd41b4b9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"tr","translated":"Konuşma","updated_at":"2026-07-09T10:01:43.764Z"} {"cache_key":"fdf32d5f0373197d502bb7d2ac21344a3f1cc49bc8d415984065cb69be6a0b35","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.sinceChip","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"In the reef since {date}","text_hash":"ded006c6417b781fc23bdac6fab292b69da412484cf516cfe8d6757551960dd7","tgt_lang":"tr","translated":"{date} tarihinden beri resifte","updated_at":"2026-07-09T11:28:03.876Z"} {"cache_key":"ff21331b12fc66ddfcdc7c2ffe20b5fc99863cc74142ed31fd36af430c2bf3a2","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"tr","translated":"Seçili mikrofon kullanılamıyor. Başka bir giriş veya Sistem varsayılanını seçin.","updated_at":"2026-07-06T17:56:54.065Z"} -{"cache_key":"ff9b11c5d946bf0b27b467801ed6692fe8ad28eb309a56f5510c3410e6d01843","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"tr","translated":"Sessiz","updated_at":"2026-07-10T04:50:25.947Z"} +{"cache_key":"ff2dbab24dc1f2c92ad2e82e36d4ced904d06e74b17122faadd7e722c0d7dba6","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"tr","translated":"İsteğe bağlı yetenekleri yükleyin ve yönetin.","updated_at":"2026-07-10T02:26:40.262Z"} +{"cache_key":"ff83d8bc264d616e7fe69a98c9d47d23c246b2a5b38a59700cc6be9427d5aa20","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"tr","translated":"Araçlar","updated_at":"2026-07-10T02:26:48.666Z"} +{"cache_key":"fff0c229196d65dfac689363ec8e661211e5c6c7d7facf5005e687898d3f5324","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/tr.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"tr","translated":"Günlük yaşam","updated_at":"2026-07-10T05:22:25.491Z"} diff --git a/ui/src/i18n/.i18n/uk.meta.json b/ui/src/i18n/.i18n/uk.meta.json index 5789a726747e..ababd6da5b47 100644 --- a/ui/src/i18n/.i18n/uk.meta.json +++ b/ui/src/i18n/.i18n/uk.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:26.870Z", + "generatedAt": "2026-07-10T09:47:29.026Z", "locale": "uk", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/uk.tm.jsonl b/ui/src/i18n/.i18n/uk.tm.jsonl index f94d2ea297ee..74675211f9bb 100644 --- a/ui/src/i18n/.i18n/uk.tm.jsonl +++ b/ui/src/i18n/.i18n/uk.tm.jsonl @@ -1,4 +1,3 @@ -{"cache_key":"00a2e4bcf48b9fa07461650efb6b07d1717c82e955140f8a34f0f07b6f57bb55","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"uk","translated":"Тихі булькання під час дотику","updated_at":"2026-07-10T04:50:29.079Z"} {"cache_key":"00edd8e52f20a670371b24130da387606cee9a2d20c543a34da2bb9cc7609442","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"uk","translated":"Артефактів: {count}","updated_at":"2026-06-16T14:16:00.845Z"} {"cache_key":"01a5e8d0d9237eb23d13f3103bf590502172eef0ad7dab6f423f105d7d97fbcb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"uk","translated":"Прочитано: {count}","updated_at":"2026-06-16T14:16:00.845Z"} {"cache_key":"01cc7542a2a47c666091c044cd378301750e7fc74e6fea423dc56e3421eb9231","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"uk","translated":"Можна відновити","updated_at":"2026-07-05T21:01:19.646Z"} @@ -9,6 +8,7 @@ {"cache_key":"04779b200523cd4325cef9eb4cb4c20e2f7a2b22c1734b1e902d83d6646c9c0d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"uk","translated":"Пошук сеансів Codex","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"066be83c24912e9deb86d673d64400afa7cd6fd89daf79700d8f747bef1c711b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"uk","translated":"Попередній перегляд","updated_at":"2026-06-16T14:16:03.477Z"} {"cache_key":"068532ef9881732e57bdafe9e31858c3cdc41d6b3f8005bef2d8394c52d02935","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"uk","translated":"7 днів","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"0731c308a52c91c58185f2ff5e07dc1473c57f2e0ebabef791ce72dde650cd9b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"uk","translated":"Конфігурація","updated_at":"2026-07-10T02:27:16.333Z"} {"cache_key":"0756c0f990395173125c2d1b57f27893ab6121c3a2cc6cfffe53b042bd3c4a8b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"uk","translated":"Підсумок сеансів Codex","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"07add817afa8bb6340995808db4ad538b3d64267268ee506371ffe3cb9e718f1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"uk","translated":"Невідомо","updated_at":"2026-06-16T14:15:46.702Z"} {"cache_key":"086d4476a8c365c9a98e4317261b84c49c26729dc480fef6d2573460f2f2ad7e","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightAgents","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Agents in the reef","text_hash":"050a0a3d70a5c89d65789f7983024ee9eb2539cee6c2e0b31677ac78b0cd3534","tgt_lang":"uk","translated":"Агенти в рифі","updated_at":"2026-07-09T11:28:14.349Z"} @@ -17,26 +17,35 @@ {"cache_key":"09294813dbb1acf17b1c08fd8a25144030b41a659e16b48be549cfa8ed083ea5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"uk","translated":"Батьківська папка","updated_at":"2026-06-16T14:16:00.845Z"} {"cache_key":"0a878dcf217a7c4e4f562b82e09033137e4c7e1cdc70c6c15ffb1c69c26439c0","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.emptyTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"A fresh shell","text_hash":"da0d613f0ec767755258b8a2c43bec5d305997daeca16068dc927fbda8194378","tgt_lang":"uk","translated":"Свіжа мушля","updated_at":"2026-07-09T11:28:11.730Z"} {"cache_key":"0af590eaa67b0be72f8f4dc06c29f6e40070add30142d985e6b3b52ca497a1e3","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"uk","translated":"Фільтр архіву сеансів","updated_at":"2026-07-09T10:01:43.750Z"} +{"cache_key":"0c1a71660cf022f48d7a9c7687e557ff54ca78cf5d54041fd945464feffdeb0a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"uk","translated":"Установлені","updated_at":"2026-07-10T02:27:01.624Z"} +{"cache_key":"0e40406997954a1c09d2fc0cef96ab6fcb92a4815a36471c8d13f5b598604747","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"uk","translated":"Робоча область","updated_at":"2026-06-16T14:15:46.702Z"} +{"cache_key":"0e63115637221de150789f21086f65b52025509ac82679d2d12a8ba34ae61c4d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"uk","translated":"Не встановлено жодних додаткових плагінів","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"0ee07cc11dd2865f8cbb213a3bd1ff5090cf79eb9aa0f7567639524e3aea71c4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"uk","translated":"Поки що немає нотаток оператора.","updated_at":"2026-06-16T14:15:46.702Z"} {"cache_key":"0f69d6d658f4d0deffc0c33aee381c276e95109b2d177ddaeb56287ad6569a0d","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.loading","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Diving for stats…","text_hash":"81a616d9c5f179db9a23f119bd752b6c0445a3e37bcc28e76eab97fd29da7c74","tgt_lang":"uk","translated":"Занурюємося по статистику…","updated_at":"2026-07-09T11:28:11.730Z"} {"cache_key":"10837b29e8b086f86bfe06bb6fe52ff30536ac329d213f4fd6efddf12ac6c18d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"uk","translated":"Примітка до мети","updated_at":"2026-05-29T21:01:33.548Z"} {"cache_key":"10a6e51ca4af33b667a37cc042577f7246be0d0a0707982e558eaeeea9438cd9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"uk","translated":"Сеанси на всіх ваших комп’ютерах","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"10d638f8a9f88a6cd23e8b27f662cd72eb398147ba87591a2f5d6079bdd14973","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"uk","translated":"Візити омара","updated_at":"2026-07-09T20:51:42.542Z"} {"cache_key":"112d36b2e2daa430e7df11c38006ca00e6568decf5b74e32d7a6294554aa3a13","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Token activity","text_hash":"05f1f9836e5173d8ab4539357cfa050c3ad480fc049ddc22cb8fb8ea437997e2","tgt_lang":"uk","translated":"Активність токенів","updated_at":"2026-07-09T11:28:11.730Z"} +{"cache_key":"1132aa17f1384ba30171509b0e24a52285f1cfa6cd2eb7ada8a72316703db242","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"uk","translated":"Робота й продуктивність","updated_at":"2026-07-10T05:22:28.951Z"} {"cache_key":"11726f225a6ce37ed071961cbdd873cf7e0af3c5d56ea53d898bc7d7b1ce34dd","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"uk","translated":"{count} журналів воркера","updated_at":"2026-05-30T15:38:37.442Z"} +{"cache_key":"11ab96d32eccaee6701b5e4ecf8b628acbaa4f020715742651887979b42e22a2","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"uk","translated":"Не вдалося скопіювати хеш коміту","updated_at":"2026-07-10T09:47:29.023Z"} {"cache_key":"1281033cf67a1005b0ac74f502f82a2f8020a77fcfc1bd0b47e1ba4ac22dc6d2","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightToolCalls","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Tool calls","text_hash":"da5122dc0f97b158bfbd27c5bd479322f34e0916a0cd4626d42c03bb0000e4b4","tgt_lang":"uk","translated":"Виклики інструментів","updated_at":"2026-07-09T11:28:14.349Z"} {"cache_key":"129712ca8b2f35edf17797b455502d169d5576220f577bc1e78925f3d9b9cd3a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"uk","translated":"виконується","updated_at":"2026-06-17T14:15:34.049Z"} {"cache_key":"12d771632bc3a005eb1221b9fddb63e9b29614594a05f2b50ac9376c6d85c469","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"uk","translated":"Висока","updated_at":"2026-07-06T20:20:02.809Z"} -{"cache_key":"12f77b47d3e39a4a3b856e83fd0167284c5c6e914d65c0d5351feecd1ff2f684","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"uk","translated":"Закріпити внизу","updated_at":"2026-07-10T06:08:30.131Z"} +{"cache_key":"1372e2f8b3e0338716a66ce0845c82695fa67ac8b0ccd936b684051a138fd720","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"uk","translated":"Лише перегляд. Цей Gateway не дозволяє змінювати плагіни.","updated_at":"2026-07-10T02:27:21.673Z"} {"cache_key":"13f6dfac45737157489b1e6c6f1164967bf75670b575cc037c9b9f73331ad897","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"uk","translated":"Стан дошки","updated_at":"2026-06-17T14:15:34.049Z"} {"cache_key":"140272022ad8aaee2fbf76729f0a7592fe5d4e8b0f0f712867d218fc67130c0e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"uk","translated":"Картки, явно призначені налаштованому агенту за замовчуванням.","updated_at":"2026-06-17T14:15:28.579Z"} {"cache_key":"1513c33429234f31ec56dd1eb24070853d1bf58505fc8b91659e8ecf5d0389e2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"uk","translated":"Команда","updated_at":"2026-06-16T14:16:03.477Z"} {"cache_key":"15b87fd09340483466e38a616a14261e643cd0c19153ac1c7f62aa4aac893440","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"uk","translated":"Автооновлення","updated_at":"2026-06-17T14:15:28.579Z"} +{"cache_key":"16fd9b1a26b9626b26dabd99522b37ed46efab996d6fbe34ede180fae50c6ff2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"uk","translated":"Видалити цей плагін?","updated_at":"2026-07-10T02:27:16.332Z"} {"cache_key":"177615511a905a257c9384059c5c3f808cc45d2d474c06a647f50785d974411b","model":"gpt-5","provider":"openai","segment_id":"usage.overview.costShare","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{percent}% of cost","text_hash":"1d0533da07d6ee21af9d1d02f4636bd9f70df239ad62388b0a415e550ee2de8b","tgt_lang":"uk","translated":"{percent}% витрат","updated_at":"2026-07-05T20:24:32.108Z"} +{"cache_key":"17da19e5038ad6479de638e69bf5447ec443d6473a4814eecdba4f0f20c2f296","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"uk","translated":"Установлено {name}.","updated_at":"2026-07-10T02:27:21.673Z"} {"cache_key":"1863eccce65faa23c536c113526be532e92a6edb16d55c87b0ec72f8f52f3592","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"uk","translated":"Завантаження робочої області сесії…","updated_at":"2026-06-16T14:15:46.702Z"} {"cache_key":"1894cd16a9a0aba0bf5c5ec173ab2ed7446b90b991cb81b2c275407cb5cee8ef","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"uk","translated":"Цей браузер не може показати список входів мікрофона.","updated_at":"2026-07-06T17:57:00.020Z"} {"cache_key":"189fd8178bacd43d243463163c0278cde5fa6f053e55829804cd78ade20bdda4","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"uk","translated":"На цьому хості немає активних сеансів.","updated_at":"2026-07-09T10:01:43.750Z"} +{"cache_key":"1ae1ae5f1cbf8ded2d05f8e8f1a05d48b22bf992b91cdc7c51c4abcf2a2cda87","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"uk","translated":"Вимкнено {name}.","updated_at":"2026-07-10T02:27:21.673Z"} {"cache_key":"1b29f6530acf2438455092719fd6ebb8443becbaadf2ad8a439a6bb09911e9db","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"uk","translated":"Сортувати за","updated_at":"2026-07-06T23:41:10.447Z"} +{"cache_key":"1c8aed34e169ff0d73fe5ce5c5946f65c9547d82c25061ddc3198485dfe20097","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"uk","translated":"Спробувати ще раз","updated_at":"2026-07-10T02:27:01.624Z"} {"cache_key":"1d49457e076c0ae68ddd18546f9145cc6a5df9e1b7599a0ce1a40fdcf6589d72","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"uk","translated":"Виконайте /pair qr знову, щоб згенерувати новий код налаштування.","updated_at":"2026-07-01T10:32:49.580Z"} {"cache_key":"1d76056a3e73552ab26da1f29dd3be3a700907c611d961b2db7edb93328c69a6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"uk","translated":"Поза мережею","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"1e744b260e7f3ddd372ff1c11e80faaff19db3c6ac8bdcead8aa7905412f51a5","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.profile","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Your agent's stats, streaks, and life in the reef.","text_hash":"1fdc442e9cb9b6f4abdb44a4e6c4c304ab51c2dbe616e4c975add631108a4b28","tgt_lang":"uk","translated":"Статистика, серії та життя вашого агента на рифі.","updated_at":"2026-07-09T11:28:11.730Z"} @@ -45,50 +54,72 @@ {"cache_key":"1fbfa017306461870a2476170bdf24b0fbcdd900f4b4bb1e7cf72bcc4b1e75ce","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"uk","translated":"Статус","updated_at":"2026-07-05T21:01:19.646Z"} {"cache_key":"20014c09ee4d9ceef2315bcab49cfae1f07e7bacb9f5716625a2a83cd3e7566c","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"uk","translated":"Дії з посиланням","updated_at":"2026-07-09T11:02:59.094Z"} {"cache_key":"20246255ee6a141cb3d3c4307639bf1ef0b3e5869f54927d24b82268a27de44e","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.open","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Open split view","text_hash":"51e50f7be73433216ae62f58fdbc586372f5a6063ee9978cec96793ef75fa554","tgt_lang":"uk","translated":"Відкрити розділений перегляд","updated_at":"2026-07-06T07:23:57.922Z"} +{"cache_key":"20554fc1f94a093cdf3ad2a6d125f570dd440ecb5410fc5ef15572211c785dcb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"uk","translated":"Спробуйте інший пошук.","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"20696fa9a8f677c6074e29f890cb6453202720d5210f666ce0f00b4fed1c3f7f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"uk","translated":"{parent} (відсутня)","updated_at":"2026-06-16T14:15:46.702Z"} {"cache_key":"20ca1c9d9f6087c562e62ca9482bcd389c9fdb75e8354992ede846966427982e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"uk","translated":"30 с","updated_at":"2026-06-17T14:15:34.049Z"} +{"cache_key":"21903edc660391f97de3555c68c91877856e505064e7dd00b3cfc09e9e83b50a","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"uk","translated":"Версія підключеного Gateway","updated_at":"2026-07-10T09:47:29.023Z"} +{"cache_key":"222a9b5d16f8468ebbc74db1770ea4386ff57a82851a74f754ac365e7f19a5f3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"uk","translated":"Дії для {name}","updated_at":"2026-07-10T04:28:39.229Z"} {"cache_key":"224792b40db38217659e7ea85c49af4a86c17532828ac5546ffd2d5cce4cfd02","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"uk","translated":"Вибраний мікрофон недоступний. Виберіть інший вхід або System default.","updated_at":"2026-07-06T17:57:00.020Z"} +{"cache_key":"228b3321439776a5d2a458641d1f3fed7a0d104f2cae5be9343f1f1d39769f66","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"uk","translated":"Категорія","updated_at":"2026-07-10T04:28:39.229Z"} +{"cache_key":"22a7919f9b29ef123309c2ad6a7149ef0563e4e54331a5cca417bd6b6c5a5f9c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"uk","translated":"Немає відповідників для огляду","updated_at":"2026-07-10T02:27:01.624Z"} {"cache_key":"232b9ace4c7c68794a9e0c0e21a578d7e476d44a0b5d84bf7af835b00fe56a9e","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"uk","translated":"Очистити зараз","updated_at":"2026-07-05T21:01:19.646Z"} +{"cache_key":"238c55767c435160d72f8f9a66643762360113ccd0b5e7a5009822a304d24ed1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"uk","translated":"Перевірене джерело","updated_at":"2026-07-10T02:27:16.332Z"} {"cache_key":"23fa5440c24c70faf78beea4be5dcab0f6259ad3e52553e23142294d993f2cdd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"uk","translated":"готово без виконавця","updated_at":"2026-06-17T14:15:34.049Z"} +{"cache_key":"23fbff51a1b28bbc5afa9850fa17f60831dcf43dd62247b8349437751d829b08","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"uk","translated":"Офіційний","updated_at":"2026-07-10T02:27:16.333Z"} {"cache_key":"249bcb622a87ce4ec986775b02c65eb97de0de1191ad92acaac8050c2437dbfa","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolRuns","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} runs","text_hash":"627a5f9e7cc0ba0f9bc65c55fb5e6421519e92d24f35dabffabb1eaf16aa750b","tgt_lang":"uk","translated":"{count} запусків","updated_at":"2026-07-09T11:28:14.349Z"} {"cache_key":"2519012c0cea071166893e4c6a972adf3275520ef6a57663eda83c311e650952","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"uk","translated":"{count} готово","updated_at":"2026-06-16T14:15:46.702Z"} {"cache_key":"260d72e8528bd863bd5a8a6939ca1162f744d843846172ee2fa2d9eb2e6520a8","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"uk","translated":"відʼєднано","updated_at":"2026-07-04T21:24:00.535Z"} {"cache_key":"26364b28c15045251ecb4aa93946b1174aba69a68ab2c26059c62e1f584112ad","model":"gpt-5.5","provider":"openai","segment_id":"connection.lostTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Gateway connection lost","text_hash":"ec6cd265976239ff6fc4f227bb25e8e6286fe38c3d1c64326dcdbb76c28b515e","tgt_lang":"uk","translated":"З’єднання з Gateway втрачено","updated_at":"2026-07-05T21:55:42.631Z"} {"cache_key":"272a1e10deff6d954fc51055a33a3ecce2b3722c0df7378c1359f16a9732b2ca","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"uk","translated":"Копіювати посилання","updated_at":"2026-07-09T11:02:59.094Z"} {"cache_key":"27e10e346e943b7426ee7ffd41d8fb351336bbe77546ebfaed88c94ef9dacf79","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"uk","translated":"Завдання Gateway","updated_at":"2026-06-16T14:15:40.204Z"} +{"cache_key":"27e84900b6ea8236950c010bee8a8f0e8fccc836a1457cea49602cfd4e49bd73","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"uk","translated":"Додано {name}. Перед використанням оновіть endpoint і облікові дані в налаштуваннях MCP.","updated_at":"2026-07-10T02:27:07.079Z"} +{"cache_key":"286b7c11564dfed2705c7af7dc1096b1e84e1bfd4a27b2da8fad81a743ccc9bf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"uk","translated":"ID плагіна","updated_at":"2026-07-10T04:28:39.229Z"} {"cache_key":"28d3b2dca887a72ef38765db37d00b8f657acb490d9bebf81cd915eb6f94fe16","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"uk","translated":"Додайте рішення, перешкоду або нотатку-доказ...","updated_at":"2026-06-16T14:15:46.702Z"} {"cache_key":"28e58806f9285d77eaeeb420bc366f8645c0ad65fc8634330dd38e8a07b94536","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"uk","translated":"Перемістити сеанс до групи","updated_at":"2026-07-05T14:40:05.415Z"} +{"cache_key":"290725898f150b7739e5827887a03652ddd982ab86587d1bdbc57d191923b810","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"uk","translated":"Повідомляється активним підключенням Gateway; окремо від цієї збірки Control UI.","updated_at":"2026-07-10T09:47:29.023Z"} +{"cache_key":"295ed1f7bbe7a6c43a7f91d95ed3d5a207736bdfd13e9bcd8f08107765cdb1f5","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"uk","translated":"Control UI","updated_at":"2026-07-10T09:47:29.023Z"} +{"cache_key":"2a06cd4cecbac98abb5db9946d1f2be26b737a92ef062b8e5894d3f5aa9a4794","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"uk","translated":"Додати","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"2a20e90dae2c33054affee9ab4d3c7f57af448195aef2c3150d0e4305c947e09","model":"gpt-5.5","provider":"openai","segment_id":"connection.reconnecting","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Reconnecting…","text_hash":"27b80374e1151af6df7824a358606c77502548bff4d467e4ae2e146801f601ce","tgt_lang":"uk","translated":"Повторне підключення…","updated_at":"2026-07-05T21:55:42.631Z"} {"cache_key":"2a64a67355d3b55752bc3391b1669cb51d4e4fd2be99da9ad911de7d0d12eb1c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"uk","translated":"Автоматизація","updated_at":"2026-06-16T14:15:40.204Z"} {"cache_key":"2a714d2c8d095a9d7c214b227badf96fae2778f8b04e8a3fe06ce3fcac246da6","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightSessions","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Sessions tracked","text_hash":"b1b77d34c51bc94340e818faacf7b2271593f409d75d7be9be7a5a12047775f0","tgt_lang":"uk","translated":"Відстежені сеанси","updated_at":"2026-07-09T11:28:14.349Z"} {"cache_key":"2a90d3e31e0c3febb2ef62202807f1bc84c73ce0e36ccc81f899b3d92dad37cf","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"uk","translated":"Закріпити сеанс","updated_at":"2026-07-02T14:30:30.852Z"} {"cache_key":"2ad1d6b474a6b4f2f781ad7c4d143bd6945744c3d9c7e567115725207f9415cb","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"uk","translated":"Відкрити на бічній панелі","updated_at":"2026-07-09T11:02:59.094Z"} +{"cache_key":"2c766fec3473be7c98d7ccd735c34ba491214ba97261dbd1addf10704790cfa4","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"uk","translated":"Хеш коміту скопійовано","updated_at":"2026-07-10T09:47:29.023Z"} {"cache_key":"2d3e2199f7d61bd472b4e492a183d91e6318d33d0cf57ba16854237db4058669","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"uk","translated":"Активний","updated_at":"2026-07-09T10:01:43.750Z"} +{"cache_key":"2d501fb028d33f0aca63a55f6784cfc6e0b752b1f5e1f5d53f2879e8b2cc00d3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"uk","translated":"У ClawHub немає результатів для “{query}”.","updated_at":"2026-07-10T02:27:01.624Z"} {"cache_key":"2d7406c2df89c36b38884f459eec6fa58c4ffca86a0b98344a592e4d39991791","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"uk","translated":"Надсилати запити на перегляд до поточної сесії чату замість сесії воркшопу пропозиції.","updated_at":"2026-06-16T14:15:40.204Z"} {"cache_key":"2db75831425c5fa5c029ea9a0faae90e8c3257d8716e16fdc4edaafbd3d0f0f0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.badge","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Expired","text_hash":"424a2551d356754c882d04ac16c63e6b50b80b159549d23231001f629455756e","tgt_lang":"uk","translated":"Застарів","updated_at":"2026-07-01T10:32:49.580Z"} {"cache_key":"2e0a51ddff386dfe620683652109c286aefdb6e826e21e64f90a093b0c76169e","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.selectedRange","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Selected Range","text_hash":"95917ae71066a19c266cd4530068f4bf775ed2401951ebf37ab0c91daa1a67d3","tgt_lang":"uk","translated":"Вибраний період","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"2e51cb8486042d9eca8d884cec07a90c4b79b7d3d5ea670cac65086476047721","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"uk","translated":"Розширені налаштування потребують прав адміністратора","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"2e5222277a2fc076147e6538945b689cbdcf992ef6393a23218217de47c3467c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityLow","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Low","text_hash":"f793de205ead5ac302c4a1627829dea41f176b1068b993a32373fc869918374b","tgt_lang":"uk","translated":"Низька","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"2f3b2059127889733c5a1fed32a4d537aa95fd3bee640678f55b1919405ecf31","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changed","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Changed","text_hash":"2a6141e43be0c2125e3b5d9f74b4ff1261a0b320ff927c83d4d9b1b65585bad7","tgt_lang":"uk","translated":"Змінено","updated_at":"2026-06-16T14:16:00.845Z"} +{"cache_key":"2f4ab35a648af6c595c082a9735bc493eca597c76a52843601f419719ad227ae","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"uk","translated":"Установлено {name}. Щоб застосувати зміну, потрібно перезапустити Gateway.","updated_at":"2026-07-10T02:27:21.673Z"} {"cache_key":"2f4cab93e4c8934a5b03ef38c60040286f855713eaac3e8a894eb61e1faf8880","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"uk","translated":"Видалити групу…","updated_at":"2026-07-06T23:41:10.447Z"} {"cache_key":"2fe98f28b9ba5b9bf164632812bd362f25b3012e277f5737c642acf1cabad821","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"uk","translated":"Копіювати шлях","updated_at":"2026-06-16T14:16:03.477Z"} {"cache_key":"30645e5290c1bae02b4ceabee0577b43d6e2d8921e006059098862b3ed086c6c","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"uk","translated":"Русский (російська)","updated_at":"2026-06-26T21:43:36.497Z"} +{"cache_key":"310aff9d584129cdf91e3cb95011895092954546e9deee64bf046775a3d3205b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"uk","translated":"Канали","updated_at":"2026-07-10T02:27:12.118Z"} +{"cache_key":"314f46c6397adddd36e5f82c970e7305b4b208af6e0ecd11cb49c4e1a69a6f56","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"uk","translated":"Копіювання хешу коміту","updated_at":"2026-07-10T09:47:29.023Z"} {"cache_key":"320094f52a8e02930f934e839ed6133607ff2c4a41d366fe411abd5742165945","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.toolsTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Most used tools","text_hash":"8bc3f9b213a6e4c632b3c09d45d7c373a07c75389ab5d6c17cc053352ea16847","tgt_lang":"uk","translated":"Найчастіше використовувані інструменти","updated_at":"2026-07-09T11:28:14.349Z"} {"cache_key":"32ac49cd2e946a825fd35e17566263c6dce47551b1415842aebe036512c3baeb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"uk","translated":"{count} заблоковано","updated_at":"2026-06-16T14:15:46.702Z"} {"cache_key":"334d8465ffb1a5486a7aba4247d69f29ea77d0f6fc99c3bfd4d339e8cff19277","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"uk","translated":"{count} вкладень","updated_at":"2026-05-30T15:38:37.442Z"} -{"cache_key":"33f7e9b1257f631d5f471291a79e6e8c0d9726462297d667b0bea70cacf82718","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"uk","translated":"Закріпити праворуч","updated_at":"2026-07-10T06:08:30.131Z"} +{"cache_key":"3522d95bbbb0d49b6d065efb1fc9c047655ffa473c002b7b51a7a909336d2dbe","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"uk","translated":"Пошук плагінів","updated_at":"2026-07-10T02:27:01.624Z"} +{"cache_key":"355d48007b27502383fcb0987584862b370b466fc4d2ebfcc218d163f699fcd7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"uk","translated":"Сервери MCP ще не налаштовано. Додайте один тут або виберіть конектор у Discover.","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"357405682ae22c398c266b95228d6cf94dece4b0c53723620b49ce46173558e3","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"uk","translated":"Використання контексту сеансу: {used} з {limit} ({pct}%)","updated_at":"2026-07-05T10:16:22.208Z"} +{"cache_key":"35a8b4e0ce18035b1efa43242ab3accc4b7e74cb2e5b6cb844fbfc200e64ee27","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"uk","translated":"Установлено","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"37451377e4cfea26a58ec80fed40c15b4e25346efd10c586bb460360a6de3acb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"uk","translated":"Показано перші відповідні файли. Уточніть пошук, щоб звузити результати.","updated_at":"2026-06-16T14:16:00.845Z"} +{"cache_key":"399c7f525845cb7ff01caf9f69c0d2d7d2bf701293115b03e55b49ab8b9f144f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"uk","translated":"Конфігурація недоступна; оновіть сторінку й повторіть спробу.","updated_at":"2026-07-10T02:27:16.332Z"} {"cache_key":"39dc1b65f0e2ba50192b7a8905451d383568b18e7d4f927a3b57676a66f7bc1e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"uk","translated":"Власні групи","updated_at":"2026-07-05T14:40:05.415Z"} {"cache_key":"3a51abedec6222bb386c77edeadcc2f894d07496bf67556a2727a728d5a76784","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"uk","translated":"Робочий простір: {workspace}","updated_at":"2026-06-16T14:15:40.204Z"} {"cache_key":"3b1a5b306e171d47cd6b9b4e3e0ba01abf56376b85fb5864b975229f7df31372","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"uk","translated":"Показано: {count}","updated_at":"2026-06-16T14:16:00.845Z"} {"cache_key":"3b320ebf5e479af151c73e241fc8a5bac858a01a1d0d5ae589b8243cf991ca00","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"uk","translated":"{count} год","updated_at":"2026-06-17T14:15:34.049Z"} +{"cache_key":"3b5538a046ab11599ffc876c895a6d6d2dbd339e2318b6276b3fd6eb234acca6","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"uk","translated":"Ідентифікаційні дані збірок Control UI і підключеного Gateway.","updated_at":"2026-07-10T09:47:29.023Z"} {"cache_key":"3b6b69c1870ecbaa1622f3bf8eef5b6f59e2be19a15924d74504a0cf9c73f204","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"uk","translated":"15 с","updated_at":"2026-06-17T14:15:34.049Z"} {"cache_key":"3c01132db76cdb46b9c289780d01068d6ff78071efed6d3ca5826de6a01ccb28","model":"gpt-5.5","provider":"openai","segment_id":"connection.retryNow","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Retry now","text_hash":"5148c3e20576923b589bd801ea84dc376213b82fbf8694f64437b621f1690615","tgt_lang":"uk","translated":"Повторити зараз","updated_at":"2026-07-05T21:55:42.631Z"} {"cache_key":"3c3ab5505a5e162da0add453189d0743be6e97b4beb2f24b270d8b0866d499ff","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitRight","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Split right","text_hash":"aa9997bb1d8c23d0b88521c4093fc8c3ee01b187f78635ae4d3e16d27e8a8475","tgt_lang":"uk","translated":"Розділити праворуч","updated_at":"2026-07-06T07:23:57.922Z"} {"cache_key":"3c652bf117dee819aaa82a407cd06b9c182e1602e2198cd4e373d6a15663b434","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"uk","translated":"Змініть подання, пошук, пріоритет, агента або фільтр архіву.","updated_at":"2026-06-17T14:15:34.049Z"} {"cache_key":"3d099de5d777c152274ab1c6c5b94f88120fd0c90ebe1b990d917c13241c4a29","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"uk","translated":"Заархівований","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"3ea9923832eae5bfe2ea1a9b97e7486707de3c2a5f25be966f0c59176444a294","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"uk","translated":"Збережений","updated_at":"2026-07-09T10:01:43.750Z"} +{"cache_key":"40f1aecfb5a42a790c7fcacc4433c8ddc172f80e70a3e85150ece2c20013b22f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"uk","translated":"Підтвердити ризик і встановити","updated_at":"2026-07-10T02:27:21.673Z"} {"cache_key":"41e02022b2a32b13928ee4f8490b6a25b1399bae6b3fb25601bd0bb5e84e5e64","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"uk","translated":"Залежностей виконано: {count}.","updated_at":"2026-06-16T14:15:46.702Z"} {"cache_key":"41f75b441d2c989f97d18602a39c0675106c0c561e17d3fb97f657e896679814","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"uk","translated":"Додати нотатку","updated_at":"2026-06-16T14:15:46.702Z"} {"cache_key":"42aea3c813b53ae6e98146661b56d5d3a6303d5f376012c0790c91a2cfea76b5","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"uk","translated":"Немає керованих worktrees.","updated_at":"2026-07-05T21:01:19.646Z"} @@ -98,6 +129,7 @@ {"cache_key":"45b00de5500d7335e7102043e7fd459bf783f1cdb24300c967ce13ea69b800de","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"uk","translated":"Не вдалося створити знімок: {error}\n\nВидалити без знімка?","updated_at":"2026-07-05T21:01:19.646Z"} {"cache_key":"46213d98c83dffa6cafe05a5f75efb3a3ededdaba594f51e48953bc03918c0f8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewAll","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"All cards","text_hash":"2306120917506b5998ec702f3661068b102dac538ba4c9e4634d65fe33eea98a","tgt_lang":"uk","translated":"Усі картки","updated_at":"2026-06-17T14:15:28.579Z"} {"cache_key":"462f50f656541c6bd4179de4ef2c9e19d4a53ecacb7e367e0ff14e152a7284d2","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"uk","translated":"Заархівовані","updated_at":"2026-07-09T10:01:43.750Z"} +{"cache_key":"468cf3b7814a11760023865643100d1e53b3ea8d4c065c41916596b0306bae8e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"uk","translated":"Каталог плагінів","updated_at":"2026-07-10T02:27:01.624Z"} {"cache_key":"46aad310a2de7062f11ddc7fa83220063edfd50d44b4549124ca7154009de605","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"uk","translated":"На цьому хості немає архівних сеансів.","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"47643f7a23c41a4ede64b9cceb58e52fcd4a2795ef6cd46ba2a8df4b4891f0c9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"uk","translated":"Сеанс Codex без назви","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"47d7f205762ed1c71a222c7504eb78bcab868f9c092a4a4d6c3a98da0b36c821","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"uk","translated":"У цій сесії ще не змінено жодного файлу","updated_at":"2026-06-16T14:15:46.702Z"} @@ -106,7 +138,8 @@ {"cache_key":"48fe646cdc749b15c07ee2a192df66a5d5767bfe6ad93d633edcfc7739db21e6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"uk","translated":"Підсумок робочого простору сесії","updated_at":"2026-06-16T14:16:00.845Z"} {"cache_key":"491b967d69699df3bd98661c71c1d2bfa0e225594f1a22aadaad6d35054d77c0","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.title","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Cost Windows","text_hash":"d085ca9b7dffb14e13dd359e697260f29a1201cc065356abc06b7e3ed3fafd64","tgt_lang":"uk","translated":"Періоди витрат","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"49b299c01d3d644300e2c2ec3d528c03adfaabf043f769206fa53406b785f244","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"uk","translated":"Найпопулярніші моделі","updated_at":"2026-07-06T06:40:15.357Z"} -{"cache_key":"4a1645e410f8f7ca6292dbd3d15d8d8ee035a3b1de3217629f01415fce7146b4","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"uk","translated":"Звуки омара","updated_at":"2026-07-10T04:50:29.079Z"} +{"cache_key":"4a1bfd011efeed8b14c14c8a760f597b370f493501a46fcc1d5252e88580f625","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"uk","translated":"Немає збігів серед установлених плагінів","updated_at":"2026-07-10T02:27:07.079Z"} +{"cache_key":"4a1cf20c934d5de9708a75345c919fecccbdba06c277fa0aa230907344eb90a5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"uk","translated":"Налаштування MCP","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"4a45bc11cd141e03ff649e444de79bbcc90d7f8fd9262ec8881675f9189b7853","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"uk","translated":"Щоденні витрати провайдера","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"4b938b2d3fbf74b6b585214d1423e071ae92d00addb023e293ea1b02bbae13be","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"uk","translated":"Немає відповідних файлів.","updated_at":"2026-06-16T14:16:00.845Z"} {"cache_key":"4c919ee1e036eec4d4bf16562033410702df2b45dd73607edbf204b7e5cf9f9f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"uk","translated":"Автоматично","updated_at":"2026-07-06T20:20:02.809Z"} @@ -116,8 +149,14 @@ {"cache_key":"4e4302d24c153cb8ca6f6911b0c12a7d0f719d41930a583f7c242d01402a7646","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"uk","translated":"Голос","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"4f81a69bf5454ac49094447a6980d4ccdea47eb572556ce3d00cdffb00b41a2a","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"uk","translated":"Ніколи не заходить","updated_at":"2026-07-09T20:51:42.542Z"} {"cache_key":"505a0f6168073cf8731dbdccc06dbdb7a2e812a34546bddbaad767331a52f334","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"uk","translated":"Готово","updated_at":"2026-06-17T14:15:28.579Z"} +{"cache_key":"509ebeb02ffc4fc879e139f9e760b6af7eb219e6f1bc7adfd20d39071058288a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"uk","translated":"Увімкнути {name}","updated_at":"2026-07-10T02:27:21.673Z"} +{"cache_key":"50fc1771fdb2b9844f1bf542bf26dea8910ec3895949f9449356fa8a07b4c351","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"uk","translated":"Увімкнено","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"515c897cbc68f1b188781f0f3a3863e99200c1fc664ebe9c1e48da6f435f318e","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"uk","translated":"Помилка інструмента","updated_at":"2026-05-31T06:44:01.957Z"} +{"cache_key":"519b23f4ac9ceb0d91a3614abc2bc4bbc51d8e760aa38682e67d1aed2b5b27e4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"uk","translated":"Плагіни спільноти на ClawHub","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"51a639e1f8ff509f668d9ecbad395b86eddbc7dceaffbe9c8853be038c6d1a41","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"uk","translated":"Орендар: {tenant}","updated_at":"2026-06-16T14:15:40.204Z"} +{"cache_key":"51c4d6858d6d050de039de0b10d506945ae5b6edc61343706319a662498f3fac","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"uk","translated":"Лише перегляд. Для змін плагінів потрібен доступ operator.admin.","updated_at":"2026-07-10T02:27:21.673Z"} +{"cache_key":"5233c55970e3a9f9f88aa7daf73e74f9af72af68d8d97fc8bf76a6658f05417f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"uk","translated":"Вимкнено {name}. Щоб застосувати зміну, потрібно перезапустити Gateway.","updated_at":"2026-07-10T02:27:21.673Z"} +{"cache_key":"525276307d1aaa2a839993d90ea027f4781c09fbbfe61a180621fa4ec57856e0","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"uk","translated":"Про застосунок","updated_at":"2026-07-10T09:47:29.023Z"} {"cache_key":"52e462a22d8c584a0c944d85a88555926caa21f743762ba438c7f45a99de9610","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"uk","translated":"хости","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"53e54d3277a433db07b6074cdd3165fe0c8ab060f4227de717e20b953321e90f","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.streakDay","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} day","text_hash":"a4d254870473ab599749406cae968f3d24c7da6d9082093cf43ee4317175fd2d","tgt_lang":"uk","translated":"{count} день","updated_at":"2026-07-09T11:28:11.730Z"} {"cache_key":"542ad3659d8b29e509956deca18c1318aeebbd0e11e765fd0d670dd7973ef3b4","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.channelChipTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{tokens} tokens on this channel","text_hash":"2f961c917719fceaa0b9fd222ea8590637986dce227e23deeeaf63b6cf11e9f8","tgt_lang":"uk","translated":"{tokens} токенів у цьому каналі","updated_at":"2026-07-09T11:28:11.730Z"} @@ -128,6 +167,8 @@ {"cache_key":"5650aec49b795683d992d922dcb3653ed2310c0f078011cf80389e43f7744872","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"uk","translated":"Перейменувати групу…","updated_at":"2026-07-06T23:41:10.447Z"} {"cache_key":"575ed755e675c34b9496f28c757f269b99fa08f5770cba064107a48fdc79f49d","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"uk","translated":"Мікрофон {number}","updated_at":"2026-07-06T17:57:00.020Z"} {"cache_key":"57603e7ac7b88a5ac759867f20139904deb2b569d9e06840176b93bc589c003a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"uk","translated":"Закріплено","updated_at":"2026-07-02T14:30:30.852Z"} +{"cache_key":"58702ae6185dc5df401365621b2c4c0515db3ee891fe39ab4f3eb62fbc506a9c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"uk","translated":"Кодування й інфраструктура","updated_at":"2026-07-10T05:22:28.951Z"} +{"cache_key":"58b1636d430311aea1a998be8e77fc2dfc0b4d823694cc5c98af0676e8e3f303","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"uk","translated":"Рушії контексту","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"598e4accc0b70ad9e4a44716b32eedc77c86f4532738f32a4dbf4cbe7db8ae49","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLifetimeTokens","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Lifetime tokens","text_hash":"3d7b0d3aa231e0a255b58b67aa9eeb2b921b19ce9aa983bb867d7b7cf3e16ce9","tgt_lang":"uk","translated":"Токени за весь час","updated_at":"2026-07-09T11:28:11.730Z"} {"cache_key":"59f2fc8d806554f713380760a9c50315f61ce34a382b51803adab5e475e2f36b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"uk","translated":"Перегляд","updated_at":"2026-06-17T14:15:28.579Z"} {"cache_key":"5a941fd700a454d3619c127a2729eea201880488b8b2400275ab6949bbace71f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"uk","translated":"Жодна картка не відповідає цьому поданню","updated_at":"2026-06-17T14:15:34.049Z"} @@ -136,30 +177,43 @@ {"cache_key":"5b1945fedef0a6e4fb58ad96fa2d7dd3c1fc832f0397c12298e17461c6060ab9","model":"gpt-5.5","provider":"openai","segment_id":"tabs.profile","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Profile","text_hash":"d696a35bdd1883da07a8d6c41bb7a3153381b23aa197629ee273479a6eaa5a9c","tgt_lang":"uk","translated":"Профіль","updated_at":"2026-07-09T11:28:11.730Z"} {"cache_key":"5cea58e2ef58e31febcfa16d55dbee9226ddedecc2612a4217ae148c159dd4b0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"uk","translated":"Виконується","updated_at":"2026-06-17T14:15:28.579Z"} {"cache_key":"5e25a72a47f50dd7bfd99923eb752ee9aca48e81d56353f899421193725ab022","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.heatmapCellTokens","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{tokens} tokens","text_hash":"507a17952dbcbb44f1b9ffff34ec5fc71563ca5d60c07c5fa9ab68339e462139","tgt_lang":"uk","translated":"{tokens} токенів","updated_at":"2026-07-09T11:28:11.730Z"} +{"cache_key":"5f8c15fb5561ed5613e8c104e11ef0e61a193f93c3fbe60d3cb23810b935efec","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"uk","translated":"Введіть http(s) URL або командний рядок.","updated_at":"2026-07-10T02:27:12.118Z"} +{"cache_key":"60b47cef6b08140c1d9a2838afd4f43476824d26b121a988715bdd5305f542de","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"uk","translated":"Увімкнено","updated_at":"2026-07-10T02:27:16.333Z"} {"cache_key":"61f20a4d42aeab7cf650eaa2054942b8a90cef345436454dee7cd5a9b9519c5b","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"uk","translated":"Голосовий ввід у реальному часі потребує доступу до мікрофона браузера.","updated_at":"2026-07-06T22:42:20.080Z"} {"cache_key":"62f234669bbe6ccb59ee316fbb10772c2b7696fc3c7d6e3ebd8436c24c03648a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"uk","translated":"Запуск","updated_at":"2026-06-16T14:15:40.204Z"} {"cache_key":"6309fed2305ec96850c4d67e24950add0663cc9a39a4f36c6c81051c1e64b0ab","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"uk","translated":"Перейменувати групу","updated_at":"2026-07-06T23:41:10.447Z"} +{"cache_key":"632978983067bee7a03d8d92b884a8fdc9dfb72165b56fff17a3a9b18dfdbb42","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"uk","translated":"MCP-сервери","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"63e2026f39986f216a8604a8fb3f0af22487e6341b375f17fce83a3b740b7f16","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"uk","translated":"{agent} (не налаштовано)","updated_at":"2026-06-17T14:15:28.579Z"} {"cache_key":"6479797962ca463d96e393509d3541494ec6e2f18b6c9f2020ad69a3969a2b94","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.legendMore","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"More","text_hash":"d47d7cb0e4f8fd2be5ee07826694c18917d83ca77d0a01698582d05f432db996","tgt_lang":"uk","translated":"Більше","updated_at":"2026-07-09T11:28:11.730Z"} +{"cache_key":"64c7ada3c0e410976de36582f4bf48a611a9774ec30f913a1508d4b6034bf77f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"uk","translated":"Підключіться до Gateway, щоб змінювати плагіни.","updated_at":"2026-07-10T02:27:21.673Z"} +{"cache_key":"6516133e14370ec0dd8fb323b60fe20a476d51ba7038a9eca8e0c104443d189b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"uk","translated":"Доступно","updated_at":"2026-07-10T02:27:16.333Z"} {"cache_key":"65c1af12232489ea2562413c1eb4ecf9d8efd92aedd4689e3ea4f11f6659fcdf","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"uk","translated":"Репозиторій","updated_at":"2026-07-05T21:01:19.646Z"} {"cache_key":"6682190b1c68c0eb6c704301282600ef33faccbf1d626e096eefed20efece49c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"uk","translated":"Сеанси Codex на цьому Gateway й усіх підключених комп’ютерах зі спільним доступом. Лише для читання.","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"669ec2776a910df0e2864c77588015f49e983aec710f8b71b5541f114d3a858c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"uk","translated":"Переглянути деталі","updated_at":"2026-06-16T14:15:40.204Z"} +{"cache_key":"674e3d58531b9222f309ca936995bb7ea4243befd3c73490418f0a1c4917708e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"uk","translated":"Увімкнено {name}.","updated_at":"2026-07-10T02:27:21.673Z"} {"cache_key":"69cd10b17020223461a10c9f4cb3fbc6e7ba6b8b9a8962aaceb27d0aeb400c44","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"uk","translated":"Агенти й інструменти","updated_at":"2026-07-09T08:08:05.838Z"} +{"cache_key":"6aa64b70d2dc09381c3cbf1867905a24dad33f5dbdb7cb40834130917315f78d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"uk","translated":"Джерело","updated_at":"2026-07-10T04:28:39.229Z"} {"cache_key":"6acc4dec8336c2a17bcb8272623e8700219df098f273c3230280456e2fe97da0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"uk","translated":"{count} карток","updated_at":"2026-06-17T14:15:28.579Z"} {"cache_key":"6b12d258b8368a58d2a4a3c79c017c428bdafafac61ab86df2281d4b6f1676f5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"uk","translated":"Картки без явно вказаного агента.","updated_at":"2026-06-17T14:15:28.579Z"} +{"cache_key":"6dae5640ff4e141226482bc79674c8be10890ec0d3abc7689561e1b7e22b56f7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"uk","translated":"Переглянути деталі","updated_at":"2026-06-16T14:15:40.204Z"} {"cache_key":"6dcf64414685c3402c8c72b45c0191347e7ae29d31b1a87f71499f513e6070d2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"uk","translated":"Діагностика","updated_at":"2026-06-16T14:15:40.204Z"} {"cache_key":"6deb0364ef7fc99326c2313eb24da4f8cd03282d6ec1111703c9954f6bfc2ef1","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"uk","translated":"Канал","updated_at":"2026-07-05T14:40:05.415Z"} {"cache_key":"6deb510045453ccb641e6f4424ba19d115e46e2f3e9ae4e8231d329a0899629a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"uk","translated":"Нотатки оператора","updated_at":"2026-06-16T14:15:40.204Z"} +{"cache_key":"6ef5e214fedff88234a96d27aa1b622661d4909e3763ab0a48ec79ede71c21be","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"uk","translated":"Видалити {name}","updated_at":"2026-07-10T02:27:16.332Z"} {"cache_key":"7051b77c8db225d7392b50952bd64c33b9d5deaa85e3cfb2a16f87f3f196624a","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"uk","translated":"Планувальник","updated_at":"2026-07-09T21:53:30.529Z"} {"cache_key":"70c593e0ceaa4089d000f98ae6b2fc8b78178c0562fd78e7d9155d8fabe551bb","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"uk","translated":"Увімкніть спільний доступ до сеансів Codex на Gateway або спареному комп’ютері, а потім оновіть цю сторінку.","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"71dfca605cd5cdb7d994f40e7ef8f98e2c8f19c754744f8e971e89cd324654cb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"uk","translated":"Змінено: {count}","updated_at":"2026-06-16T14:16:00.845Z"} {"cache_key":"7244fa211e75153821b796f18200426d60a930f9ace8558d300ddbd3e3bc6895","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"uk","translated":"Файли проєкту","updated_at":"2026-06-16T14:16:00.845Z"} {"cache_key":"725a64f4ee6bce0f9a75159ddf9335f2ccbb78c7868fe68c048016d95cebef67","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"uk","translated":"Шлях до робочого простору","updated_at":"2026-06-16T14:16:00.845Z"} +{"cache_key":"72e7fb7c5bb1555a56bd8bfa5d31a866c408768265bf5016c4caa02c76b989f1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"uk","translated":"Видалення…","updated_at":"2026-07-10T02:27:16.332Z"} +{"cache_key":"72f459fedb437089536bf31562a883070fdc3ddcac990c1e0b9f657b9637330a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"uk","translated":"Офіційні плагіни","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"737aabdb5c0440c77409f986ef3d3b8e74f09859d54330a3b65338d0ef39c6b3","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"uk","translated":"Дата","updated_at":"2026-07-05T14:40:05.415Z"} {"cache_key":"73feda41fcdab37c4006a8e83456de817a15d908af0d4a5cfc54e44930b2fb8e","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"uk","translated":"Відкрити у браузері за замовчуванням","updated_at":"2026-07-09T11:02:59.094Z"} {"cache_key":"741b7e70ba8f39fd43e769b8970e8507c2a6c4d87f68de536e336eddc6654025","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"uk","translated":"Результати пошуку","updated_at":"2026-06-16T14:16:00.845Z"} +{"cache_key":"7483f8cf1f9879c4e9dd5079792329d9e9237f1a74ed3509a38c8c7af54ea036","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"uk","translated":"ClawHub","updated_at":"2026-07-10T02:27:01.624Z"} {"cache_key":"749323720dfa55de96dd4579c8681bf005cc3b1edeb39cc15e7435ddf8d5f273","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"uk","translated":"MCP-сервери, автентифікація, інструменти та діагностика.","updated_at":"2026-05-31T05:36:47.622Z"} {"cache_key":"753ab725b9a36435a5c40dd67658203ce5fc685a847f5c63ad4f7b56a60446bb","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"uk","translated":"{count} запитів","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"7577e6add007f77d81fdf6bd994b9f07b95c5534ae957768dd3f0375abef62b6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"uk","translated":"Видалено MCP-сервер {name}.","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"75de8176be7ac619c50303a01328e720545b60ead458de4833d315a1c5aa46e4","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"uk","translated":"{count} кешованих токенів","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"76026d42ee0db8392a42726b85654f1af9d738fd317e86e7c718c0f8f945b14e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"uk","translated":"Не вдалося оновити","updated_at":"2026-06-17T14:15:34.049Z"} {"cache_key":"7761243eead223b99330e8d63607f3af8e62dfefa1bfc0078be4dc1b898875d7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"uk","translated":"Чутливість","updated_at":"2026-07-06T20:20:02.809Z"} @@ -168,67 +222,92 @@ {"cache_key":"78e6166f3093d8e29e122f9935171ae71316418e3b4c5dca28db5fe2203d497b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"uk","translated":"Застарілі","updated_at":"2026-06-17T14:15:28.579Z"} {"cache_key":"7934b54a812ea723254edb27c4d10478e6cc69fd4f261edfb9590ce0cbf19ac0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"uk","translated":"Повторно підключіться до Gateway, щоб оновити сеанси Codex.","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"799830ce1a506de14f16f92b06448f5c8acb8694ea1e047f03ef2610c58c3a9f","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statPeakDay","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Peak day","text_hash":"c3a0833ac4b7cd06e29368f323fef10520637658605aa35de342df7bac6357f1","tgt_lang":"uk","translated":"Піковий день","updated_at":"2026-07-09T11:28:11.730Z"} +{"cache_key":"7b59cbee264592375748ab0d01de5aa28ae11e20286d554204288323946891fe","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"uk","translated":"Закрити","updated_at":"2026-07-10T04:28:39.229Z"} {"cache_key":"7c5898ac6a215b61e29114bb5aaaf0c57109a837e023ae50e156967a39f68eaa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"uk","translated":"Закрити помилку Talk","updated_at":"2026-06-16T14:15:46.702Z"} +{"cache_key":"7c8b90234652fa24a72f398a288a5beca78418f5f5595cb081014116420b8791","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"uk","translated":"Плагін коду","updated_at":"2026-07-10T02:27:16.333Z"} {"cache_key":"7cfb54be1c2577cbf8b76023f230fb154612dfb0a57ed67c2b187e51a31964d3","model":"gpt-5.5","provider":"openai","segment_id":"languages.hi","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"हिन्दी (Hindi)","text_hash":"fab2abfce45382f3031c59477017700a8cb5dfaf8d15379dc24304809b97c7d5","tgt_lang":"uk","translated":"हिन्दी (гінді)","updated_at":"2026-06-26T21:43:36.497Z"} {"cache_key":"7e10a9df2f0af32936b89801413b790ad9cd1f4437d0459edef2592dbd70f624","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"uk","translated":"Входи мікрофона недоступні, поки ця сторінка неактивна.","updated_at":"2026-07-06T17:57:00.020Z"} +{"cache_key":"7ea3eb52023dcc505169ee4bff0a39a21eafc732a0bd20b9ad2bf190ed13019b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"uk","translated":"Додано","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"7ec1209880e73d718b0c91137f12e38520a0c56327ab469e635da3981e99af3c","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitDown","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Split down","text_hash":"8730b89df7caaf5b5090f9b7365a0a03e0a13d9682dc6418f556b8a676d9e98f","tgt_lang":"uk","translated":"Розділити вниз","updated_at":"2026-07-06T07:23:57.922Z"} {"cache_key":"7edfc82f94fd84be72782882d114008180ad639989dcb3babf7d1584e068e3d4","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.sinceChip","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"In the reef since {date}","text_hash":"ded006c6417b781fc23bdac6fab292b69da412484cf516cfe8d6757551960dd7","tgt_lang":"uk","translated":"На рифі з {date}","updated_at":"2026-07-09T11:28:11.730Z"} {"cache_key":"8004c11f7f65933c347886e24903e9fb25dc270be261aedbc7794bb7375cc27c","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"uk","translated":"MCP","updated_at":"2026-05-31T05:36:47.622Z"} {"cache_key":"80b687c098489f1ab07c4211a4e337efa11c943c792a50581c5fdebde557defe","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"uk","translated":"Дії","updated_at":"2026-07-05T21:01:19.646Z"} +{"cache_key":"81f60ec620e490b6f1ac73a24674cc64df5e9ad4fbb5d7b85315aa1ce61e87d0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"uk","translated":"Пошук плагінів","updated_at":"2026-07-10T02:27:01.624Z"} +{"cache_key":"8297bb710dda901245fcd7a5361d45500607fe1f6a0067b5f5e5a8c6109135f7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"uk","translated":"Проблеми","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"82b66b15bfe427eeedc2e1fc0ef3dad18b29b6f4c2240615ebfedcb46e68b5e2","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"uk","translated":"Підключення","updated_at":"2026-07-09T08:08:05.838Z"} +{"cache_key":"82b9dfc1c791416588981d2a32a61e7808c9c7d1f96abe5bf6777141c0839de7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"uk","translated":"Пошук у ClawHub","updated_at":"2026-07-10T02:27:01.624Z"} {"cache_key":"83204a4ba3436a44b4da1326663998e15aec0beb7f0b6203be13b95eb5ad6c06","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"uk","translated":"Оновлено: {time}","updated_at":"2026-06-16T14:15:40.204Z"} -{"cache_key":"8354e0b46a8958116a1192378d58c128b22d71b812b88d608d00621bc94dcd98","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"uk","translated":"Перетягніть, щоб закріпити праворуч або внизу","updated_at":"2026-07-10T06:08:30.131Z"} +{"cache_key":"84a34ce2c90ff02f7c37c2ebf726c4a76f369e4af4c785c86fca3de71bce67d6","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"uk","translated":"Зібрано","updated_at":"2026-07-10T09:47:29.023Z"} {"cache_key":"85927b12bc09d5f1fd64f66604924456e3fbc8a1f9c0a2d8c807f3849cbb5990","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.runDuration","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Run duration","text_hash":"b5e9698b25697ec71f0947df28e6b08438033fe73b1b87ac7362766d77b45b97","tgt_lang":"uk","translated":"Тривалість виконання","updated_at":"2026-07-09T10:13:26.704Z"} +{"cache_key":"85945fbd9bab1a92867b5cd4d717e3ffc3fe382ba7e5e2f68aa11c9cf3c7a279","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"uk","translated":"Включено","updated_at":"2026-07-10T02:27:16.333Z"} {"cache_key":"85972cac74d018ce64a3e42bc300148da3ccf5db25fc40576fbbd53dfa41b7d6","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"uk","translated":"Фонові завдання в черзі та в процесі виконання.","updated_at":"2026-07-09T21:53:30.529Z"} {"cache_key":"86729637e26dff5d5b24f944b02fd2cc77f22dbcdadf6b124ef84202e39f72ad","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"uk","translated":"CWD","updated_at":"2026-06-16T14:16:03.477Z"} {"cache_key":"87108e12ac3df1284d6c4d1cc0176d9498649236558a1570c0ffb9b9a0eaabb6","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"uk","translated":"Час від часу заходить","updated_at":"2026-07-09T20:51:42.542Z"} {"cache_key":"871a674ea1ed421d286671059050bd7ad3d88ce9400e613186c187bc01a3b2cb","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.offline","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Connect to the gateway to meet your agent.","text_hash":"8804d65574fee21ed454bc82cb65b5ac8f0320877b5e4db12230aa665cd86f18","tgt_lang":"uk","translated":"Підключіться до gateway, щоб познайомитися зі своїм агентом.","updated_at":"2026-07-09T11:28:11.730Z"} +{"cache_key":"87d86582943343551a7d828da6cde27f15118e26e1188be93f9b26854ce6c7f6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"uk","translated":"Установлення…","updated_at":"2026-07-10T02:27:21.673Z"} +{"cache_key":"88a6db2416b9dcd554d3156b23c23692d356f6c3e0f5b10705ae383cdd4fc655","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"uk","translated":"Додано MCP-сервер {name}.","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"88efde50da86723e0306f7abf3334e3e502c2a51885e1bfd4b6ccbccdb18f4c9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"uk","translated":"За замовчуванням","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"89491061e2f87124c00b296ce52a3f252f8bce977c8b692d7577849a3ce50a94","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"uk","translated":"Розширені налаштування Talk потребують доступу operator.admin.","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"8aee8ce3ea0eee44cf73ab98985116ed60a07d9737e132e7b5b0cda3b6f68b58","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"uk","translated":"Прочитано","updated_at":"2026-06-16T14:16:00.845Z"} {"cache_key":"8c0659c1e9de63714c44bcd88439fc1e2d1826c013bace542addd4b03134d3e8","model":"gpt-5","provider":"openai","segment_id":"usage.daily.compressedScaleHint","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Square-root scale keeps low-usage days visible.","text_hash":"9515e7c6db149c32b64dba95a43e31a61d53dce8f11fe98683b234fb1cfd1920","tgt_lang":"uk","translated":"Шкала квадратного кореня дає змогу бачити дні з низьким використанням.","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"8c5ca6a73ede76545cacd869e322318e4405947751b17b780239fa66a5f1c218","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"uk","translated":"Системна помилка","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"8d78df773ed9876484c71ee3d459d4576919f587786d54cfa9f60d20dcd64beb","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"uk","translated":"Неактивний","updated_at":"2026-07-09T10:01:43.750Z"} +{"cache_key":"8d8fdb9b3cf424765128a78d62dd3275e74d829f8c79e51a7f49ee3af16c0192","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"uk","translated":"Увімкнути","updated_at":"2026-07-10T04:28:39.229Z"} +{"cache_key":"8da2878b65e53d72687edf446459d3243151e0797b48f8e62c21d19bb4a296c7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"uk","translated":"Gateway офлайн","updated_at":"2026-07-10T02:27:16.333Z"} +{"cache_key":"8da8446bd5a69fde415b5d1b25187ea044c3552d71a1b79e656d4a9f68442cf5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"uk","translated":"Додавання…","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"8df9e9c243a5deae1a316c4b873b9d5475fc58869de9095af7752e831b8b72da","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"uk","translated":"Оркестрація","updated_at":"2026-05-30T15:38:37.442Z"} {"cache_key":"8f32df42747989982202e9315d2ab477fca253ea5446e4e6291b25206d72445c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"uk","translated":"Немає","updated_at":"2026-07-05T14:40:05.415Z"} {"cache_key":"90fd997d151da52e48e0c7557a34336ccf9e357592c8cab9933f781172590f47","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"uk","translated":"Коментар","updated_at":"2026-07-01T01:07:59.455Z"} {"cache_key":"9124e541fe7c3aaa95dff760102305c6117c4094716abd26eca867813173c9b3","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"uk","translated":"Гілка","updated_at":"2026-07-05T21:01:19.646Z"} -{"cache_key":"9150b36bcebd28cdb8a6c24b5f857dc41b4bcd5983327ad5701aca54a365697f","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"uk","translated":"Пошук","updated_at":"2026-07-10T06:08:30.131Z"} {"cache_key":"91c1dd294b8075eb5076a19aa043c8fcf8a3b20f492ed16380aa7c91b98512ec","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"uk","translated":"Агент","updated_at":"2026-07-05T14:40:05.415Z"} -{"cache_key":"93c370d94df28d7632d1d1febb06efc329567f40d84bef61c5259679f2dfc7d9","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"uk","translated":"Відвідано {seen}/{total}","updated_at":"2026-07-09T23:56:01.606Z"} +{"cache_key":"923bc27064b5347f44160c1a51ccc2e7897314942160732854d9ede36555131a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"uk","translated":"Пакет","updated_at":"2026-07-10T04:28:39.229Z"} +{"cache_key":"94476f115933196634e9cd8fbd866a20fc645939c442256ced07f8ad4ec6f7c5","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"uk","translated":"Коміт","updated_at":"2026-07-10T09:47:29.023Z"} +{"cache_key":"949952b283897587d18ce2f69cde28b871cd7ec4fe96dadcace96060996c929b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"uk","translated":"Завантаження плагінів…","updated_at":"2026-07-10T02:27:01.624Z"} +{"cache_key":"957361ac3493fc689379ded6453a336439957c9d562e4af4062d7e9bc8767d65","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"uk","translated":"Додати сервер","updated_at":"2026-07-10T02:27:12.118Z"} +{"cache_key":"95906954d456f1acffd13fdd80b7d884935e11b28728e31bc207c03739e6f9cf","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"uk","translated":"Відомості про збірку Control UI","updated_at":"2026-07-10T09:47:29.023Z"} {"cache_key":"95e0bc61afbb4c48f07a5cfecb43a47c623cff003cf9fed01cc928071c897bfc","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"uk","translated":"сеанси","updated_at":"2026-07-09T10:01:43.750Z"} +{"cache_key":"964040a27aa1239c1652a5c764756cc636ea3b955e3da4fa7cc94759b4b79c82","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"uk","translated":"Вимкнути","updated_at":"2026-07-10T04:28:39.229Z"} {"cache_key":"97a7c36dd56206e516ae99f9b50064f97a77955617777ab6b2fee6d9b8bd3acc","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"uk","translated":"Видалити групу \"{group}\"? Її сеанси буде переміщено до Ungrouped.","updated_at":"2026-07-06T23:41:10.447Z"} {"cache_key":"98612088452c70ef5e1dcf4a100e5ad18f2652ef5eaa8def27451fcf864e9e51","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"uk","translated":"Назва нової групи","updated_at":"2026-07-05T14:40:05.415Z"} {"cache_key":"993354ed03232adab1033ad5392b8d53265d914356478f578eddfeebb0415391","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"uk","translated":"Підтвердження","updated_at":"2026-06-16T14:15:40.204Z"} {"cache_key":"9933be6ff5b5d59701063264c5fb27a683eb61dbc7cec052f1f2fc595d43c8a8","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"uk","translated":"Сортувати сеанси","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"99aca66ac59ca79b2fba2f44385039d1098dc86e1f3c8417fa779378d1c1e86f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"uk","translated":"MCP-конектори в один клік і добірні пошуки ClawHub для популярних сервісів.","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"99e30864cae3b185ce17714f21ed4fbcbca83f74e9fe2afe70f71522c16ed86c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"uk","translated":"Параметри групи {group}","updated_at":"2026-07-06T23:41:10.447Z"} {"cache_key":"9aad668c3c5dbef469410ea48eff7f2cd9a2993c346866251e3b325e714ad515","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"uk","translated":"Категорії витрат","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"9b4314c3100406a82c3723780c5fc03c8b9a7144dde6fcbc272b1fa976ea2a6c","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"uk","translated":"Системний за замовчуванням","updated_at":"2026-07-06T17:33:56.873Z"} {"cache_key":"9c8ce8aa3839267fa04a79946c43251047c9337641cfaf7494cb6f8a7cf41a2f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"uk","translated":"Не вдалося отримати доступ до входів мікрофона.","updated_at":"2026-07-06T17:57:00.020Z"} +{"cache_key":"9ea926fda0ab8bcf719ed8cc74282d4d158e993fe79748383d02aab9540dc7f5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"uk","translated":"Необов’язкова можливість OpenClaw.","updated_at":"2026-07-10T02:27:16.333Z"} {"cache_key":"a00e060c712d09afe4a7389501ae1c0e6ec0e489a163671200a490f9fc70c567","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"uk","translated":"{count} днів","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"a30cdf03bb03e6ba41ceceb31762ab6ffed0a93212ef15dd8a262ce60f06e7bd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"uk","translated":"60 с","updated_at":"2026-06-17T14:15:34.049Z"} {"cache_key":"a349141b1769b0ee5db9304904989a6679d90471a9120987f873a6628fe24801","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.closePane","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Close pane","text_hash":"7fa0f9613d919e167b0f9aa03c22809d446af293eb6c3bac6866bae66d2656c9","tgt_lang":"uk","translated":"Закрити панель","updated_at":"2026-07-06T07:23:57.922Z"} {"cache_key":"a4bd9b98e64254c411c083ac52654b0c5a466de108351420e2ba205a16996e64","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"uk","translated":"Архівувати сеанс","updated_at":"2026-07-02T14:30:30.852Z"} {"cache_key":"a6e27bc6275e087dfb962f35db43b5dffbe498c0c16ed21d3d511cd0724767d3","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLongestSession","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Longest session","text_hash":"7f727c1b85939ac165087fe5c3081e15ca00c6e6a0c0b6f8c908ff21eda7a4f2","tgt_lang":"uk","translated":"Найдовший сеанс","updated_at":"2026-07-09T11:28:11.730Z"} {"cache_key":"a791027ff4c63da58580abdd6865d2955a927dc8cd3333bf944a1e04e4c88139","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"uk","translated":"Компактна щільність карток","updated_at":"2026-06-17T14:15:28.579Z"} +{"cache_key":"a7caead0506b2d2c052103e016716a128f86dc3389e89d6f7f28b7cc4c29e5eb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"uk","translated":"Підключіться, щоб переглянути встановлені й рекомендовані плагіни.","updated_at":"2026-07-10T02:27:16.333Z"} {"cache_key":"a7d851a926019e2bd61845a835cdb17a9a048573abc8e000276b4c4f79fe979d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goal","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Goal","text_hash":"cdbf6975e8a35b0d03558be6822dfae166482c24fb86b0433f60e8167f5c91e4","tgt_lang":"uk","translated":"Мета","updated_at":"2026-05-29T21:01:33.548Z"} {"cache_key":"a88ed77948f2ca88b4c39f0bca39f94c4afbd4bd2b7a1e37696a644bea95e8b8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"uk","translated":"Активні","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"a90eb8914ad74d8b449bde19d55b6ac2d26718ee75a54c8da96d5d2e5dbd2757","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"uk","translated":"Корінь","updated_at":"2026-06-16T14:16:00.845Z"} {"cache_key":"a9d74ea22575ac277d779a75149afb183a4d731888292a3f97d1701b1a80a39e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"uk","translated":"Відкріпити сеанс","updated_at":"2026-07-02T14:30:30.852Z"} +{"cache_key":"a9fd8002a066d2f9d79742a9c1261fa6d6ef3eb6447bab4bb24ccb8babe5984a","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"uk","translated":"Плагіни","updated_at":"2026-07-10T02:27:01.624Z"} +{"cache_key":"aa1fe8a914a566d017ef01e86b05bb31452c1d5aba468c16efb4e1307b64f970","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"uk","translated":"Оновити","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"aac5f5c6c1b67c0bdbabc1a2d0adb5581f0361dc27e6b5e12d0068d3d6d387d5","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"uk","translated":"Ізольовані копії для завдань агентів і знімки для відновлення.","updated_at":"2026-07-05T21:01:19.646Z"} {"cache_key":"abcd8c3a24da3712183372978ec54a923d2a8c384df74e3b0af539e134ce86bc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"uk","translated":"Оновлено {time}","updated_at":"2026-06-17T14:15:34.049Z"} {"cache_key":"ac2ab3384ce9e2fc8e63bb7ddb116e07da4617683bf15ee653c0ae2eada179ea","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"uk","translated":"Додаткових мікрофонів не знайдено","updated_at":"2026-07-06T17:33:56.873Z"} {"cache_key":"ac653d9050db919c4f8e9a57970e0810a015ef0c232ce3f311ebca75f4f48feb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"uk","translated":"Середня","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"acba8d9c1643ca66175db2286579a38038816b594d68b5a3d571b5f08b40e591","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"uk","translated":"Деталі картки","updated_at":"2026-06-16T14:15:40.204Z"} {"cache_key":"acd419d5af80b6af11673076b770f0794e2749eceb6deacff8fbbf3d22187182","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"uk","translated":"Відсутня","updated_at":"2026-06-16T14:15:46.702Z"} +{"cache_key":"ad0e37527f9052f020cabec6816d5f333c3ebedb971bec84042b9d887db86d1a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"uk","translated":"Потребують уваги","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"ad2635d6568f9bb3edb3cf44c56c33983c54b846609a245ec0ad5861e0221111","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadingMore","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"uk","translated":"Завантаження…","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"adc7da90b56e630d86ef826e1dc32fdf5ae7f4b18b2a508e2dc8f84eff9dfaa2","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"uk","translated":"Вузол","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"ae08b8b7d72c31107f315aefa219a86565367b3f6b5b2878c06010e45fe22377","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"uk","translated":"Створити знімок і видалити {name}?","updated_at":"2026-07-05T21:01:19.646Z"} {"cache_key":"ae5513cbe7150365efd5a0a4dbe32f9bc2071d61305998a26fccd44fe260ec72","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"uk","translated":"Переглядайте, уточнюйте й застосовуйте пропозиції, перш ніж вони стануть активними Skills.","updated_at":"2026-05-31T21:48:33.168Z"} -{"cache_key":"aee4d1a77ed05e21d80d7091627ad3168114d7f1a5f086ffcf7e6fbc57ff09eb","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"uk","translated":"Показати файли сеансу","updated_at":"2026-07-10T06:08:30.131Z"} +{"cache_key":"af03d96e136a79044e2c961b3c84e751334f5bda5397ec97ee0874c52c5d607a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"uk","translated":"Підключіть сервери Model Context Protocol, щоб надати вашому агенту додаткові інструменти. Зміни застосовуються до нових сеансів агента.","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"af7144e900925e009bcc1f9f0feade753e2fc2b9c10375b26701400db2a727b0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"uk","translated":"Пошук за назвами сеансів","updated_at":"2026-07-09T10:01:43.750Z"} +{"cache_key":"afedad8e26f596b6e7e724d29ada98a1d2872f42fe8bbc2d53f3f59dbc14566e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"uk","translated":"Увімкнено {name}. Щоб застосувати зміну, потрібно перезапустити Gateway.","updated_at":"2026-07-10T02:27:21.673Z"} +{"cache_key":"b1f84f23f3b948e9400a71adcbaa8a802079d3d71ebd1725568a4202efa2f8f0","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"uk","translated":"Копіювати повний хеш коміту","updated_at":"2026-07-10T09:47:29.023Z"} {"cache_key":"b254ce53482c927fceaa5579001975d2af9fb778b7dbaa15cfc66755df6f4eb8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"uk","translated":"Пошук файлів","updated_at":"2026-06-16T14:16:00.845Z"} {"cache_key":"b2826d8888a5d1e9e359144e46ae15ddaf465090f7bda8577af7c86692ade127","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"uk","translated":"Показувати лише архівовані сеанси.","updated_at":"2026-07-02T14:30:30.852Z"} +{"cache_key":"b2a4c6d3a4f91d213ef52b560f2ae4cfa1c8dc0025d6cee8a7ae747769fa564d","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"uk","translated":"Плагіни","updated_at":"2026-07-10T02:27:21.673Z"} {"cache_key":"b347d8bd8341e11ac35c037dc25c9c5d132d567bf96da2fa3fbc9c099ec5860e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"uk","translated":"сигнал {age}","updated_at":"2026-06-17T14:15:34.049Z"} {"cache_key":"b38917761ee3593ef7cebe4c2745434e0a0e6e6ec3573e77ead1e147737d746b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"uk","translated":"Показано: {count}","updated_at":"2026-06-16T14:16:00.845Z"} {"cache_key":"b4413bb77ce9ac8e438dce5b6eeea5e356e6d52e08c1765f004f9c62fd5ac6c1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"uk","translated":"Парк Codex","updated_at":"2026-07-09T10:01:43.750Z"} @@ -238,51 +317,74 @@ {"cache_key":"b566297242420d30eb3aae0bdb28539e229a851e95606d5820b0a9b8df289c3f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"uk","translated":"Сьогодні","updated_at":"2026-07-05T14:40:05.415Z"} {"cache_key":"b57665bf547eaf16a1199e79fd2734f936dcf07f13427af32356fba7a4294cc1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"uk","translated":"Недоступних хостів: {count}. Решта хостів доступні.","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"b6095799115b413d4a9177fa960ba36a7fefda5bbb3688977edebe009ab8cb43","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"uk","translated":"невдалі спроби","updated_at":"2026-06-17T14:15:34.049Z"} +{"cache_key":"b623dcc02c537df3baedfacee21c7092cc2dfece35b3bfb90e9dedaab6859cda","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"uk","translated":"Підготовка пошуку…","updated_at":"2026-07-10T02:27:01.624Z"} {"cache_key":"b68e44c0aa14ac147e4e584bfdb773a6de67e4dfb34043975a37f3cebc303c6c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"uk","translated":"Група","updated_at":"2026-07-05T14:40:05.415Z"} {"cache_key":"b6bdd6c897c20d8699f25fb599af4d33fcc2cefc4375bb2e06f576b7dad8a367","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"uk","translated":"{count} сеанс","updated_at":"2026-07-05T14:40:05.415Z"} +{"cache_key":"b6da72be3941ee4351a46dae80765323e73d4beaaf938bc8fa0e3ed2f472b03b","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"uk","translated":"Установлюйте й керуйте додатковими можливостями.","updated_at":"2026-07-10T02:27:01.624Z"} {"cache_key":"b74912e5d6ed30c3cec1993ab7420b469f53d63415e33574719987c10a6c3948","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"uk","translated":"Зберігати коментар після остаточної відповіді","updated_at":"2026-07-01T01:07:59.454Z"} {"cache_key":"b9c847525ffc95785a2ef2d4669dadeaf9aaee8c60d2359b868ebb61ceb328c6","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.estimatedCost","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Est. cost","text_hash":"3199f14286736527bfc6ad9165629415a5aa087517acd2c0e9b1ae8bb5d26766","tgt_lang":"uk","translated":"Орієнт. вартість","updated_at":"2026-07-05T16:00:20.670Z"} {"cache_key":"ba7f294cee55559078d3a8a829431cca8e743a483d05e052f4aaf80bf4924afe","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"uk","translated":"у мережі","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"bab660bc64e7a08a01caff0fe11083689684c8dffed0213b8e79b04ce29ca124","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"uk","translated":"Порушення протоколу","updated_at":"2026-05-30T15:38:37.442Z"} {"cache_key":"bb01428397546629b45319e37b8b4f5f0605029d05d014108165216749af470c","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statCurrentStreak","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Current streak","text_hash":"f1758c2815840f1bbef57663a13d2c243c6d0c052fcb09bc1a75319ebc9621d5","tgt_lang":"uk","translated":"Поточна серія","updated_at":"2026-07-09T11:28:11.730Z"} +{"cache_key":"bb2059d534af827f0863bcbaa75255c163787c17fa8474b936b4b88e16cbc768","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"uk","translated":"Додано {name}. Автентифікуйтеся за допомогою “{command}”, а потім перезапустіть gateway.","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"bb8fe1ef17d0aa95464de7317e2bd9f2674a9cea0a7bbdb70391d2037786606c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"uk","translated":"{count} сеансів","updated_at":"2026-07-05T14:40:05.415Z"} {"cache_key":"bbb9c00da9ef4a73d0a8e79ac2974a2bc41baae519daa4cb9d57888f711d551b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dragSessionHint","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Drag to move between groups","text_hash":"3e8692b1cd1c1f9a606a779f1037aa390c885fde224ddb841df9259e8aab03ae","tgt_lang":"uk","translated":"Перетягніть, щоб перемістити між групами","updated_at":"2026-07-05T14:40:05.415Z"} {"cache_key":"bbbbdd05c818b52379d69df462950cdcacb2ce0586fa2e381e41010c97904af1","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"uk","translated":"Керовані Worktrees","updated_at":"2026-07-05T21:01:19.646Z"} +{"cache_key":"bbc3f0ac78495ccfdcad28cfbb5d2f51735ea1a978170bb407e1221e0d0fa449","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"uk","translated":"Переглянути ClawHub","updated_at":"2026-07-10T02:27:01.624Z"} {"cache_key":"bd38d330a6af66914b7b75bd8cf81375bdc9c89783de5f5aa7b7a505d46051a9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"uk","translated":"~{percent}% контексту використано ({used} / {context} токенів, приблизно)","updated_at":"2026-07-09T07:40:44.003Z"} {"cache_key":"be31f6e283e54276a8fac1756fc0545a825d48f7dd4434a1642e26a63229a81e","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.streakDays","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"uk","translated":"{count} днів","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"be80590c16e888d56e7b83f6a31d6f383eda59af10be2ebf37622901066ff4c8","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"uk","translated":"Входи мікрофона зайняті або недоступні для браузера.","updated_at":"2026-07-06T17:57:00.020Z"} {"cache_key":"bf802c682257a5363319d14537366b9365b9950876dce252c97e662409506d28","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.sessionsCapped","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count}+","text_hash":"4af395b8d907e1cc1d3de75eb4644a9ed3a243f5f5a66f93da927d7899844d57","tgt_lang":"uk","translated":"{count}+","updated_at":"2026-07-09T11:28:14.349Z"} +{"cache_key":"bfa8c22ee455c28c440c75944c9345076fec099f7ff0a679fff75e0491590453","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"uk","translated":"Вимкнено","updated_at":"2026-07-10T02:27:16.333Z"} {"cache_key":"bfb6b3d38554f4dab51fe9b77a99749e19a884376aa283315a9e80b797e8cb62","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightModel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Most used model","text_hash":"a13c86cd4f835d2c2b5af940171ede2a27e0f805cef070d87628f1bd333bb706","tgt_lang":"uk","translated":"Найчастіше використовувана модель","updated_at":"2026-07-09T11:28:14.349Z"} {"cache_key":"c0adea280cf12443ae430d4dd15aa2030a4d6c057994629098a647e9d42d600f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"uk","translated":"Відкрити чат","updated_at":"2026-07-09T08:27:23.358Z"} +{"cache_key":"c1467d40e8b4555f9ed8318a7f946da0e7608deb27cbbb500b011c7d9b1f143f","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"uk","translated":"Ідентифікаційні дані, вбудовані під час збірки цього браузерного артефакту.","updated_at":"2026-07-10T09:47:29.023Z"} {"cache_key":"c1d1283fd7085e930e59b09ad8b19c80d1c8f0f8035329f02a7792f0f7ea80d0","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightsTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Activity insights","text_hash":"ba3b52a117285b5aada2567de5773c4141fd7d70a62b9b7afda8db8f9aebb40b","tgt_lang":"uk","translated":"Інсайти активності","updated_at":"2026-07-09T11:28:11.730Z"} {"cache_key":"c32c8420cfb4baf3db7dc528e6e7f99809faad0c2f765207f424c8cbfd9fe8a0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"uk","translated":"Старіші","updated_at":"2026-07-05T14:40:05.415Z"} {"cache_key":"c38d10f215194b276c0dc037dfa18cf8d10869d5cdb9803c2739821e0cb5ba5f","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.lastDays","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Last {count} days","text_hash":"4aa456a0fa9b73dcc14766740b19fc52c452950ccb7bc892499c3c29a4122162","tgt_lang":"uk","translated":"Останні {count} днів","updated_at":"2026-07-05T20:24:32.108Z"} +{"cache_key":"c3c970addd7e5d58b5f2fcc9fa3f8553912a79ff853d21c1e7824c4f05e90d1e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"uk","translated":"Вимкнути {name}","updated_at":"2026-07-10T02:27:21.673Z"} {"cache_key":"c436a35b396e8435e1c7c549670fbccdbe87f59cbc74b6d56a41f4f7fbecca3d","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"uk","translated":"воркер {state}","updated_at":"2026-05-30T15:38:37.442Z"} {"cache_key":"c43ec14e49e0856ad29b29ab89364a6f13f5645c04e9659a2e9c9ca2be2fece8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnly","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Archived only","text_hash":"da7ebd8c482f38dc2a5b693a0ec25aaa04ea7b5fa3713cce9fa41a28f2201a6b","tgt_lang":"uk","translated":"Лише архівовані","updated_at":"2026-07-02T14:30:30.852Z"} +{"cache_key":"c54248a176f610fae6e37a259d4d0bb4ae1d9b0a8a76bc3aad402bb4b32ee5e6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"uk","translated":"Пам’ять","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"c74e596d672e40fd47fe485423aa92b1972dca789655178358680457ef3b5c60","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"uk","translated":"Завантаження сеансів Codex…","updated_at":"2026-07-09T10:01:43.750Z"} +{"cache_key":"c779b7e10fb4fa1feedc2bb97e567c5d53cee4b8348348dd268eaf9075f75f7a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"uk","translated":"MCP-сервер із назвою «{name}» уже існує.","updated_at":"2026-07-10T02:27:12.118Z"} +{"cache_key":"c7aaf7c1541ae5634b5efe9c1c03843bbb06f537c360953de6d4dec0b148a32d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"uk","translated":"Постачальники моделей","updated_at":"2026-07-10T02:27:12.118Z"} +{"cache_key":"c7b1703a49313189ca9f8173910d64cea4ee7e53a238adc60c3819a5c2f102d2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"uk","translated":"Дім і медіа","updated_at":"2026-07-10T05:22:28.951Z"} {"cache_key":"c7f724db3e12f5bd45d1c3442c296d13af320b1fdb7cbb18ce5b46e75ced267e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"uk","translated":"Згорнути робочу область сесії","updated_at":"2026-06-16T14:15:46.702Z"} {"cache_key":"c853376976b76b1203cb6bfc76d4b259b5fe7731d56809505778d0e6c554d48a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlockedTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Waiting on dependencies: {parents}.","text_hash":"50fb8f9b1326b69bd67d25583ddb4f70b9d75ae6e3ff8a9056a9361daa4b7d8b","tgt_lang":"uk","translated":"Очікування залежностей: {parents}.","updated_at":"2026-06-16T14:15:46.702Z"} {"cache_key":"c85d34de35782e010ec3087e297218594809ba987668bb1a2ed2d0a814133f7f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.actions","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Workspace file actions","text_hash":"461817d921bc7672e95fe4a3b23f4ac2a4a20e35b3d6eef3f02e8f5ba4201050","tgt_lang":"uk","translated":"Дії з файлами робочого простору","updated_at":"2026-06-16T14:16:00.845Z"} {"cache_key":"c8cb8373a813acc579d310ce7e21b7cb854f1ad0a78c630f12a6a20c753e9e31","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"uk","translated":"Новий чат у worktree","updated_at":"2026-07-06T04:56:28.951Z"} +{"cache_key":"c9269ae92d8ed9a2d9a2ed77f8307fcdb2daa7a98e78e9b7386701cac1444626","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"uk","translated":"Підключіть свій світ","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"c9d2e1fdd0fc5b2b17505c0ee6fefbdd22c458ced4bc42f37cb3af94f4643a80","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"uk","translated":"Вкладення додано","updated_at":"2026-05-30T15:38:37.442Z"} {"cache_key":"c9e4cf5a31c73bc5eee7901d63909fc645eb5e80bc5bde5e3f1082be5ff39584","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"uk","translated":"немає підтвердження","updated_at":"2026-06-17T14:15:34.049Z"} {"cache_key":"cb39ec8be65086e4d19145471606dd875ffd81b327078cc0bd2bdd933d9c7066","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"uk","translated":"Каталог сеансів недоступний","updated_at":"2026-07-09T10:01:43.750Z"} +{"cache_key":"cbe79643347939f75d58b9225a727d506a637f85c5e8e9f21de0f12a0642dbe7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"uk","translated":"Пошук у ClawHub…","updated_at":"2026-07-10T02:27:01.624Z"} +{"cache_key":"cc6b1cee3b9d61e1d45716b697fcb676bb551a3c70c420a8cbed833d974ab369","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"uk","translated":"Потребує уваги","updated_at":"2026-07-10T02:27:16.333Z"} {"cache_key":"cd253b691aca12aa730ad6262c0dc6748f9ffa53c27d3ba8ec877287c51d538d","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"uk","translated":"Realtime Talk потребує доступу браузера до мікрофона.","updated_at":"2026-07-06T17:57:00.020Z"} +{"cache_key":"cd45d1ba9fc32ed86a9d4cfef21229fa47cdf9d1930267854bbd15f59afae283","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"uk","translated":"Додано {name}. Нові сеанси агента можуть використовувати його відразу.","updated_at":"2026-07-10T05:22:28.951Z"} +{"cache_key":"cde1a76770115c1fb272253c15eac4052384771f33df95442c920c16fa9239c9","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"uk","translated":"Версія","updated_at":"2026-07-10T09:47:29.023Z"} +{"cache_key":"ce8433a37a074a104fa91999637614e35e125129e6b9c263355eb42d6d5c963d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"uk","translated":"Не вдалося оновити конфігурацію Control UI: {error}","updated_at":"2026-07-10T02:27:21.673Z"} {"cache_key":"cee608cb9058a49ccc4b451d65a10416c946a2216ec3fafdbe80abaa9c8e0b0e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"uk","translated":"QR-код для пар'ювання застарів","updated_at":"2026-07-01T10:32:49.580Z"} {"cache_key":"cfc709d2d85dbfe970d9f1db74a5586fd4255a9ff93863b3faefbb3e8fd24d90","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"uk","translated":"Вимкнено","updated_at":"2026-06-17T14:15:28.579Z"} {"cache_key":"d068e6b36b34c51da41b0565891581d8fbaaefbcad50dfde4e901c546fb4cb96","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"uk","translated":"Без призначення (використовує {agent})","updated_at":"2026-06-17T14:15:28.579Z"} {"cache_key":"d090fbd668c0933aa08fc3baba45491f8e43d295473dd1adab0874f0ca89cb0e","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"uk","translated":"Ізольовані копії репозиторію, що належать OpenClaw.","updated_at":"2026-07-05T21:01:19.646Z"} +{"cache_key":"d0d08963e08b6487717c568df6fea28ae3d3ca8e93c2f324daee7fc2f5ca6c40","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"uk","translated":"Імена серверів можуть містити літери, цифри, крапки, дефіси або підкреслення.","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"d0d09b22149ae8e7809bd5eed3f7625b72d86d58b50a17fa6072712f59a8042e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"uk","translated":"Використано {percent}% контексту ({used} / {context} токенів)","updated_at":"2026-07-09T07:06:28.496Z"} {"cache_key":"d14385d739b5dcf69aaa657960811324eed785a82275bd28925f0369158eddc8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"uk","translated":"Оновити робочу область сесії","updated_at":"2026-06-16T14:15:46.702Z"} {"cache_key":"d212b367b883eb42d4c59e7de652385a9494c411858b58b5dbbbe4829957f770","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"uk","translated":"Журнали воркера","updated_at":"2026-06-16T14:15:40.204Z"} {"cache_key":"d2cab62904eadd3f7b1a0e14bbeb50f6a8cc1eb8133eb5967a67f123b95323f5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"uk","translated":"Перейменувати сеанс","updated_at":"2026-07-02T14:30:30.852Z"} {"cache_key":"d2dd689fe145552be6bf17c2b532bdd4b3e8d8c934e324795ab88bf5941918ad","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"uk","translated":"Останні виконані, невдалі та скасовані завдання.","updated_at":"2026-07-09T21:53:30.529Z"} +{"cache_key":"d39e6b9010f1e9b66c72adbb19f0c6dece54ae7f3e99897b150727fe926dccc3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"uk","translated":"Глобально","updated_at":"2026-07-10T02:27:16.333Z"} {"cache_key":"d3c51af5c0eecaa43dfa0c0c81a98228699cf7071e9bb500e11763062b27e07f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"uk","translated":"У цій папці немає файлів.","updated_at":"2026-06-16T14:16:00.845Z"} +{"cache_key":"d3d49fdd0b2d555caeffa7896c0468bc47fca90cbb8191a71ebe4937aed67543","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"uk","translated":"Назва","updated_at":"2026-07-05T21:01:19.646Z"} {"cache_key":"d42ca1140ea207eb5cecf43725d3fe4b10d6f09e7a9dc2573f3535d4175b9671","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"uk","translated":"Контекстне вікно","updated_at":"2026-07-05T10:16:22.208Z"} {"cache_key":"d545aacd8a911ac399eac09576c24ff62af400c9843d24169d3e48175944add0","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"uk","translated":"Система","updated_at":"2026-07-09T08:08:05.838Z"} {"cache_key":"d56d625c9ad9a084639805ed1f0fb4b99f13c5f3ab1ce1a8d52164643064feae","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"uk","translated":"Worktrees","updated_at":"2026-07-05T21:01:19.646Z"} {"cache_key":"d666c6bafb0403c744f8e2db18300acd1de73aa989faafd98663ac125db8d350","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"uk","translated":"Назва","updated_at":"2026-07-05T21:01:19.646Z"} +{"cache_key":"d6b46e3f9dcc3d502936743e6a80f988238ee8c90a78becf1290bae6b0d52fff","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"uk","translated":"З ClawHub","updated_at":"2026-07-10T04:28:39.229Z"} +{"cache_key":"d720f6cad47cbb6bd1a7e2d09fc6a5254248a94d8897bd493041974d43e83a07","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"uk","translated":"MCP-сервер в один клік","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"d73db2c10f17877f48268a366fdaafcb579a8a8615b4d0585fd83eb9ea54b953","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"uk","translated":"Нова група…","updated_at":"2026-07-05T14:40:05.415Z"} +{"cache_key":"d7a786c4c9e591382d090566505082e2f77862f209a6ee13b1c292e71bb1a0c3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"uk","translated":"MCP-сервер «{name}» не знайдено в конфігурації.","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"d80e732bb3818dad8a6fddd4ead0a5627998c6b0731710763aed5891f997891c","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"uk","translated":"{count} вихідних токенів","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"d875f25432822895910002f7110391bee3af71a3dab0d65debdc313b67a45df7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"uk","translated":"Бракує підтвердження","updated_at":"2026-06-17T14:15:28.579Z"} {"cache_key":"d9dd37a613caa04906cbd5ba60df370aaef03eb08dfca33592a61f9217b7eb7c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"uk","translated":"Хости Codex не знайдено","updated_at":"2026-07-09T10:01:43.750Z"} @@ -290,48 +392,70 @@ {"cache_key":"daad459d126be4e2c1c23c8fd93aa5a6bf5672673704f601ac46c8b5c239f065","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"uk","translated":"Відновіть цей сеанс, щоб надсилати повідомлення.","updated_at":"2026-07-02T14:30:30.852Z"} {"cache_key":"db2bfe31afc3fb44571f26559c3006023e26d066ae9ebd0f96224ac572c4ab44","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"uk","translated":"Вигляд дошки","updated_at":"2026-06-17T14:15:28.579Z"} {"cache_key":"db5d8fca69427232500422a1a3e301c90bfff4852cf2167a5973e0e637df256e","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.perDay","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"/ day","text_hash":"122faff7033fbaa4fac55b95788a16f370e13ab272d734f33bfcf15021170fe7","tgt_lang":"uk","translated":"/ день","updated_at":"2026-07-05T20:24:32.108Z"} +{"cache_key":"dcb439330ba1731e38d6045f7628c263165d19288e19aebc6362c6fb38b4538e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"uk","translated":"Видалено {name}. Щоб застосувати зміну, потрібен перезапуск Gateway.","updated_at":"2026-07-10T02:27:16.332Z"} +{"cache_key":"dcd2f24d564c558bfb2da28071e4e976d1da3b357848e62354678f07be01e599","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"uk","translated":"Огляд","updated_at":"2026-07-10T02:27:01.624Z"} +{"cache_key":"ddac6813a2f3fbf8a0b90cf5f261abe9cb945da2a09b1c6944b9fe99ee93acef","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"uk","translated":"Скасувати","updated_at":"2026-07-10T02:27:16.332Z"} {"cache_key":"dedb11177207212fde54d00e08984d4382e7da9912cd9bdba88b37f4512eaa3d","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"uk","translated":"Підштовхнути диспетчер","updated_at":"2026-05-30T15:38:37.442Z"} {"cache_key":"e04d63cac77bde1918d9886eb6c7544ca2e7cc692d269f320cd1275d335c5cee","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"uk","translated":"Режим кольору: {mode}","updated_at":"2026-07-07T08:47:35.916Z"} +{"cache_key":"e10674d2cd1b3feb91a852211ef2adc406e2b1213904dd7dfbf0936625562562","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"uk","translated":"Недоступно","updated_at":"2026-07-10T02:27:21.673Z"} +{"cache_key":"e1213734e520daa74b6f7a3467a23fb7c184eb42cc6a90b4831a312c62a10b14","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"uk","translated":"Повсякденне життя","updated_at":"2026-07-10T05:22:28.951Z"} {"cache_key":"e1881c1f30901b4d3a10cefbeea852300b5865d780d4f7c6a8378486caacbdf5","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.subtitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Calendar windows ending {date}","text_hash":"f01adb920b86724f393ee7bca5ea4a90bd5a777d39f6191ed9c13530ceb7851d","tgt_lang":"uk","translated":"Календарні періоди, що закінчуються {date}","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"e307d37915b742e2324cd02df9e4f646561e619d023622bdc2e341548d0e6bbe","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"uk","translated":"Нещодавно завершені","updated_at":"2026-06-17T14:15:28.579Z"} {"cache_key":"e30d0e43ea0665e1aa83e6070231dd79a2cc8be101b6a6006ba579fcc2a27c91","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"uk","translated":"Артефакти","updated_at":"2026-06-16T14:16:00.845Z"} +{"cache_key":"e475b577525f57f0e5e1b1c088ebec4b70c38e81c41762e1f17064d6de7dedb6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"uk","translated":"Інструменти","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"e595c1a2c5f2b2a1bc5b93fff0fc26ce961e391ec2e4c6ac2ba988e95c979e46","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"uk","translated":"застаріло","updated_at":"2026-06-17T14:15:34.049Z"} {"cache_key":"e70c3bc3ad2ce9d0c0c696d3b5f555e0962310b04f68c383e0227751d34c9c34","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"uk","translated":"Токени останнього запуску","updated_at":"2026-07-05T10:16:22.208Z"} +{"cache_key":"e75f005e0be995fef6a552639a90f28681b83c59171af8e18451950d3288dd8c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"uk","translated":"Обробка…","updated_at":"2026-07-10T04:28:39.229Z"} +{"cache_key":"e7a649529333de4586577ab8730bb929acc8ad03d5156a030c30eba7125b66e3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"uk","translated":"Плагін у пакеті","updated_at":"2026-07-10T02:27:21.673Z"} +{"cache_key":"e7d452785c39367b0bdf62b2aa5c0636b06e5ede8fcf5c45498637e29be4a27d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"uk","translated":"Інше","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"e8275b4c13487c03c11aaa9438299ff93e3e45dabe5f1ee7112bf481aceaf23d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"uk","translated":"Завантажити ще","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"e8bb3caa6656b2a2d7d76b658db55744b723408e8dd843f0a23384ff38aec46c","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"uk","translated":"Відновити","updated_at":"2026-07-05T21:01:19.646Z"} -{"cache_key":"e91829c5c2cc172b7aa2e96ba7d338f093c340ca89272e8fe7614f5422c14b5a","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"uk","translated":"Без звуку","updated_at":"2026-07-10T04:50:29.079Z"} +{"cache_key":"e93cd8e4c2ef34ba0f6059891245ced09ccad90089c4a49560d0dd8f5fa96774","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"uk","translated":"Рекомендовані","updated_at":"2026-07-10T02:27:01.624Z"} {"cache_key":"e9e5679c8aa7f6455e15cdbc96cf5bff401a8efebfe18e72e95e717b3cd1baf2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"uk","translated":"Розгорнути робочу область сесії","updated_at":"2026-06-16T14:15:46.702Z"} {"cache_key":"ea0f0e412e3122b169546d1778edb4d88a8b35e7f3ca4fc39ed1c42b15a1eb79","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.sessionSelect","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Pane session","text_hash":"0deb0759c3643f2659c0838326276513c119e7923672a118c4ed13c012c4b628","tgt_lang":"uk","translated":"Сеанс панелі","updated_at":"2026-07-06T07:23:57.922Z"} {"cache_key":"ea3da3e832b41acaeedc9dacefe56905da86ddfce651fe1c73734fe3caea5a5b","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.statLongestStreak","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Longest streak","text_hash":"49095cff1349a49e9b8672a0ef850d5bec7be2af58e803a0f17c41faf6753f39","tgt_lang":"uk","translated":"Найдовша серія","updated_at":"2026-07-09T11:28:11.730Z"} {"cache_key":"eaad8110f22784b9476212faeb97bb93b820b719b58c833fe7d5b701a5956034","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"uk","translated":"Відкрити відомості про використання контексту","updated_at":"2026-07-05T10:16:22.208Z"} +{"cache_key":"eb38e8c4ad1206f8353c01e535ff1adf25323f9dccbcc8d22b4dcd2384e0a1ca","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"uk","translated":"Видалити","updated_at":"2026-07-10T02:27:16.332Z"} {"cache_key":"eb4ae94922885e66b045b3d7c37cf2688d7faf1d585e13f2e746491668c9143d","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"uk","translated":"Остання активність","updated_at":"2026-07-05T21:01:19.646Z"} {"cache_key":"eba7c2e61d33b5d2c9f62d06b576df41c082b73bd0efcae4f25282265049adc6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"uk","translated":"Тип","updated_at":"2026-07-05T14:40:05.415Z"} {"cache_key":"ebc5702418d82ad6907065b16044ff4055f8f07452f2b147cfb808e0a9de6361","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"uk","translated":"Gateway","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"ec19d2598feafd6be42da40cd70b79fbe99c37de3256337b59d0f02ccb7020d1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"uk","translated":"Робоча область сесії","updated_at":"2026-06-16T14:15:46.702Z"} +{"cache_key":"ec4ad23ec40e34e4f2a8ef9555d16220267390a309a7af61175c6ce5d9b15baf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"uk","translated":"Недоступно","updated_at":"2026-07-10T02:27:21.673Z"} {"cache_key":"eccf4d8bf80d2e396fa695fd2aa28ddeec69cdd8cfe26f81f41408a42b57c2b1","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.insightMessages","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Messages exchanged","text_hash":"3e0eaa1c266dfdf2f9799c1f3c574da7533f63057934e0aa003eddabc517cfbe","tgt_lang":"uk","translated":"Обміняно повідомленнями","updated_at":"2026-07-09T11:28:14.349Z"} {"cache_key":"ed9e88a81dcdbfe8c630f0d096a827328bcdb03e61ac7887eb1e89fd42af70e4","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.emptyBody","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No token activity yet. Send your agent a message and watch the reef light up.","text_hash":"372d6a37efc587e1d6c91c0229222235c6ec6a6ffd0d7545874ce359afb33e04","tgt_lang":"uk","translated":"Активності токенів ще немає. Надішліть своєму агенту повідомлення й дивіться, як риф оживає.","updated_at":"2026-07-09T11:28:11.730Z"} +{"cache_key":"ede102e1feead26c5dd211818f9cb50e0073e6b84b9c87e821d40ecacc812a7e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"uk","translated":"Введіть щонайменше два символи, щоб знайти код і плагіни пакетів.","updated_at":"2026-07-10T02:27:01.624Z"} {"cache_key":"ee1ebb74803acc8f3321b412beb560d4208104f0b6338c5b91b21969cb7b0aba","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"uk","translated":"Без групи","updated_at":"2026-07-05T14:40:05.415Z"} +{"cache_key":"eedcbd69dc55f3f8e8564e74a7783ddeff7673446148ea24e51ca3a664c4357d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"uk","translated":"Ознайомтеся з попередженням ClawHub перед установленням цього плагіна.","updated_at":"2026-07-10T02:27:21.673Z"} +{"cache_key":"eeea9d25fa2731f3ce02aa4a3cba43cb0437b1592d99c9e966c5ca32310cfca1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"uk","translated":"Відкрийте для себе рекомендований плагін або шукайте в ClawHub, щоб розширити OpenClaw.","updated_at":"2026-07-10T02:27:07.079Z"} +{"cache_key":"effd2b74856f21528d0f0685834bf06ad005467b661389d57ae8136abba8a5a6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"uk","translated":"Установити","updated_at":"2026-07-10T02:27:21.673Z"} +{"cache_key":"f0563aff576ffcc3279dfae94e0c1d54ee73b066b91162b7659afd35ce12ea14","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"uk","translated":"{enabled} увімкнено, {disabled} вимкнено, {issues} з проблемами","updated_at":"2026-07-10T06:08:58.578Z"} {"cache_key":"f069777eb717da7ef079658967389d00585d1463efc3572db1437b2f3514451e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"uk","translated":"Робоча область","updated_at":"2026-06-16T14:15:46.702Z"} +{"cache_key":"f2086c12afde3775e1f96c4bfbf1087802a9d64b6bc30f1af83db44a03d06ef4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"uk","translated":"Знайти на ClawHub","updated_at":"2026-07-10T02:27:07.079Z"} {"cache_key":"f2c30a9bb0fdce3adadb3301ff03416d207a1a7eab45c439c3df1975bc3e592a","model":"gpt-5.5","provider":"openai","segment_id":"profilePage.legendLess","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Less","text_hash":"ae5239ec63f28cd401ccd63e9f56e4ede8254a738a135ebcd33e844c18dd247f","tgt_lang":"uk","translated":"Менше","updated_at":"2026-07-09T11:28:11.730Z"} -{"cache_key":"f4571c7ec951c99f64baec00d0d42b0ce10988557610ad63d6ef5d3fff11294a","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"uk","translated":"Lobsterdex","updated_at":"2026-07-09T23:56:01.606Z"} +{"cache_key":"f33ff3a1920c1f6f9634f8d6721364a667ec16d2cd163f2c2a8bcca69658bab7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"uk","translated":"Пошук у ClawHub","updated_at":"2026-07-10T02:27:01.624Z"} {"cache_key":"f4a4af01b98f179a5a9583671c6f623aeb80fa8711ddbbc9062ba4388ba26126","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"uk","translated":"Агент за замовчуванням","updated_at":"2026-06-17T14:15:28.579Z"} {"cache_key":"f5a70b6254644abf803ca10a4515f2c29faf78c6fa2175185fa1364b8e90e358","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"uk","translated":"Цього тижня","updated_at":"2026-07-05T14:40:05.415Z"} +{"cache_key":"f5cec611ec25e28f6ffec2242e76be3dc4a5389c465cfed1026bbb2dae397fcd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"uk","translated":"Фільтрувати встановлені плагіни","updated_at":"2026-07-10T02:27:07.079Z"} +{"cache_key":"f63423d9339d931734ebfbd91c9901d7d0569af2717c2261c3feeaf465310fcd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"uk","translated":"Усі","updated_at":"2026-07-10T02:27:07.079Z"} +{"cache_key":"f65495c5bb81c873e046ce3738ca1de770573e30e1cfae4a5bd10a6b950e9324","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"uk","translated":"Плагінів не знайдено","updated_at":"2026-07-10T02:27:01.624Z"} {"cache_key":"f6a4b2bf2ef896fa97bc6db277ed290b1eb2c111e86072e6d13d6ecde36f1b63","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.restoreSession","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Restore session","text_hash":"35e4dc9befd3b3a29b50938839af0efb41b08051988dde53e1c1e73d1c2a039f","tgt_lang":"uk","translated":"Відновити сеанс","updated_at":"2026-07-02T14:30:30.852Z"} {"cache_key":"f7334ab311c01cb3cde3c1fe8fe39172798f2fa31fbaa480d42bab06207f8e03","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"uk","translated":"Модель","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"f76333f5b0b136085ff1aa8b08aad11a0f4a0db31b54d56f49e09997aa65fa9f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"uk","translated":"URL або команда","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"f77965589f28dd18306e5d1fc677c457fd41150ade10325d233a35cf96265328","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"uk","translated":"Вхід мікрофона","updated_at":"2026-07-06T17:33:56.873Z"} {"cache_key":"f8475bf6c93645afe18727882c8db97dc8a035a0155bf5fef54253d13e4913ec","model":"gpt-5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"uk","translated":"Оновити","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"f8925fd043b9fe38914dd18cbf98b3987cb9c20274c45a1e7924b78ddd24cbb4","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"uk","translated":"Завантаження мікрофонів…","updated_at":"2026-07-06T17:33:56.873Z"} {"cache_key":"f9794fc6d5b1c25c987d22be5005ce2a2b67f20d585f17f927a182a73561368d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"uk","translated":"Дошка: {board}","updated_at":"2026-06-16T14:15:40.204Z"} {"cache_key":"f980987ba63e93346a11156b60b6f7ebc0f94fc9705b7713e652b03d8dd44cf6","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"uk","translated":"Останнє оновлення","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"f9c8f9bf26f8e657adbe5881f30a3be0cb4ebbc934f5aa86b8643cd682b1e0bd","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"uk","translated":"Усі сеанси","updated_at":"2026-07-03T07:39:04.008Z"} +{"cache_key":"f9d1b3f224369e918d512857003920730c1238cf4b7c80bb000721ee7a81e785","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"uk","translated":"MCP-сервери","updated_at":"2026-07-10T02:27:12.118Z"} {"cache_key":"f9e957cebd511cff7144b3cf3e3c5c916d3a24373135219c6b2660a7fdfe0e6c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"uk","translated":"Підсумок: {summary}","updated_at":"2026-06-16T14:15:40.204Z"} {"cache_key":"fab03774a8d15f9ff6336f6376e16f4cf87decaa85b823c1abf44541440d66b0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"uk","translated":"Skills: {skills}","updated_at":"2026-06-16T14:15:40.204Z"} +{"cache_key":"fb8fdbe5bebbd38a23cf4bf81153e3909b142a18e2828891533a5c76a0b21258","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"uk","translated":"Установити {name}","updated_at":"2026-07-10T02:27:21.673Z"} {"cache_key":"fbab015da18dabfe5cef65c2661cac017f15cd7869ab4ffb2479dd80c35288dc","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"uk","translated":"Доступ до мікрофона заблоковано. Дозвольте його в налаштуваннях сайту браузера, щоб показати список входів.","updated_at":"2026-07-06T17:57:00.020Z"} {"cache_key":"fc24d5796f0d84e84daa8dd5cc8b15bdac7f4a6f9d0d6e4cfd146e1c9205021f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"uk","translated":"Відсутній","updated_at":"2026-06-16T14:16:00.845Z"} {"cache_key":"fc70285f131f90ea952f97c3c77acf8cbbb3ab5a82d0b3ec4dc24347a501ca63","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"uk","translated":"Учора","updated_at":"2026-07-05T14:40:05.415Z"} {"cache_key":"fc8467e20cd57430e60d23234a4b1908245d76909b1e31f9ba44a288b6faf29f","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"uk","translated":"Загальні","updated_at":"2026-07-09T08:08:05.838Z"} {"cache_key":"fcb9ae4f1828046c24a37c19c79580253ffe956c9c66ff20a39c247ed3c06a54","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"uk","translated":"Підключено","updated_at":"2026-07-09T10:01:43.750Z"} {"cache_key":"fda778f2e0dd55bd47c6e8f3625878a83271b960c0a63e81de2809fe381fbda1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"uk","translated":"заблоковано","updated_at":"2026-06-17T14:15:34.049Z"} -{"cache_key":"fe09d27bc784029f1c73a5b014b48695116232d726e0a8d6927c33ffaaac6442","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"uk","translated":"{name} · уперше відвідано {date}","updated_at":"2026-07-10T04:20:39.396Z"} {"cache_key":"ff202db71e1bcfc27018eaed7c49c335ea96fa7f0dbc60c616646d9b856f3bb9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"uk","translated":"Перейменувати сеанс","updated_at":"2026-07-02T14:30:30.852Z"} {"cache_key":"ff5fb17dc251b8de358df796105887f42d54ecade7cbbc20da4129ddfd44a7b8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/uk.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"uk","translated":"Жоден сеанс на цьому хості не відповідає пошуку.","updated_at":"2026-07-09T10:01:43.750Z"} diff --git a/ui/src/i18n/.i18n/vi.meta.json b/ui/src/i18n/.i18n/vi.meta.json index 60b651b64842..b689b9728b60 100644 --- a/ui/src/i18n/.i18n/vi.meta.json +++ b/ui/src/i18n/.i18n/vi.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:27.320Z", + "generatedAt": "2026-07-10T09:47:43.127Z", "locale": "vi", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/vi.tm.jsonl b/ui/src/i18n/.i18n/vi.tm.jsonl index 5c95b142e78a..3c9ddc900ec8 100644 --- a/ui/src/i18n/.i18n/vi.tm.jsonl +++ b/ui/src/i18n/.i18n/vi.tm.jsonl @@ -1,70 +1,101 @@ +{"cache_key":"00dda231a161c5997bea42a3258ea84b8ce7fb3b2d759068e48fe1bdb1bbf578","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"vi","translated":"Không thể sao chép hash commit","updated_at":"2026-07-10T09:47:43.124Z"} {"cache_key":"01293668acac55eda7a2abc18dfc546bbf72961dfb6eee61e166c0542afe58b2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"vi","translated":"Hiện vật","updated_at":"2026-06-16T14:17:25.260Z"} {"cache_key":"02104b4cfbde05c8f845b62d73eb4fd012ac6fd38dc2c606fd5a97bb93d11fdb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"vi","translated":"Sao chép đường dẫn","updated_at":"2026-06-16T14:17:27.580Z"} {"cache_key":"024c9ae500f8606a84692cc918e93b6ee10e37f0ec8a0ab065218e010c8f357d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"vi","translated":"Đang hoạt động","updated_at":"2026-07-09T10:01:43.734Z"} +{"cache_key":"0289f1b5a10dc9c84f03354162c6c82a16d0025ce47606f0f52d236ae54acf94","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"vi","translated":"Đã cài đặt {name}.","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"029c495267d1d19fad7a7fc4bc7a3bca11cb1e5c7d63d3de7d6ed3b0582a5d5f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"vi","translated":"máy","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"0436cff407dfccdaace86aacd88fecc60eed5bae4f83e38ac479294ce9d832d4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"vi","translated":"{count} phụ thuộc đã hoàn tất.","updated_at":"2026-06-16T14:17:17.661Z"} +{"cache_key":"044eb2203943e5dfc2c2c4e69e8a0f615c4c75553e2bcf20f25bdf2644f1bf1d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"vi","translated":"Xem lại cảnh báo ClawHub trước khi cài đặt plugin này.","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"04f55207bfa2f94a9e19b96024adf794e0fc75eeb4f4147fc1bfa57315c153fa","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"vi","translated":"Hoạt động lần cuối","updated_at":"2026-07-05T21:01:34.014Z"} {"cache_key":"0540f1a14efa4a6c5d730a69cb6226c52bc299d47f4ff4d21810999f80306fc7","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"vi","translated":"Lỗi công cụ","updated_at":"2026-05-31T06:44:08.415Z"} {"cache_key":"05d07261ed17e5085ddbdfb55487b82b6c17963a214eebf4f971986a570d89dd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"vi","translated":"Tóm tắt: {summary}","updated_at":"2026-06-16T14:17:10.180Z"} +{"cache_key":"063f30d25ddf37409293b3439516725e876d140ed0756d5a59605f899e4167d9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"vi","translated":"Đã cài đặt {name}. Cần khởi động lại Gateway để áp dụng thay đổi.","updated_at":"2026-07-10T02:28:44.198Z"} +{"cache_key":"088ebfa3331dda8beb32edae737d0cb5ea3b243d4bd8516d893755682c75f25d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"vi","translated":"Từ ClawHub","updated_at":"2026-07-10T04:28:49.893Z"} +{"cache_key":"08cc2f41dde15b2566839ddc8c2ee1e09b3b12848d5743433c86c4e8e230bbad","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"vi","translated":"Thử tìm kiếm khác.","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"08e922edc6103cda010ad39cd476c2490f730886ae5a44e86383b39de9d08f55","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"vi","translated":"Không tìm thấy đầu vào micrô nào.","updated_at":"2026-07-06T17:57:16.954Z"} {"cache_key":"0909d1b89b2f7a8e0189816e79e40b759bbb6db383723cdeeff0455c2bd253b2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"vi","translated":"Mật độ thẻ thoải mái","updated_at":"2026-06-17T14:17:26.553Z"} {"cache_key":"09379c0dbaefdc1966986a72e1755a1f7dbc418e024014bb9666bdcd12df05bf","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.openUsage","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Open usage dashboard","text_hash":"bae5e40b055c195a780a0dc06042d60353da51ab582610096c5cb0d269484c00","tgt_lang":"vi","translated":"Mở bảng điều khiển mức sử dụng","updated_at":"2026-07-09T11:49:52.117Z"} {"cache_key":"09465a8b0457c8f057de14044b4d2dc8b69dc774d15823f25b62061ecaa48c4d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"vi","translated":"Đang hiển thị các tệp phù hợp đầu tiên. Tinh chỉnh tìm kiếm để thu hẹp kết quả.","updated_at":"2026-06-16T14:17:25.260Z"} {"cache_key":"09895d1544337ba7697aec70d9eabaf6dd405340ecef728ad2009f8147847292","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitWeekly","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Weekly · all models","text_hash":"144f0e5ca031e40c0cba8a53a9dcb4d9534c74edd976587231da2cd14b4944df","tgt_lang":"vi","translated":"Hàng tuần · tất cả mô hình","updated_at":"2026-07-09T11:49:52.117Z"} -{"cache_key":"0a78c85020c9219b91f9eecf1b82a776757496929028c419c691bae2a62603ba","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"vi","translated":"Im lặng","updated_at":"2026-07-10T04:50:41.198Z"} {"cache_key":"0a8606e7c0fededd74d8bd2d8f229325f0df9a3f13ec59a5d8600e5135926346","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"vi","translated":"Đang chờ","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"0a8fd2d0b38f3a09d8c7a146fad128e4c51b941068a80e031ebd6f3ea25fcfb3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"vi","translated":"Gửi yêu cầu chỉnh sửa đến phiên trò chuyện hiện tại thay vì phiên workshop của đề xuất.","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"0b713612057f75462f3918c2fd80b79007ab646f4a9202121e441c375b203aef","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"vi","translated":"Đã lưu trữ","updated_at":"2026-07-09T10:01:43.734Z"} +{"cache_key":"0bc90f2669fea02752276b02e41fd4ed457535b30a6691942013f26afbd2d9ee","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"vi","translated":"Kết nối thế giới của bạn","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"0c3c47d10a83911a8ca23c71b7c18e1f3f0a6df378c5d1214b3432caab50ff30","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"vi","translated":"Đang tải micrô…","updated_at":"2026-07-06T17:34:03.620Z"} +{"cache_key":"0c9be7ad44cb261ac096e4dbae65776f538b370290065243c5753bfc8cb80c19","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"vi","translated":"Kết nối các máy chủ Model Context Protocol để cung cấp thêm công cụ cho agent của bạn. Các thay đổi áp dụng cho phiên agent mới.","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"0cb5b770a6171ffb64df9866b4b7d9bbbe0f6b3e10ba956d3e119c0ea0202c10","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"vi","translated":"Nhập giọng nói thời gian thực yêu cầu quyền truy cập micrô của trình duyệt.","updated_at":"2026-07-06T22:42:30.489Z"} +{"cache_key":"0d725c49ac139480f0ef7e6895bc4012309fbc01ae635ba5ca7ddc113fa8ec04","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"vi","translated":"Cài đặt và quản lý các khả năng tùy chọn.","updated_at":"2026-07-10T02:28:29.209Z"} {"cache_key":"0da46cd0aae513abd577bae97fb687d7ab39a3376d092be22f03770d398a2a4c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"vi","translated":"Không","updated_at":"2026-07-05T14:40:16.834Z"} {"cache_key":"0db7f62dda4fd08d422dea5d7fcc0baf1786e1534bc4589f9e434a5e0ca44930","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"vi","translated":"Đã lưu","updated_at":"2026-07-09T10:01:43.734Z"} +{"cache_key":"0dced86b613fcf25bff420077c149a9868dd362c34512aba205816dd249acf14","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"vi","translated":"Đã gỡ bỏ {name}. Cần khởi động lại Gateway để áp dụng thay đổi.","updated_at":"2026-07-10T02:28:40.838Z"} +{"cache_key":"0df41b92665e235a715163bb2a5d87ffb19b6e48130b597be57e8f6e28dae52f","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"vi","translated":"Do kết nối Gateway đang hoạt động báo cáo; tách biệt với bản dựng Control UI này.","updated_at":"2026-07-10T09:47:43.124Z"} {"cache_key":"0ee84b717638ebb2f43c2beaf3296694880bcab1f683958ba4058844d6af596c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"vi","translated":"Mô hình","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"0eebd1047391594267f771ffcad06b28d41eaa172133eb370348e40c5097932b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"vi","translated":"Nhóm thiết bị Codex","updated_at":"2026-07-09T10:01:43.734Z"} +{"cache_key":"0f63132c02d87058445248b616631cd6b61529ac6ec55a30a7c63023be9da72f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"vi","translated":"Plugin chính thức","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"0fa404f674d2a43095ec212e373bf39241667383730a3c917416f659cda0e960","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"vi","translated":"trực tuyến","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"1003da6e2d5ed4409cd9b7d2cff9fe68fb89f6a74afaa243bfbf430c3716a794","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"vi","translated":"Không tìm thấy micrô bổ sung nào","updated_at":"2026-07-06T17:34:03.620Z"} {"cache_key":"1031a8b3ca50fd073590424aa37a1ca975268625d7b9b6d4f809eaf6751edda5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.restoreSession","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Restore session","text_hash":"35e4dc9befd3b3a29b50938839af0efb41b08051988dde53e1c1e73d1c2a039f","tgt_lang":"vi","translated":"Khôi phục phiên","updated_at":"2026-07-02T14:31:04.850Z"} {"cache_key":"1044cfc9dd8ae87648af6835bd4c39dfda7b2e3e4009f21dbc6a933013c8995f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"vi","translated":"{parent} (thiếu)","updated_at":"2026-06-16T14:17:17.661Z"} +{"cache_key":"10483d5a55a09b8e79526399fd1f137b0458fee256bec6e88cbc1e55c444faee","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"vi","translated":"Gỡ bỏ","updated_at":"2026-07-10T02:28:40.838Z"} {"cache_key":"1062efa4470a15fc8b6099247f4cc1a3c08781eff29bd02d12c267269b326271","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"vi","translated":"Đã kết nối","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"10f3c94c45878e5edf7e5d8026880ebf343d1db442736dcc286f448641bc0f12","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"vi","translated":"Chi tiết thẻ","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"10fff5164883b072e3b6fe44ce6d2eabef5c92e5673e7ce882ca636ce4504c43","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitDown","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Split down","text_hash":"8730b89df7caaf5b5090f9b7365a0a03e0a13d9682dc6418f556b8a676d9e98f","tgt_lang":"vi","translated":"Chia xuống dưới","updated_at":"2026-07-06T07:24:19.510Z"} {"cache_key":"111eab03141a588b9708246e0a13ecebece640be3d5868ec5dc715b16f3f13ab","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"vi","translated":"Làm mới không gian làm việc phiên","updated_at":"2026-06-16T14:17:17.661Z"} {"cache_key":"113d03230e1da7c24f8ae80039f27ff71e2fd8ff230cf0a977faf74d40bf3683","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"vi","translated":"{count} máy không khả dụng. Các máy khác vẫn khả dụng.","updated_at":"2026-07-09T10:01:43.734Z"} +{"cache_key":"11bb9fe5e6625d4ae5d06e4b1be963be954842dd905378e6d1e15dac4e0b7a4b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"vi","translated":"Chưa cài đặt plugin tùy chọn nào","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"130b80bdda67da9c4ea125caaf5870283b421f71ea9c69bef99e5def64717666","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"vi","translated":"Độ nhạy","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"1406e16c3ca4daff4c49c195129977b2b50f03248f4f714c1495d025ca72ccff","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"vi","translated":"Giao thức worker","updated_at":"2026-06-16T14:17:10.180Z"} +{"cache_key":"140fbfbbdd9084c4a88a2ba126f4232eddf72d0ab9bb3bccedfade70ba51e08a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"vi","translated":"Cấu hình","updated_at":"2026-07-10T02:28:40.839Z"} +{"cache_key":"144052918cde555a777cd45eb0089a228628e47569572505e75aacf71361053e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"vi","translated":"Tắt {name}","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"14962bfabd96527927263394ac2e3ea08fddb11a1a0e9e00105f41bd202a4401","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"vi","translated":"Thẻ được gán rõ ràng cho agent mặc định đã cấu hình.","updated_at":"2026-06-17T14:17:26.553Z"} +{"cache_key":"14a8162372567aab89fe2f847f15f7ae4533973163cd53c27b82221e61932306","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"vi","translated":"Cài đặt","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"14bac3ab2ccc1f19030ecbae4a7fb09b7f0947839d8cbbd590a26769576f6eb8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"vi","translated":"Danh mục phiên không khả dụng","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"15ff85432f514605f1663f559847fc3ac442d74d05b2ce334bca2131d7b5d21a","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"vi","translated":"Tạo snapshot và xóa {name}?","updated_at":"2026-07-05T21:01:34.014Z"} {"cache_key":"184025cec6aa484782d74899df65dcc6ae3a27d8cbcd2522fe3a9df609d61982","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"vi","translated":"Không có tệp phù hợp.","updated_at":"2026-06-16T14:17:25.260Z"} {"cache_key":"1993aaf788f638beb92060e8ca62ac3dcce58dfc8658cbde6684e6f6bec3ab59","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"vi","translated":"Kho lưu trữ","updated_at":"2026-07-05T21:01:34.014Z"} +{"cache_key":"1a1ed89929732ca15d26b1cfdfc81aa103ca3d8bf5ebbc5ed0eec7e5df32c04c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"vi","translated":"Plugin cộng đồng trên ClawHub","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"1a51d38dfdd4de7b887800b71759d7e1e36cd30aa5085fab63e7f5d19d0457be","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"vi","translated":"~{percent}% ngữ cảnh đã sử dụng ({used} / {context} token, xấp xỉ)","updated_at":"2026-07-09T07:40:49.631Z"} +{"cache_key":"1bf87e3dabe3fc84ba4c23c0c8458188b8acd66dba26a2738137346959c97efe","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"vi","translated":"Không có plugin đã cài đặt nào khớp","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"1c2f509e704976a9c1665cc7d1b3d6c4154712e28ba6d08091a1fceb2ef40428","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"vi","translated":"{count} token đầu vào","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"1c70440c81ea3b2bb606cb75485bcc91cc0a06a3874aad1a2c1f2c56f8defa2d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"vi","translated":"Đã tắt {name}. Cần khởi động lại Gateway để áp dụng thay đổi.","updated_at":"2026-07-10T02:28:44.198Z"} +{"cache_key":"1c81a2539e341921e68324b0abb795e7e6849f29c1d6928eb98eec9e6990dedd","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"vi","translated":"Đã xây dựng","updated_at":"2026-07-10T09:47:43.124Z"} {"cache_key":"1cc86cbae57d23d9de033dde8008cdfc1b69a4a87295583132132ceac4c5ba38","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"vi","translated":"Không có phiên nào trên máy này khớp với từ khóa tìm kiếm.","updated_at":"2026-07-09T10:01:43.734Z"} +{"cache_key":"1cfa24dd604e5cfd46f4575832b5fd1725b7032e7a61dbd652495c8799531346","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"vi","translated":"Không thể làm mới cấu hình Control UI: {error}","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"1d64ba17a78b897dbf06c991e38f4fc02ac4463b9012fce47d57364c3d0935e9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"vi","translated":"Xem trước","updated_at":"2026-06-16T14:17:27.580Z"} +{"cache_key":"1d6beb7634f04c0a42e9560879ea714e82571fead7f957fe9b7c4ff195b2cf3c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"vi","translated":"Nhà cửa & phương tiện","updated_at":"2026-07-10T05:22:41.820Z"} {"cache_key":"1da695dc1575bf92d30da82b06ee0456965be23959d7f8a75dbe6dac623918e5","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"vi","translated":"Dọn dẹp ngay","updated_at":"2026-07-05T21:01:34.014Z"} +{"cache_key":"1da741b5d3b4b2293013ff1ff880d3ce3504ec807ea978379d35693f20778a95","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"vi","translated":"Đã thêm {name}. Các phiên agent mới có thể sử dụng ngay.","updated_at":"2026-07-10T05:22:41.820Z"} +{"cache_key":"1ec3ce016e0381bf219d7653bee260c65a2aeb170e27f5ba64a3b063c42f9b86","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"vi","translated":"Đã thêm máy chủ MCP {name}.","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"1fb0971a877706ab15b4e4eed9456ec22a4352a3ba5bcdf68072215c33d31183","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.title","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Context usage details","text_hash":"0e04e44654b5a2abf769dcd2f82a32e0501a41689d6635d7f718978c160958f0","tgt_lang":"vi","translated":"Chi tiết mức sử dụng ngữ cảnh","updated_at":"2026-07-05T10:16:30.856Z"} {"cache_key":"1fd98e657e50be6b5bc8e307f98eaeb14c21192938e81d92fa51ca6e71d93ec0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"vi","translated":"Phụ thuộc","updated_at":"2026-06-16T14:17:17.661Z"} {"cache_key":"21a88c314891be44781519fd6b3b6347f030f523b9820d4236c9a17c0e1ab1ca","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"vi","translated":"Đã cập nhật","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"21ff19bd0584a704efa8fd81922fdc04e4d8cce51679102eebd804f1b65f4bcc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"vi","translated":"Bỏ qua lỗi Talk","updated_at":"2026-06-16T14:17:17.661Z"} {"cache_key":"2239306983ff58ec6e37da74a2130ae012023ac676f57f1d482145ced179e186","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitHours","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{hours}-hour limit","text_hash":"c9091350c3c5c4e3c54dae43eec58cd35555724276a0acc388b98239a573f9df","tgt_lang":"vi","translated":"Giới hạn {hours} giờ","updated_at":"2026-07-09T11:49:52.117Z"} +{"cache_key":"24ff707c9791c586264d12a978362788372e75a436f80a6d39982864abd788ad","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"vi","translated":"Kết nối với gateway để thay đổi plugin.","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"261907465e05ba45d23b58fae6a406c96832110418d80622691c8e4cbf51836c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"vi","translated":"Chế độ xem Workboard","updated_at":"2026-06-17T14:17:26.553Z"} {"cache_key":"26d329290a42d303c5308bbd8874a1f271c3109f39d8726190c462b4ee753f78","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"vi","translated":"{agent} (mặc định)","updated_at":"2026-06-17T14:17:26.553Z"} {"cache_key":"27020eca4194390c1d6c6d726f16773d20d636ebd555805d7fb8087695dfac3b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"vi","translated":"Thêm trong phần Cài đặt","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"2725f302d56a6d37b682bb8f6c60f97bf6b45bf5eada90ac70ca68b9c9f261f8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"vi","translated":"Chính thức","updated_at":"2026-07-10T02:28:40.839Z"} {"cache_key":"2735af4ed466913d1bd516bec06e5a1920b1d82abbbd0f2092692f157e3dcec6","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"vi","translated":"Worktree","updated_at":"2026-07-05T21:01:34.014Z"} {"cache_key":"273cd1fc799ddbfcc230ba3a34cd6ee5304cdfcb8b3decf891cc0544fbe56ef5","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"vi","translated":"Không bao giờ ghé thăm","updated_at":"2026-07-09T20:51:54.489Z"} {"cache_key":"27cd05675a4f1b25b7077b435f192156771363907bd1080d5ccc67d74ea56192","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"vi","translated":"Sắp xếp phiên","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"2816f0a25d1f36da17875f700291ff5c329bf383cb06b83d31c17e6000d22684","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"vi","translated":"Bật {name}","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"2849edc158323bc9d9b9b2978c0a33a6e96bb5adf07bf097dac3f478920b6570","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityLow","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Low","text_hash":"f793de205ead5ac302c4a1627829dea41f176b1068b993a32373fc869918374b","tgt_lang":"vi","translated":"Thấp","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"287da8512d992495b3ffc6b1aba4397ac20fd6a2d688048b74e4199f0853cc10","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"vi","translated":"Tệp dự án","updated_at":"2026-06-16T14:17:25.260Z"} {"cache_key":"29046707558fe417d969e6df6ca77728fcd0dbd05518115494302083230e2299","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"vi","translated":"Xem xét, tinh chỉnh và áp dụng các đề xuất trước khi chúng trở thành kỹ năng đang hoạt động.","updated_at":"2026-05-31T21:48:40.396Z"} {"cache_key":"299e003e1fcfab65402a658e6fbd5ad05c4ab7a925678d3eca0bec1ebbfdaf17","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"vi","translated":"Tùy chọn nhóm cho {group}","updated_at":"2026-07-06T23:41:17.640Z"} +{"cache_key":"2a5cc42c3240c30de0837e876881269ed150eed88befdbbc1965883140704730","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"vi","translated":"Đã bật {name}.","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"2b120af49ebbf648655ecc52257f419513e4510f122d808e8e9a4af10175c2ba","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"vi","translated":"Tenant: {tenant}","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"2b7d92e73f365da2f775562b0c2c7a2377e6b445b4298a2d34f04ffb30b515cd","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"vi","translated":"Hôm nay","updated_at":"2026-07-05T14:40:16.834Z"} +{"cache_key":"2c8a374aa23d1872610e056f18b4e6404ce3fc9d59e7c21a2e311401137982d9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"vi","translated":"Chỉ duyệt. Thay đổi plugin yêu cầu quyền truy cập operator.admin.","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"2cbc80717814d450211e678406c3c6ae212fff855a012ea340b3aee717288f60","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"vi","translated":"Nhóm theo","updated_at":"2026-07-05T14:40:16.834Z"} +{"cache_key":"2dd91efc0339416bcba78848a5239cb8a10134b9943897c3b95f72b7c791c358","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"vi","translated":"Khác","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"2df6eb3758595245f408bc2a93b6e0f271c880a49ac2379e6406473c9fba0558","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"vi","translated":"Dùng cuộc trò chuyện hiện tại","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"2e4d6d9f379baebe01fdc99255c2d273555ac7d124b521d92b781926e6917cbd","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"vi","translated":"Bộ lập lịch","updated_at":"2026-07-09T21:53:38.389Z"} +{"cache_key":"2ef008dedc4b347a3d7a4b99e32b73cf5c4692a11ef813ae59e3560d7529e3a5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"vi","translated":"Xem chi tiết","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"2f7b471c68baa82250380907a8b6f4e8d762b172a53679b7bc7acd64df69d938","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"vi","translated":"Hành động","updated_at":"2026-07-05T21:01:34.014Z"} {"cache_key":"3018088bf994335e79a2ccc0d40b848fc15f74fce6d15379e623d436f771b384","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"vi","translated":"Bảng: {board}","updated_at":"2026-06-16T14:17:10.180Z"} -{"cache_key":"34b1080bb4576fa9a8a1a492ddb423bc528f0027af9ab8b0589e7767e8ade1b5","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"vi","translated":"Gắn xuống phía dưới","updated_at":"2026-07-10T06:08:43.795Z"} +{"cache_key":"30af03451a5df2ea5404486e58d744726419815c39f2ba00c0005fbecfdb4c28","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"vi","translated":"Plugin mã","updated_at":"2026-07-10T02:28:40.839Z"} {"cache_key":"356b19869b1e2bf6eecb2fd221450379802c32d3234af567c267d65155ad3087","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"vi","translated":"Thư mục cha","updated_at":"2026-06-16T14:17:25.260Z"} {"cache_key":"35e8a8360ba8180b7e8ed413260da6e5fd4e9bea353101b3abbe8e51939a84ad","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"vi","translated":"Mặc định hệ thống","updated_at":"2026-07-06T17:34:03.620Z"} {"cache_key":"362f7c960bb1f6c90a15553b6e9e9994c1c7cef0f014484d05ec423789a0a05a","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.usageCredits","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Usage credits","text_hash":"fbc841b791a14110e06a9913d3d69153b9cc4cf9542b856821b357a09a7c08a4","tgt_lang":"vi","translated":"Tín dụng sử dụng","updated_at":"2026-07-09T11:49:52.117Z"} @@ -74,17 +105,21 @@ {"cache_key":"376ab10e7b6a84be26bacd3abcfb29611dcb2bb6a3a8b2764b683e25d1f00ed3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"vi","translated":"Giữ lại bình luận sau câu trả lời cuối cùng","updated_at":"2026-07-01T01:08:40.341Z"} {"cache_key":"37e1b972340d8c2b5d14328166f22dff7683c48e7e618680b94cf4a5846e3395","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"vi","translated":"Ghi chú mục tiêu","updated_at":"2026-05-29T21:02:23.226Z"} {"cache_key":"38fcbda0f478a660b8d7d0db12cca986413bb3b69543f5ed9e83d95945c55e6f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"vi","translated":"Trình duyệt này không thể liệt kê đầu vào micrô.","updated_at":"2026-07-06T17:57:16.954Z"} -{"cache_key":"3901fe5793250ea308dcd907a92b13633eb3656a44af1f61f711ade1d75305fb","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"vi","translated":"Tiếng blub nhỏ khi chạm vào","updated_at":"2026-07-10T04:50:41.198Z"} {"cache_key":"3937a370a4335e7b1a33220a517da0d93320c51ac320c9353c96f1ab66f1fc18","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"vi","translated":"Hệ thống","updated_at":"2026-07-09T08:08:12.733Z"} +{"cache_key":"3984ab01ad0f53797ea3a25d7c1c14e30dd65f54bc26e3da76f0d55b3f34b675","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"vi","translated":"Đang cài đặt…","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"3a8f0a310ddaa39e344e37549b5dd115a9b4b35d3ab0c97097eab590a426c37c","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"vi","translated":"7 ngày","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"3aa2159e13c94f470f740b58e0d9659e3921a98778ccda650eececd1a8260f35","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"vi","translated":"Chế độ xem chỉ đọc, hiển thị các phiên Codex trên Gateway này và mọi máy tính được kết nối đã bật chia sẻ phiên.","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"3abda16ef2ec34f742c6c9ac3546f7e0e4dedf843af7fba25bfcc3365b1d9bee","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"vi","translated":"Kết nối","updated_at":"2026-07-09T08:08:12.733Z"} +{"cache_key":"3ba70d79f7c47ba6833f6cb0b82183f9c841fe56e71a462a02fa3861243890ec","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"vi","translated":"Phiên bản","updated_at":"2026-07-10T09:47:43.124Z"} {"cache_key":"3c55b509d2b7d4d4af2d96aa24ce93cccfe8dc5524ed4c057044896b8b402f41","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"vi","translated":"Phiên","updated_at":"2026-06-16T14:17:25.260Z"} {"cache_key":"3db0d3a8795a25e261c1340ce03720dda9b84d43fef693adea1c4d425b672f2e","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"vi","translated":"Không có worktree được quản lý.","updated_at":"2026-07-05T21:01:34.014Z"} +{"cache_key":"3db4436163f3d54ab6290e001b5aa732b3022324930412c4e114bc77bbee91dc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"vi","translated":"Đang chuẩn bị tìm kiếm…","updated_at":"2026-07-10T02:28:29.209Z"} {"cache_key":"3f7173ad7d25016c1709c66ceb34c6f2347503fde9ed638de2c558c1216a1bb8","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.budgetValue","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{used} of {limit}","text_hash":"e191398f92416f35cb6279f7206d2b67cdee04ce46932a1ece17c8c18ca3636e","tgt_lang":"vi","translated":"{used} trên {limit}","updated_at":"2026-07-09T11:49:52.117Z"} {"cache_key":"3faca6c079e1806d45c2701efe2a5d74cd24e183c62467548e9c8da220168eb2","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"vi","translated":"Xưởng kỹ năng","updated_at":"2026-05-31T21:48:40.396Z"} {"cache_key":"410164dfe55960ae6b69b11130219635d873542ce478b8c68726601922e07a1b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"vi","translated":"{count} hiện vật","updated_at":"2026-06-16T14:17:25.260Z"} {"cache_key":"411f71155374284980fe2854055676fad0b3d61dd19eed2d4f4ff976e9f6e695","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"vi","translated":"Gateway","updated_at":"2026-07-09T10:01:43.734Z"} +{"cache_key":"41ccabd33f4c81204bd7690f7e58a804621ac07945874eefd32f9744cc468096","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"vi","translated":"Khả năng OpenClaw tùy chọn.","updated_at":"2026-07-10T02:28:40.839Z"} +{"cache_key":"4214922c26d649bdaf298bd1053aa269d37874e774a959553e994bfcb82a69eb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"vi","translated":"Lọc plugin đã cài đặt","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"4223a3607d66a194c2711ddcab958a17014724bae27c78f3a6ed033fa458ae1a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"vi","translated":"60s","updated_at":"2026-06-17T14:17:32.599Z"} {"cache_key":"42c6f57368198afb4b1d0a696b840be0152464e5b151287d23fa2b27855eaafe","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"vi","translated":"Sẵn sàng","updated_at":"2026-06-17T14:17:26.553Z"} {"cache_key":"42f873f22a0acde4b59893441ee42f2b82543e9b2c914fd4a40e1449061325b5","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"vi","translated":"{count} token bộ nhớ đệm","updated_at":"2026-07-06T06:40:15.357Z"} @@ -92,51 +127,73 @@ {"cache_key":"43e1dab3c0c189390d85730c73dbf425c6ece5512d1678ec02f4afff4210fd00","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"vi","translated":"Không có phiên đã lưu trữ trên máy này.","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"43f1e8210c4b51a6b7bec6e129f9c12e423963303ff465536947c0b5f0f77a3b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"vi","translated":"Tác vụ Gateway","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"4421114ce074a4ddc981bbe4a0750c17823a5bca521ade682860d8953ca82b0f","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"vi","translated":"{count} token đầu ra","updated_at":"2026-07-06T06:40:15.357Z"} -{"cache_key":"445c71c47681d3f6afa1dd88c46fc2e16df9329ca89883d56c4b31141e177e76","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"vi","translated":"Âm thanh tôm hùm","updated_at":"2026-07-10T04:50:41.198Z"} {"cache_key":"4497e0b1d5e4ddd804d27801124f80cb68e194437186485eee19b94fcbfa7af7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"vi","translated":"Tóm tắt workspace của phiên","updated_at":"2026-06-16T14:17:25.260Z"} +{"cache_key":"4512598856eabeea9ba21806d41a07da95b987b8fc0b09a4ca936c2576e967c2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"vi","translated":"Đã bật","updated_at":"2026-07-10T02:28:40.839Z"} +{"cache_key":"45c1438497af6cb9def87f8675f8271a68cb0324ac14e7ce891a0aa4c39e176e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"vi","translated":"Tất cả","updated_at":"2026-07-10T02:28:33.498Z"} +{"cache_key":"45c16cf300d96569c8d933af6cfde45ff34df01009163ac2f558a5d7c8cc7731","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"vi","translated":"Xác nhận rủi ro và cài đặt","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"4709f3f05a8885ee0f0311427f5752c6d19a17a8642c752448bdae222141c8e5","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"vi","translated":"phiên","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"482dc8766aa1cab4be6818d438e20129df5647d6a57df88d3b8ac63376ddc0cc","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"vi","translated":"Đổi tên phiên","updated_at":"2026-07-02T14:31:04.850Z"} +{"cache_key":"48bdeb3979cf100cb3b81b2968ebe4d654f6b4b8b44b05c0c94fd9ef3a47a421","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"vi","translated":"URL hoặc lệnh","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"49020763d06b77a407103bfd9e9d128f059a5650c1fd015ef1d4e38f1b77c55b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"vi","translated":"Mở cuộc trò chuyện","updated_at":"2026-07-09T08:27:28.038Z"} {"cache_key":"4a41ed8aa4beb8e5d676d787174f4d22869a4dc810260b71d511344cca453c1c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"vi","translated":"sẵn sàng nhưng chưa gán","updated_at":"2026-06-17T14:17:32.599Z"} {"cache_key":"4a4a9b077bcfe10a780700254f7ddb35a304256d65c5d556bb4cf094ca7c7d77","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadingMore","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"vi","translated":"Đang tải…","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"4afba6d5b2d76fd54000541770afb9aa6be72bf8835f2d63ae40506666dd936b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"vi","translated":"Nhóm tùy chỉnh","updated_at":"2026-07-05T14:40:16.834Z"} +{"cache_key":"4b17587497e581417747ebba0d0d07107502a8c4f9af038b2cf4528197260e4b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"vi","translated":"Thêm máy chủ","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"4bca752bc46ee4ca4bc78009b232268c99c61efdc1019b208f554d46f1d205a6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewBlocked","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Blocked","text_hash":"18f2a0947f9d6523991b29b450307f22773f57d65f7efb98d48a167df04d6b1d","tgt_lang":"vi","translated":"Bị chặn","updated_at":"2026-06-17T14:17:26.553Z"} {"cache_key":"4c74edfb54a5ecf9dd063a7d98c9c5bd6f8121ed0ab82f73a96195dfb66a11a7","model":"gpt-5","provider":"openai","segment_id":"usage.overview.costShare","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{percent}% of cost","text_hash":"1d0533da07d6ee21af9d1d02f4636bd9f70df239ad62388b0a415e550ee2de8b","tgt_lang":"vi","translated":"{percent}% chi phí","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"4c96ce246c10b4d4c08480fc146e9264793966f097ecc6e64048812acd3807d3","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.closePane","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Close pane","text_hash":"7fa0f9613d919e167b0f9aa03c22809d446af293eb6c3bac6866bae66d2656c9","tgt_lang":"vi","translated":"Đóng khung","updated_at":"2026-07-06T07:24:19.510Z"} +{"cache_key":"4ceb66046e3991b92fe5beb2f26d4bc643ae404cac9b1cd17a303b0351103e47","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"vi","translated":"Tên","updated_at":"2026-07-05T21:01:34.014Z"} {"cache_key":"4d5d732c0b257d898def9aac66df12272987df7442ae142fd9a1e7e269da0193","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"vi","translated":"Nhóm mới…","updated_at":"2026-07-05T14:40:16.834Z"} +{"cache_key":"4e98b24d40aa6b11677916756cd49577eb76184783fd5424b9ccf7fbd8510ad5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"vi","translated":"Kết nối để duyệt các plugin đã cài đặt và được đề xuất.","updated_at":"2026-07-10T02:28:40.838Z"} {"cache_key":"4f5d3ae108a440dcdab768442104b8ed78a21533cc83b145efba8426826b9ce2","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"vi","translated":"Sắp xếp theo","updated_at":"2026-07-06T23:41:17.640Z"} +{"cache_key":"5038c8c0287bb20d2e48eaf7a479bce14f71d7d468e7a75345d54a321dad70b4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"vi","translated":"Tìm kiếm ClawHub","updated_at":"2026-07-10T02:28:29.209Z"} {"cache_key":"513e40d6aedb7f3133746e83ce51293870ce032d05089713f0b69f24debee4b1","model":"gpt-5.5","provider":"openai","segment_id":"connection.offlineHint","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Live updates and actions are paused until the connection returns.","text_hash":"7a60105cdafb6aa95b9081a370308a9ccd495199c9bfb90d3e0f70af68680f26","tgt_lang":"vi","translated":"Cập nhật trực tiếp và thao tác bị tạm dừng cho đến khi kết nối được khôi phục.","updated_at":"2026-07-05T21:55:55.058Z"} {"cache_key":"51c6e1587421aeeb21a152bbff7bdb7d40c6415cc36341621a5727584194fa0b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"vi","translated":"15s","updated_at":"2026-06-17T14:17:32.599Z"} {"cache_key":"52d6527f45933c594b5c5b45bb6acaf672203ed7158633f252ecbefb27ef4c73","model":"gpt-5.5","provider":"openai","segment_id":"connection.lostTitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Gateway connection lost","text_hash":"ec6cd265976239ff6fc4f227bb25e8e6286fe38c3d1c64326dcdbb76c28b515e","tgt_lang":"vi","translated":"Mất kết nối Gateway","updated_at":"2026-07-05T21:55:55.058Z"} {"cache_key":"530f2982ecd7d8033c4bcdb270e90d38c32fbd4b05dd96f2f6230ba630df56e0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"vi","translated":"Thiếu bằng chứng","updated_at":"2026-06-17T14:17:26.553Z"} {"cache_key":"5353590733865851f80b796f5e44f229d4a00567a190b2904c77fb3585805f94","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"vi","translated":"Hoàn thành gần đây","updated_at":"2026-06-17T14:17:26.553Z"} +{"cache_key":"541ed866a61244cdf2486d92f83031ab283fe7bd826aaa36a24cebd75ccd3927","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"vi","translated":"Làm mới","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"5480a71b878a056c059169dff767c781351f0034acde42635d36d9f059382b23","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"vi","translated":"Ngày","updated_at":"2026-07-05T14:40:16.834Z"} +{"cache_key":"549094f1515c3190e84dc657aef8677e77e1de2683e5dd3b83957b23801bccd4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"vi","translated":"Đã tắt {name}.","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"55fb0ec86b311fd7604341bf2d46666f01c708d361b36adeb65536e40c498099","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"vi","translated":"Tắt","updated_at":"2026-06-17T14:17:26.553Z"} {"cache_key":"563e6516ff128387b5704a285621ce812930babb936cd00c518a5b6cd2b4a01e","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"vi","translated":"Danh mục chi phí","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"5726fb2125863893ba5476fd28508692ef5ed2eab90d2cb302762af6e8ee8b20","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"vi","translated":"Tình trạng Workboard","updated_at":"2026-06-17T14:17:32.599Z"} +{"cache_key":"577ec3e0084e96cd6339c82d6b44859717a1f9984df69ac7e9f6dca5c069080d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"vi","translated":"Nhập URL http(s) hoặc dòng lệnh.","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"5852b07c70f8bce6c1417140a4c0946f03408053febdbdcdc627586584dd7fbb","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"vi","translated":"Cập nhật lần cuối","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"58a44dada88d4aa3eb5070c040e389313e42a870a142fc5f9f7fe565510dd9eb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"vi","translated":"Đường dẫn workspace","updated_at":"2026-06-16T14:17:25.260Z"} +{"cache_key":"58fda5a37515989d3209b56b2a12c458f8567e1877dcfd74f3721dcb4773b76b","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"vi","translated":"Control UI và Gateway đã kết nối tạo danh tính bản dựng.","updated_at":"2026-07-10T09:47:43.124Z"} {"cache_key":"59a4c54831988709ba56e3f7b26a981e9d2e877d236e59a0d346ac47c0ca7ca9","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.subtitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Calendar windows ending {date}","text_hash":"f01adb920b86724f393ee7bca5ea4a90bd5a777d39f6191ed9c13530ceb7851d","tgt_lang":"vi","translated":"Khoảng lịch kết thúc vào {date}","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"59ccde94b1b66c5db5fb7d868c85e427814f84078ba4bb93b197a39e43506ced","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.badge","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Expired","text_hash":"424a2551d356754c882d04ac16c63e6b50b80b159549d23231001f629455756e","tgt_lang":"vi","translated":"Đã hết hạn","updated_at":"2026-07-01T10:33:49.015Z"} +{"cache_key":"5a9d93a88eb2658ba05646e89b032ae24aba812f4e83661a4f97c44a086defbd","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"vi","translated":"Sao chép đầy đủ hash commit","updated_at":"2026-07-10T09:47:43.124Z"} +{"cache_key":"5ad35a06458b92c13031e2e5804761dc79ee26ee891de03bd3ce08f8ac7cd439","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"vi","translated":"Danh tính được nhúng khi artifact trình duyệt này được xây dựng.","updated_at":"2026-07-10T09:47:43.124Z"} +{"cache_key":"5bff7f3ec40898df68465ee168fd3fc2e8339e918a21cd4382d2670d0b9fb333","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"vi","translated":"Nguồn","updated_at":"2026-07-10T04:28:49.893Z"} {"cache_key":"5c0c3da570ff248deed1e4703144a45b2a1ebc4074b7fb5a33bb5bff8500228c","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.lastDays","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Last {count} days","text_hash":"4aa456a0fa9b73dcc14766740b19fc52c452950ccb7bc892499c3c29a4122162","tgt_lang":"vi","translated":"{count} ngày qua","updated_at":"2026-07-05T20:24:32.108Z"} +{"cache_key":"5c39e320ece509fcf884db46fb4cd05ad668a9c5cf635fd80e68b090f08cc532","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"vi","translated":"Danh mục","updated_at":"2026-07-10T04:28:49.893Z"} {"cache_key":"5c8b9f2091735ed4f662e3ad3ee25af389be1228f12817bab6401bbb18bfd9f5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"vi","translated":"Chẩn đoán","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"5cb5a3b381eb5bdaf231728695a7989fd26367260dfcf5a1ab11aff2f4e451e2","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.splitRight","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Split right","text_hash":"aa9997bb1d8c23d0b88521c4093fc8c3ee01b187f78635ae4d3e16d27e8a8475","tgt_lang":"vi","translated":"Chia sang phải","updated_at":"2026-07-06T07:24:19.509Z"} {"cache_key":"5cc0c473c35ab990c68ace357a909dc84eb9bc73ff89285f6d8fa1be55e0b7d4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"vi","translated":"lần thử thất bại","updated_at":"2026-06-17T14:17:32.599Z"} {"cache_key":"5cf24a6f39ae18371c63b14000db27cd71524f550baa218accfae35a1dc0b38e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"vi","translated":"Đang tải các phiên Codex…","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"5d329343c2e83cc86955b3763f4472e3a6ad42e227dbe492787bc4024b2e9268","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"vi","translated":"Hôm nay","updated_at":"2026-07-05T14:40:16.834Z"} {"cache_key":"5ed76162eb248a8653388562755b7530f0576db57448606bf44827750b189ba0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"vi","translated":"Làm mới","updated_at":"2026-07-09T10:01:43.734Z"} +{"cache_key":"5f2cf42334050df9bec3d04264bce3e560e7a6ff6e285f6ceb06cc3fcd746731","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"vi","translated":"Đã bật","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"5f3ae080e4f68d4a1db63ac7bb3791767e2a66b18b59767f68d568513ccb59a4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"vi","translated":"Chưa có tệp nào được chỉnh sửa trong phiên này","updated_at":"2026-06-16T14:17:17.661Z"} {"cache_key":"5fb21ed031fab4b2929050fac823e8407d8772434740bee3c03ce6a94585234e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"vi","translated":"{count}h","updated_at":"2026-06-17T14:17:32.599Z"} +{"cache_key":"600e9748656a4e02ed9c0ae7f27614c07d3afbae81bcfb8d3eac5e89e3167a48","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"vi","translated":"Duyệt ClawHub","updated_at":"2026-07-10T02:28:29.209Z"} {"cache_key":"607230e2802532d4d3edc81d2e41e831d54031f4684333109bb5007387bb5452","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"vi","translated":"Đã dùng {percent}% ngữ cảnh ({used} / {context} token)","updated_at":"2026-07-09T07:06:35.598Z"} {"cache_key":"60b2771d5ca89ca701f8c340ca5963df2a3770c233fc2835ee6c27d7e0a2fb79","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"vi","translated":"Worktree được quản lý","updated_at":"2026-07-05T21:01:34.014Z"} {"cache_key":"60b914baf813cd34a8942785e4e29ec278c7b5cd615241a0ab76088178e578d9","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"vi","translated":"đã tách","updated_at":"2026-07-04T21:24:04.456Z"} {"cache_key":"611a8dac5e35eabb5527decc9b97df09907e2a85a53ca2544b9827790eda9c8c","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropOpenHere","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Open here","text_hash":"b08e2fd2e872adcb575b305187b9db8482369325806953ce80190fc2dc1ab9fb","tgt_lang":"vi","translated":"Mở tại đây","updated_at":"2026-07-06T22:56:36.739Z"} +{"cache_key":"617f68dd0dd39a2db94f28446c8d180d5b48ca5835aa4cf4bcb408b58a22e189","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"vi","translated":"Đang tải plugin…","updated_at":"2026-07-10T02:28:29.209Z"} +{"cache_key":"619445038cf0860193c91aedf670ece62cae755b91e5813702a334c97f7857f1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"vi","translated":"Cần chú ý","updated_at":"2026-07-10T02:28:33.498Z"} +{"cache_key":"622142fe5a3b9fb78e8441c1c497d81981388347ec2445d94689342891d13498","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"vi","translated":"Plugin","updated_at":"2026-07-10T02:28:29.209Z"} {"cache_key":"62549420b352ce02b3febeaa7784233d56c6b36e11dc4027779ee15c35619da8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"vi","translated":"5s","updated_at":"2026-06-17T14:17:32.599Z"} {"cache_key":"62dd0753721fc0596b17c3fe5e2b7a27cc26917e440764713e90a9add8ad62da","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"vi","translated":"Không có phiên đang hoạt động trên máy này.","updated_at":"2026-07-09T10:01:43.734Z"} +{"cache_key":"635d42363394bfc064e86a4f67cdaa41e6b55503d80310a24eeb34afcc90b4ff","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"vi","translated":"Thêm","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"638a65e2aabb16aeba45605c352e25d3f1f491bbee0ec98a4802dea1d87ae0b2","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"vi","translated":"Các bản checkout tác vụ agent được cô lập và snapshot khôi phục.","updated_at":"2026-07-05T21:01:34.014Z"} -{"cache_key":"6418da3954db5c9d13ffbb1ee79b54152ae1ca04c849cb5d9f8fd75408288937","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"vi","translated":"Đã ghé thăm {seen}/{total}","updated_at":"2026-07-09T23:56:17.613Z"} +{"cache_key":"645a869818ad5e75dd67a40191c5bbcdf7bd0c0188fb90755f50852f7e9d3233","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"vi","translated":"Nổi bật","updated_at":"2026-07-10T02:28:29.209Z"} {"cache_key":"64d8c348725fd0009710604354ba56526d0083ab4854ea499e1b7767b7dfaa12","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"vi","translated":"Không xác định","updated_at":"2026-06-16T14:17:17.661Z"} {"cache_key":"667debca469dfeae512c327f1eab61fad4c1cbac25be0ba79ab9903226348146","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"vi","translated":"Vi phạm giao thức","updated_at":"2026-05-30T15:38:47.755Z"} +{"cache_key":"66837f449caa8fe069a9663062330d04469b8b76ce2ac685b9ed7d892a57cc08","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"vi","translated":"Tìm kiếm plugin","updated_at":"2026-07-10T02:28:29.209Z"} {"cache_key":"66b343bdea67668ebb235c6e122d5dfd1bbfd0b9253fe1452b23d954fd4481be","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"vi","translated":"Đã đọc","updated_at":"2026-06-16T14:17:25.260Z"} {"cache_key":"67b7109c0bf9eb47e28be2c1de9369265f0212a26bc311d72f1686d8e48f687a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"vi","translated":"{count} hiển thị","updated_at":"2026-06-16T14:17:25.260Z"} {"cache_key":"687bcca75327bc0dfd9262a5ad1ae85b09522d2ad3e1b408819c9c6ac632aeab","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goal","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Goal","text_hash":"cdbf6975e8a35b0d03558be6822dfae166482c24fb86b0433f60e8167f5c91e4","tgt_lang":"vi","translated":"Mục tiêu","updated_at":"2026-05-29T21:02:23.226Z"} @@ -145,9 +202,15 @@ {"cache_key":"6b4a86b91e6d478dfab2ad4885900c41424b1b30a02eb5600df5545a7da0e7e9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"vi","translated":"Tự động làm mới","updated_at":"2026-06-17T14:17:26.553Z"} {"cache_key":"6c827d0ce71b8d9f382a3d6c1c4d451166fe39cac96f51f8a9484132faebe573","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"vi","translated":"Phiên Codex chưa có tiêu đề","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"6d3fdf6b70d9a942725b1fafee6aedfc48ac8733030bff3e3acf4aa28d6567b1","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"vi","translated":"Tạo snapshot thất bại: {error}\n\nXóa mà không có snapshot?","updated_at":"2026-07-05T21:01:34.014Z"} +{"cache_key":"6e67f5d234000dc7030c45893aa9dac64146008305254d9fe988fa53cc66f4ad","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"vi","translated":"Gateway ngoại tuyến","updated_at":"2026-07-10T02:28:40.838Z"} {"cache_key":"6e9175f527cd906481e840e8273c2324c84e13e497ebd0323df6e928d639d87e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"vi","translated":"Phiên","updated_at":"2026-06-16T14:17:17.661Z"} +{"cache_key":"6ef27f47b0d21c42c5e40bef4e94dddca59e8368f466d7c82f9f79f2e2c0e033","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"vi","translated":"Đang sao chép hash commit","updated_at":"2026-07-10T09:47:43.124Z"} {"cache_key":"6f5e3e6e0eb7c1bcbe1032effc6f94744ca43e32f4f08e3a431e66a90545cad7","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"vi","translated":"Hành động liên kết","updated_at":"2026-07-09T11:03:10.148Z"} {"cache_key":"6f78e5ecf196e5d888afd53dd1e1283eba16d77aab50e8dbe95aec42bf4f8beb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"vi","translated":"CWD","updated_at":"2026-06-16T14:17:27.580Z"} +{"cache_key":"6fb065ae258e3e34c0f55f0c52149996811fc301906b1756a3d35e3b74e9d92f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"vi","translated":"ID plugin","updated_at":"2026-07-10T04:28:49.893Z"} +{"cache_key":"71015d3fbe154d2a459ee07ccff055c3b7ccc1b6f102ffddd3717c4153880074","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"vi","translated":"Đang thêm…","updated_at":"2026-07-10T02:28:37.411Z"} +{"cache_key":"71b026198361a540679eff2c3cab9fcf29226b0c335b2fc522fa2b73f0e0ff34","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"vi","translated":"Tìm kiếm plugin","updated_at":"2026-07-10T02:28:29.209Z"} +{"cache_key":"7249442adc70053389b943c70e748aeb6605629a15bf332414fe459c4c8ddca7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"vi","translated":"Bộ nhớ","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"73cc4f3f4488b18e47190ab6385266a126216db5f51f57cd15356582d5bd6973","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.open","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Open split view","text_hash":"51e50f7be73433216ae62f58fdbc586372f5a6063ee9978cec96793ef75fa554","tgt_lang":"vi","translated":"Mở chế độ xem chia đôi","updated_at":"2026-07-06T07:24:19.509Z"} {"cache_key":"7489da649d88812f0cb8d046c9ba88655edbcddce508e0a8c695b771df4da8bb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"vi","translated":"Dùng cuộc trò chuyện hiện tại cho yêu cầu chỉnh sửa","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"74ed2dff5f91e2e915cf0aa816b80cd8ffe70ce8f90db90a218e30e2385116ce","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"vi","translated":"Cài đặt nâng cao yêu cầu quyền quản trị viên","updated_at":"2026-07-06T20:20:02.809Z"} @@ -156,36 +219,51 @@ {"cache_key":"761cd159fca651bd58f97de7fc19cf26793e2a54cd4511c9d35d328eaf76f0d5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnly","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Archived only","text_hash":"da7ebd8c482f38dc2a5b693a0ec25aaa04ea7b5fa3713cce9fa41a28f2201a6b","tgt_lang":"vi","translated":"Chỉ đã lưu trữ","updated_at":"2026-07-02T14:31:04.850Z"} {"cache_key":"766d8cd0a0db73b8dc57d664296683a7ef8ed2917fadad94246a2ca6e10cb54d","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.resets","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Resets {time}","text_hash":"5a0f8c1b2755ee505e02e19fadc7377ad48df63cc7d3399c20228fe3edc37cb1","tgt_lang":"vi","translated":"Đặt lại {time}","updated_at":"2026-07-09T11:49:52.117Z"} {"cache_key":"769364f96de69375a4d3a4165b813900e469996e05af6a60bb526cbaf6ef0b46","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"vi","translated":"Đầu vào micrô","updated_at":"2026-07-06T17:34:03.620Z"} +{"cache_key":"76f85be97b3b4774c1e7a3f2f35e13270a84791142538bb98d94874a25885b2a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"vi","translated":"Nhập ít nhất hai ký tự để tìm plugin mã và gói.","updated_at":"2026-07-10T02:28:29.209Z"} {"cache_key":"78516d2d73669f02772b158a096cde396288c1735ab77dc935854ac2b4fbb429","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"vi","translated":"Đang tải không gian làm việc phiên…","updated_at":"2026-06-16T14:17:17.661Z"} {"cache_key":"7af5f14251eb1ff4a30fd87fbb90658d5d02138ad9c713d0db6144b4ce7c7f65","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"vi","translated":"Điều phối","updated_at":"2026-05-30T15:38:47.755Z"} {"cache_key":"7b166db1d3c158f04a4664b80c83712ff40b410472c642be7e82dd2048241d1a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"vi","translated":"Tự động hóa","updated_at":"2026-06-16T14:17:10.180Z"} +{"cache_key":"7b710be1a3a68e65301b6b3f61fc7acb08d6102c698e919fed4f5b5d7c7b0a2c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"vi","translated":"Đã bao gồm","updated_at":"2026-07-10T02:28:40.839Z"} {"cache_key":"7b838195371b3510f201230ea400d72c3398e886d01a72bdd214c1bc8d76125a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"vi","translated":"Bằng chứng","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"7c1c5703f25deea49dcc3991ebd4fb967d3288e91cfaa5c14fdcaa9dfd60aec2","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"vi","translated":"Tải thêm","updated_at":"2026-07-09T10:01:43.734Z"} +{"cache_key":"7c3a941ddecefbbcf642b240136c2fbb278a9f29d1429f7e6b0e8d6b24c9929f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"vi","translated":"Máy chủ MCP","updated_at":"2026-07-10T02:28:37.411Z"} +{"cache_key":"7ef9729adf3fbfe3c111eed79b27d7913888d73bad0eeaeff53d498fa6f51a14","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"vi","translated":"Đang gỡ bỏ…","updated_at":"2026-07-10T02:28:40.838Z"} {"cache_key":"7f041e497897b9e02a3fae1aa3d0b4b348e77e0dbec73f9e8affb675348e82e6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"vi","translated":"Tìm kiếm phiên Codex","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"80b1d79fa642bf9b01424428cf656114b5c2904272868eab43dd9a495c77a6a6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"vi","translated":"Tìm theo tiêu đề phiên","updated_at":"2026-07-09T10:01:43.734Z"} +{"cache_key":"810080ef8fdcba4f51e3716e8a7f457e55cb4980abfb807754cbc92bdfbbfa12","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"vi","translated":"Kênh","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"81260651f72b77f4e32724d817268800eb8022a7a4c93df2edc121093d3d18ca","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"vi","translated":"Làm mới thất bại","updated_at":"2026-06-17T14:17:32.599Z"} {"cache_key":"83779ff9beea6134c3afcbf1aab675b9ca2949a38a9b8267546e5275e72e4d2a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"vi","translated":"Tuần này","updated_at":"2026-07-05T14:40:16.834Z"} {"cache_key":"83ad6fb250ac8188633fa2cb15e7dec986e651d0aa7c0dc2bfafa2f8df9aa03c","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"vi","translated":"Micrô {number}","updated_at":"2026-07-06T17:57:16.954Z"} +{"cache_key":"83c77c7a1be4ce72ad72700e8e129cec209f1f70ba61f8c2e5d343cf642099c1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"vi","translated":"Không tìm thấy máy chủ MCP “{name}” trong cấu hình.","updated_at":"2026-07-10T02:28:37.411Z"} +{"cache_key":"84ad0846acc9f9d139d5e844bee4a635344c2c5a6e10266822d31c2f6aeb7134","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"vi","translated":"Không có mục khám phá nào khớp","updated_at":"2026-07-10T02:28:29.209Z"} {"cache_key":"85da852cabd61df039af0f8c643bb1f5381c1dfa51aaaad41081bb9abb8794f9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"vi","translated":"Không gian làm việc phiên","updated_at":"2026-06-16T14:17:17.661Z"} {"cache_key":"85fd5ecaab9639fa128273eefb87d5a49d3db131b4bea5d5616e48bbe0999ae4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"vi","translated":"Thêm ghi chú","updated_at":"2026-06-16T14:17:17.661Z"} +{"cache_key":"860b8007d0bb077ef922aa9d0a6663069cd21ad533d339371dc53d07c95d0d3c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"vi","translated":"Nguồn đã xác minh","updated_at":"2026-07-10T02:28:40.838Z"} +{"cache_key":"881f1fb29c4052c5a07519a9accb5a4e33090bce937f97f7a6adb9cb0309a1c6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"vi","translated":"Gói","updated_at":"2026-07-10T04:28:49.893Z"} {"cache_key":"8868d4404654cf018f8417b333023fee9cb86337be9bff5243d5b7b511f7b1a2","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"vi","translated":"Quyền truy cập micrô bị chặn. Hãy cho phép trong phần cài đặt trang web của trình duyệt để liệt kê các đầu vào.","updated_at":"2026-07-06T17:57:16.954Z"} {"cache_key":"89212403f8feb97d7865eb4c56cc8d5a1c5938f96ade38b22795e997b10112df","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"vi","translated":"Cũ","updated_at":"2026-06-17T14:17:26.553Z"} -{"cache_key":"89c428ac908a1cc4377160cc691f3d4ba7dc189d9c31e9a1198e6f58ca9b40fb","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"vi","translated":"Lobsterdex","updated_at":"2026-07-09T23:56:17.613Z"} +{"cache_key":"8996952d6cfca3d0b3e40cfd8744b2b403e10e67c5a626c2e0cd0b6f392da4f3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"vi","translated":"Đã thêm {name}. Xác thực bằng “{command}”, sau đó khởi động lại gateway.","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"8a18b8b08125b3c0dca240f99a72ebc937cc8cb549f8044f036601f453ae6080","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"vi","translated":"Mật độ thẻ gọn","updated_at":"2026-06-17T14:17:26.553Z"} {"cache_key":"8b2cb3175fab20d1f0f424304d9bef3694acaf12c809fff1f64bbad91b3111c3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"vi","translated":"Đã cập nhật {time}","updated_at":"2026-06-17T14:17:32.599Z"} +{"cache_key":"8b726c19edfdc65dbed8b8b496fc3227da48afa12dd90472e27ea0483a319398","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"vi","translated":"Gỡ bỏ plugin này?","updated_at":"2026-07-10T02:28:40.838Z"} {"cache_key":"8b9788ec98cee9412f3a11c66add5ffe0f382bd3293174c147a708a93277fe21","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"vi","translated":"Giọng nói","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"8c082a895e340da99f98a0cbc0967161386f0a9b7fc140f80d8bdfb05a29f71a","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitDaily","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Daily limit","text_hash":"1e4ce9cd955f07b1b79cddb1bec9df28d4033d4238c0e54b0b766239133afc8c","tgt_lang":"vi","translated":"Giới hạn hằng ngày","updated_at":"2026-07-09T11:49:52.117Z"} {"cache_key":"8c254d6c4b07c9d90e1becd74f6cad2f80dda6899e3b89037df2f511c96e7864","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"vi","translated":"Lệnh","updated_at":"2026-06-16T14:17:27.580Z"} +{"cache_key":"8c8a0be13330a2119a217314735e51419aa8ba38f9ce038c42c6eb863016183b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"vi","translated":"Không khả dụng","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"8cc3e18cf3a7dc11a1df9f4c7ca32cb41b60f543b25f18579aa417d78c18aa0f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"vi","translated":"Nhóm","updated_at":"2026-07-05T14:40:16.834Z"} {"cache_key":"8ccf84f2ea4fdb5027c457f79dc63127fce88f7f75591d9a9beefe3690ae936d","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"vi","translated":"Realtime Talk yêu cầu quyền truy cập micrô của trình duyệt.","updated_at":"2026-07-06T17:57:16.954Z"} {"cache_key":"8cd74382051c8c40e96c541ee39d7e0415784d6f794a5049dda29ba8c3798efb","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"vi","translated":"Tên","updated_at":"2026-07-05T21:01:34.014Z"} {"cache_key":"8df70b4a9469e7d11658ad18d54c1077a635d9a18eb85a706055dc51e5f94aee","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"vi","translated":"Token của lần chạy gần nhất","updated_at":"2026-07-05T10:16:30.856Z"} +{"cache_key":"8e2b3fac62f50f64ddb27fcf1674b1383c5ef7f353c331a8e10fd6f4f74e290e","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"vi","translated":"Chi tiết bản dựng Control UI","updated_at":"2026-07-10T09:47:43.124Z"} +{"cache_key":"8ee559ac8682697e2eb5170acb3c24e7e2a127542281f3dae14e6941ab2c1925","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"vi","translated":"Máy chủ MCP","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"8fa558436942fe615594dfb23ad0ef1f0a32493303bdf62ebe1a0005ec392c0e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"vi","translated":"Bình luận","updated_at":"2026-07-01T01:08:40.341Z"} {"cache_key":"9048ef6e1453fb86b9f3ce70e2e1b4cfee393966e0a46c1b4eaee118bd20a2fd","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"vi","translated":"Phiên trên các máy tính của bạn","updated_at":"2026-07-09T10:01:43.734Z"} +{"cache_key":"90f85f66f7e7fde342a69b05fd61e034626841d3a9d37986c6bfc500cf499b91","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"vi","translated":"Cấu hình không khả dụng; hãy làm mới và thử lại.","updated_at":"2026-07-10T02:28:40.838Z"} {"cache_key":"91b4ce3ac5daa6eb31ddd0b846247227dbf6fd0a263302b0fc8e98c1ff0a8bcb","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"vi","translated":"{count} nhật ký worker","updated_at":"2026-05-30T15:38:47.755Z"} {"cache_key":"9206619873301252c0322bdad51a3ce97175becd77a3c983794f82d710648348","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"vi","translated":"Cũ hơn","updated_at":"2026-07-05T14:40:16.834Z"} {"cache_key":"93120bf568d074e3c188768fb6acafa2a92159e3ca14759baddc981386593534","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"vi","translated":"Không thể truy cập đầu vào micrô.","updated_at":"2026-07-06T17:57:16.954Z"} {"cache_key":"9387ebfb503774f21dd3d7c0acae4c65494e8b691d5e43cb49d5058e86c6cf8d","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.perDay","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"/ day","text_hash":"122faff7033fbaa4fac55b95788a16f370e13ab272d734f33bfcf15021170fe7","tgt_lang":"vi","translated":"/ ngày","updated_at":"2026-07-05T20:24:32.108Z"} +{"cache_key":"941e01977765c58352a144d27e004b39c22a358a3b813398ce04bc15dda6d137","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"vi","translated":"Tắt","updated_at":"2026-07-10T04:28:49.893Z"} {"cache_key":"94b10858b4b2f034b79558a2292b16912aefaafbf8636ecee7891a2aa71c35c4","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"vi","translated":"Chưa nhóm","updated_at":"2026-07-05T14:40:16.834Z"} {"cache_key":"94e911614fd522e91bfc724eaabff1245dbb2b43e687b08a33ae3a6f670bc0b6","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"vi","translated":"Quay lại ứng dụng","updated_at":"2026-07-09T08:08:12.733Z"} {"cache_key":"95b11fdc7cc941dc3aec80d1229fe752549bf09007010227ed891541e909f07b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"vi","translated":"Tìm tệp","updated_at":"2026-06-16T14:17:25.260Z"} @@ -193,7 +271,6 @@ {"cache_key":"97256cc69ed01e0d33e68667ef78073de7338b91a2aecbbbdbcd5a5c3545ca44","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"vi","translated":"Không có thẻ nào khớp với chế độ xem này","updated_at":"2026-06-17T14:17:32.599Z"} {"cache_key":"988e19d2308b9d371cf0f5b78132c21e12548cb8cfdc09c8fbf1cb8cbcb8d6f5","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.selectedRange","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Selected Range","text_hash":"95917ae71066a19c266cd4530068f4bf775ed2401951ebf37ab0c91daa1a67d3","tgt_lang":"vi","translated":"Khoảng đã chọn","updated_at":"2026-07-05T20:24:32.108Z"} {"cache_key":"993a54f07ce9c95b73a82dd9111cff1b6d38ebbde43f1146a0a57a5846419203","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.estimatedCost","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Est. cost","text_hash":"3199f14286736527bfc6ad9165629415a5aa087517acd2c0e9b1ae8bb5d26766","tgt_lang":"vi","translated":"Chi phí ước tính","updated_at":"2026-07-05T16:00:27.224Z"} -{"cache_key":"99594e6c8967e0a39c44a0136da37ec6f583bef446aca9a29fa898f0ae1da61b","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"vi","translated":"Gắn sang bên phải","updated_at":"2026-07-10T06:08:43.795Z"} {"cache_key":"99e8247212a9470ff17e5a8551b7d798bed7dc57abc47523fe79894745d99707","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"vi","translated":"MCP","updated_at":"2026-05-31T05:36:54.545Z"} {"cache_key":"99fe2cf7379d2f3b1182c888bc523a8d99c963e98cb9d8e6624e70e255f8984f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"vi","translated":"Cài đặt Talk nâng cao yêu cầu quyền operator.admin.","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"9b93c0ad4b27d3da17548274314284ae499c812fbddb15418c032a9a7ee0088c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"vi","translated":"Đang hoạt động","updated_at":"2026-07-09T10:01:43.734Z"} @@ -201,17 +278,27 @@ {"cache_key":"9c4824569db795723c1e68b0a2b7a35675ec05a5e3bca2f672ccd25a140d2f2c","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"vi","translated":"Chung","updated_at":"2026-07-09T08:08:12.733Z"} {"cache_key":"9c773c629226c847c938b239c3b610c373fd2ad82905e4d0c14ffc091e8481b8","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"vi","translated":"Cửa sổ ngữ cảnh","updated_at":"2026-07-05T10:16:30.856Z"} {"cache_key":"9da3618ac5e7c6caa6b676e3a58b0f334c23c82986c345420c6c52e0023db5fb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"vi","translated":"Chỉ hiển thị các phiên đã lưu trữ.","updated_at":"2026-07-02T14:31:04.850Z"} +{"cache_key":"9e6f5a72b494b19ee6bc3b392c9c755380527509fcdc0ad944d7830ba39354c3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"vi","translated":"Đã thêm {name}. Cập nhật endpoint và thông tin xác thực trong cài đặt MCP trước khi sử dụng.","updated_at":"2026-07-10T02:28:33.498Z"} +{"cache_key":"9ebc3cbfbf46e9cd9db7ca3a47063e7843356dce05bbc0b3500c40d232a3c9bf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"vi","translated":"Đóng","updated_at":"2026-07-10T04:28:49.893Z"} {"cache_key":"9ec77c844379c9721838049797aa0cba6806f3c1ed362daa14294322ebe42e03","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"vi","translated":"Bỏ ghim phiên","updated_at":"2026-07-02T14:31:04.850Z"} {"cache_key":"9f25df3d28afc496cf721ef5b2b4da22061e6d40087ef46d829da16f506c3566","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"vi","translated":"Nhật ký worker","updated_at":"2026-06-16T14:17:10.180Z"} +{"cache_key":"9f6d91f77528b95b4b26de7b71cafeb0d084c1898b81be90d9d0adb2d2f9d4e1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"vi","translated":"Không tìm thấy plugin nào","updated_at":"2026-07-10T02:28:29.209Z"} {"cache_key":"9f82448c27e9870fb2b9ad19eee7695a126d74fca10544a55b9eee6b4cba0dce","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"vi","translated":"Chưa gán (dùng {agent})","updated_at":"2026-06-17T14:17:26.553Z"} {"cache_key":"a1a090fb87c5cd37e6380452ad79868f24a732e25dc6d2826bb9abc4720beb98","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"vi","translated":"Chưa có ghi chú nào của người vận hành.","updated_at":"2026-06-16T14:17:17.661Z"} {"cache_key":"a2267d51f216d01cc50ecbf6f4f0b7019a8f9ed8ae7d216bf539e0f6b69bad82","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"vi","translated":"{count} ngày","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"a26a3902d50363ba56f1c3757f278b73a751303d1919e2daf9c6b333a270d0fa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"vi","translated":"Chưa có máy chủ MCP nào được cấu hình. Thêm một máy chủ tại đây hoặc chọn một connector từ Discover.","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"a2e66bda8ec4f861eb59d58900062c0ecaf16afd1235510078bb2d8457675bf0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"vi","translated":"Mặc định","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"a2e852aad03ab7b43e82a8f92db62e6f93f9f21efd48810927df0e058dfb0c9f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"vi","translated":"Thẻ không có agent rõ ràng.","updated_at":"2026-06-17T14:17:26.553Z"} +{"cache_key":"a44d848f0ab6c2f235081963404cc52dae3a7a7aebccc348d6bcd7ac8036c6af","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"vi","translated":"ClawHub","updated_at":"2026-07-10T02:28:29.209Z"} +{"cache_key":"a4ae53815471b0afa4a14c3b67578840e9c9511059b767d5f51926ba6b06db09","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"vi","translated":"ClawHub không có kết quả nào cho “{query}”.","updated_at":"2026-07-10T02:28:29.209Z"} {"cache_key":"a507860cdb92c532fb78ea9b4e39c4918a0e41bd98a00a6bea773eb6a1cb903b","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"vi","translated":"Các tác vụ mới nhất đã hoàn tất, thất bại và bị hủy.","updated_at":"2026-07-09T21:53:38.389Z"} {"cache_key":"a5ebce68f3ccdd8aa466d3786bf0e4bdd3799c21ca2613e2f8ef7f257f8e2fb5","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"vi","translated":"Sao chép liên kết","updated_at":"2026-07-09T11:03:10.148Z"} {"cache_key":"a61a6b2d9dbe373ed2f566c6b703dd186447b55d92d6fd68e8c645da17c147e9","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.sessionSelect","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Pane session","text_hash":"0deb0759c3643f2659c0838326276513c119e7923672a118c4ed13c012c4b628","tgt_lang":"vi","translated":"Phiên trong khung","updated_at":"2026-07-06T07:24:19.510Z"} +{"cache_key":"a9415da0233de0561db84dc1d119e32c968871299e79da2f5e810c5ce61aeddd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"vi","translated":"Sự cố","updated_at":"2026-07-10T02:28:33.498Z"} +{"cache_key":"a9b438ccc9348c7186370dddd7efa07b16372bfd677c8551e096e6dc9adf9377","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"vi","translated":"Đã xóa máy chủ MCP {name}.","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"aa6dc09201588e5c3cba2e7432557bc43f59f5e91470b9c746353b8036033ba0","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"vi","translated":"Mở chi tiết mức sử dụng ngữ cảnh","updated_at":"2026-07-05T10:16:30.856Z"} +{"cache_key":"ab8c7153185fa355999ef6c8d47cdf9123b8436b3c21944ff9ad8b9a44bd8d5a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"vi","translated":"Công cụ","updated_at":"2026-07-10T02:28:37.411Z"} +{"cache_key":"abd0ae26409d751697fca4d6927c271a1701e3ff790f89ba7b697b61ee61a934","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"vi","translated":"Cần chú ý","updated_at":"2026-07-10T02:28:40.839Z"} {"cache_key":"ac22026f6f1bba59f3db504381a8d2f5058e89102c12bb9eb8d582c919a3d215","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"vi","translated":"Thiếu","updated_at":"2026-06-16T14:17:17.661Z"} {"cache_key":"ac823b2638fb07c907e5e46ea4074bba7dc7d24f7ebaa894cf5ce7f1b2b48c8c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"vi","translated":"Tự động","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"acddcefcf854ec0c63c9471e5b4dbeb6c684f472025b033e9a7c72fef074ff50","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"vi","translated":"{count} yêu cầu","updated_at":"2026-07-06T06:40:15.357Z"} @@ -226,15 +313,20 @@ {"cache_key":"af5a9ca2e9d55c5c11f5f8e02e47b45cdc60f76c5e8ba9d58c5f4e7ef2f778b6","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"vi","translated":"Micrô đã chọn không khả dụng. Chọn một đầu vào khác hoặc mặc định hệ thống.","updated_at":"2026-07-06T17:57:16.954Z"} {"cache_key":"b3f82b997bc5276eb5c1d578b2b4f6ff23d75cc707d7691de9a9ee344dbdf47e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"vi","translated":"30s","updated_at":"2026-06-17T14:17:32.599Z"} {"cache_key":"b40b715629fc36fd847489f1ded7f89b9488cfbee6a8ba6ffca9915c3aecfe2f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlockedTitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Waiting on dependencies: {parents}.","text_hash":"50fb8f9b1326b69bd67d25583ddb4f70b9d75ae6e3ff8a9056a9361daa4b7d8b","tgt_lang":"vi","translated":"Đang chờ phụ thuộc: {parents}.","updated_at":"2026-06-16T14:17:17.661Z"} +{"cache_key":"b4461bbe0f7e4ae99ddfdcbe9fbbc8f852ca0fc4a28016d9a42f55570dc5ae36","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"vi","translated":"Danh mục plugin","updated_at":"2026-07-10T02:28:29.209Z"} {"cache_key":"b45e5beacfc4561d32435fea4bc7e65bd196bd7f17280916b7afe965c19f4207","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"vi","translated":"Trung bình","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"b504f68891582c7260867b0279cef36946b2df5287180bf05c74be411c69bd6f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"vi","translated":"Skills: {skills}","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"b59f3810b01b1504e238778f75f3ad6b78b7ed057cc3ca93ee8cf8d8ecc0f2b4","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"vi","translated":"Tất cả phiên","updated_at":"2026-07-03T07:40:44.965Z"} +{"cache_key":"b679cb55df921dbc7108a56779dbe13dc9880429babd34bdbdbb9f122dafc5e4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"vi","translated":"Cài đặt {name}","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"b76a47ab3c023e7733ea5d01a2d549207649cc457bccb78bf197083b9ace9f38","model":"gpt-5.5","provider":"openai","segment_id":"connection.reconnecting","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Reconnecting…","text_hash":"27b80374e1151af6df7824a358606c77502548bff4d467e4ae2e146801f601ce","tgt_lang":"vi","translated":"Đang kết nối lại…","updated_at":"2026-07-05T21:55:55.058Z"} {"cache_key":"b76cf20d4ca452dafedc4cb7d4f12687001e8873b4a9c31dc1ca63a08d99caf0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"vi","translated":"Xóa nhóm \"{group}\"? Các phiên của nhóm sẽ chuyển sang Chưa nhóm.","updated_at":"2026-07-06T23:41:17.640Z"} {"cache_key":"b83c90feafc322737817b144bafa5d92ea866f5b5e4ae44e32e1aa9401c71455","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"vi","translated":"worker {state}","updated_at":"2026-05-30T15:38:47.755Z"} {"cache_key":"b97fa5656f05062beaf14c75aecca2e236ecce749b7ff92c03d950ba4b8e109a","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"vi","translated":"Các bản checkout kho lưu trữ được cô lập do OpenClaw sở hữu.","updated_at":"2026-07-05T21:01:34.014Z"} {"cache_key":"ba67657d65f060afd227ed4802e44a613123e606fdc6c98d4106233ff2f69ac1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"vi","translated":"Lọc phiên theo trạng thái lưu trữ","updated_at":"2026-07-09T10:01:43.734Z"} +{"cache_key":"bc0243f7bd886d7401e0d816c393bce9f124ebd78984ff0b75f7c7f57b55f768","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"vi","translated":"Control UI","updated_at":"2026-07-10T09:47:43.124Z"} +{"cache_key":"bc4caedac31e442390cd01767c866397376af6498e0d8d194f090c0d39124afb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"vi","translated":"Đã cài đặt","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"bcbf52f7735cfc2ef1b3b31c9879aa1a7d24f76d8ab5234a5481ca3ff0700d35","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"vi","translated":"Ghim phiên","updated_at":"2026-07-02T14:31:04.850Z"} +{"cache_key":"bd098458cb4453539842be5106668f8832eb28cf8ac975f679b60e0621b98d07","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"vi","translated":"Công việc & năng suất","updated_at":"2026-07-10T05:22:41.820Z"} {"cache_key":"bd0a58cc11eb68f3726c86537ad9778bc1d8514d5a62d7fbd52105d569fcf9f4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"vi","translated":"Đã cập nhật: {time}","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"be42b03403a5f0e24ff86f59e94e8a917b40ee674f81bd7d6177fbf2cd66c59d","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"vi","translated":"Cuộc trò chuyện mới trong worktree","updated_at":"2026-07-06T04:56:43.746Z"} {"cache_key":"bea05cff43c64dca165880fc9a992ee73d2f47049fe03678b4f4ff3146ed45b0","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"vi","translated":"Kết nối lại với Gateway để làm mới các phiên Codex.","updated_at":"2026-07-09T10:01:43.734Z"} @@ -247,55 +339,81 @@ {"cache_key":"c4569ad0176fc93ee1cca5041bd6a895b1173014617734ce0ba1e1823d1f3594","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"vi","translated":"Ngoại tuyến","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"c5a49afa5cb0737492ad238e4e0203d12b654d1c6dc40ada1206dd59242d6df5","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"vi","translated":"Mô hình hàng đầu","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"c5ac111d8ed618e49c10f987602b9f893f9041679b87960d39291979c332e2e0","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"vi","translated":"{count} tệp đính kèm","updated_at":"2026-05-30T15:38:47.755Z"} +{"cache_key":"c5dfe869dcdc2996059adc32c4cfe7c37abe6a90f349ea9e3f7e555adbc9a741","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"vi","translated":"Công cụ ngữ cảnh","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"c6df2a5116d0d089a663fc5434139c780d8db1b6924a974905272efe4cfcf972","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"vi","translated":"Khôi phục","updated_at":"2026-07-05T21:01:34.014Z"} {"cache_key":"c6e960482a690ac3656242270fbe2e948283005461aa6c69fc8e1dde1d1041c8","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"vi","translated":"Tác nhân & Công cụ","updated_at":"2026-07-09T08:08:12.733Z"} +{"cache_key":"c6ef928afb49b1768a3e5b2bc9bd88123e6d3941fd9bbe98bc1b4aa3342f0ecd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"vi","translated":"Không gian làm việc","updated_at":"2026-06-16T14:17:17.661Z"} {"cache_key":"c774a220b056309855c53b16f81e1afe2ae174a8724ff2a98927ee38112f45f1","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"vi","translated":"Đầu vào micrô đang bận hoặc không khả dụng với trình duyệt.","updated_at":"2026-07-06T17:57:16.954Z"} {"cache_key":"c79366c0fb5deb2ae3e5defc41f8b0d884ddae789182784b8af1c7d8ec40508d","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"vi","translated":"Chia đôi","updated_at":"2026-07-06T22:56:36.739Z"} +{"cache_key":"c7f8bfe92478ae9deaf4b5264043cdc3e11566188b36b19afaff906ef667a786","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"vi","translated":"Nhà cung cấp mô hình","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"c8957a8ee0627f74ac54f2ad0f696bf8c9922d35fd381ff9ef8cd40b5ce2c6f9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.actions","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Workspace file actions","text_hash":"461817d921bc7672e95fe4a3b23f4ac2a4a20e35b3d6eef3f02e8f5ba4201050","tgt_lang":"vi","translated":"Thao tác tệp workspace","updated_at":"2026-06-16T14:17:25.261Z"} -{"cache_key":"c8b648b22b5b8af5bacb8508d7b50b1a7ddd81c167f7669491980373e5760409","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"vi","translated":"{name} · truy cập lần đầu {date}","updated_at":"2026-07-10T04:20:45.551Z"} {"cache_key":"c944edb2a38f76ff8b901c31fcc84f972d4c81f462bbaff2b1fd38ea2226adbb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"vi","translated":"Cao","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"c95b522206dce695d362bd0585e85c04255f12763885cf65d85d95bae29e99a3","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitFiveHour","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"5-hour limit","text_hash":"26d04fad786b1e3a08fd957ec893b0457b72a2926da0ee63847aea9037951d24","tgt_lang":"vi","translated":"Giới hạn 5 giờ","updated_at":"2026-07-09T11:49:52.117Z"} {"cache_key":"c9c84c2bc40c83168861eee263c38ca3b752ccc5064d99038f842ec6c349c6f6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"vi","translated":"Thiếu","updated_at":"2026-06-16T14:17:25.260Z"} +{"cache_key":"c9d68e85d6806c181a6fb361d6510a190dba8a7c23a0eb85c215c4433243aa34","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"vi","translated":"Khám phá","updated_at":"2026-07-10T02:28:29.209Z"} {"cache_key":"ca3d9f0be854fde5d3d5f6623e51bbb605e95b2de51ad8bea8a7bc74e1a91c99","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"vi","translated":"Đổi tên phiên","updated_at":"2026-07-02T14:31:04.850Z"} {"cache_key":"ca76a49fbc87df39cd3f52e5b0621e5d2003201283bd199d77b7ab2e1c87f274","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"vi","translated":"{count} hiển thị","updated_at":"2026-06-16T14:17:25.260Z"} {"cache_key":"cb51cda064a2694474632c6831a1f6277630f75f5ce4ace1c1c9d2f74dc71e45","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"vi","translated":"Trạng thái","updated_at":"2026-07-05T21:01:34.014Z"} {"cache_key":"cd277b7f128b2e75d08baa5507005214902279590bef84425c6f458abbbbe1bc","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"vi","translated":"Không tìm thấy máy nào chia sẻ phiên Codex","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"ce74675e22412140f979f2faac653c6a118f6d736437d858ba0463c4d40782da","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.planUsage","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Plan usage","text_hash":"eb55e9232d2a7503c819491be60761e99458daf4947df9676c5cc86b653f59f4","tgt_lang":"vi","translated":"Mức sử dụng gói","updated_at":"2026-07-09T11:49:52.117Z"} +{"cache_key":"cedfdb142618e04892fe1bd37c14fde3aa2f2a6b038061d8188c74a020e8a320","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"vi","translated":"Giới thiệu","updated_at":"2026-07-10T09:47:43.124Z"} {"cache_key":"cf03973b84d1a1a8564c8f35f354c3f21c52668936001a319ee2f9907f20b0b8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"vi","translated":"Lỗi hệ thống","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"d009f2c33ba9c725ba973873382c712b8065730f793dead160aabe05e45ade80","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"vi","translated":"Không gian làm việc","updated_at":"2026-06-16T14:17:17.661Z"} {"cache_key":"d05a189c3cb6ffdc2798ba19a42f9f293105421fdf0c78a0a5762c36c5f635c1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"vi","translated":"Đánh giá","updated_at":"2026-06-17T14:17:26.553Z"} {"cache_key":"d08548c9dd040f73eaeacf9dbc3649f923d300846d5b0238a60c2ea81334b99f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"vi","translated":"Tác nhân","updated_at":"2026-07-05T14:40:16.834Z"} {"cache_key":"d0eb91eaa9a0c9a584fe3c52c65e048d2446fff8698610e2af99a42212dce0a5","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"vi","translated":"Đã lưu trữ","updated_at":"2026-07-09T10:01:43.734Z"} +{"cache_key":"d18670b2195d0cc3b004b1544fc26ae5c826eac6283557f0ec34a536f9205f30","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"vi","translated":"Tìm kiếm ClawHub","updated_at":"2026-07-10T02:28:29.209Z"} +{"cache_key":"d21a99b68b8b4141ba1878d9153785ef3ad8675099bb2264f00c6ec2d3237154","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"vi","translated":"Máy chủ MCP một cú nhấp chuột","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"d26bd0c3c1d4ee9a5c838bfe3e3f22257a9d24618e2139ea59c0e5984eb28d5f","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"vi","translated":"Mở trong Trình duyệt mặc định","updated_at":"2026-07-09T11:03:10.148Z"} {"cache_key":"d289a26a1d2313192a4a4f93d8af6b453ef602aef8b1302de6799434ac6921c8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"vi","translated":"Ghi chú của người vận hành","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"d2e8b8a486a9514cdd710f8225a576bd62d77f84f49e4df23358c917bd81d858","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"vi","translated":"cũ","updated_at":"2026-06-17T14:17:32.599Z"} +{"cache_key":"d37152da6594c9564556b29250b047381adad8f58b70d3273bc4409c7bcfb707","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"vi","translated":"Trình kết nối MCP một cú nhấp chuột và các tìm kiếm ClawHub được tuyển chọn cho các dịch vụ phổ biến.","updated_at":"2026-07-10T02:28:33.498Z"} +{"cache_key":"d3d441a7b759b7415425657aa70ac7b74ad6b654f7d48ef9d86ea333d3436e4a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"vi","translated":"Chỉ duyệt. Gateway này không cho phép thay đổi plugin.","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"d3d7e253ec33863445a32304f4fc90de010551042292e25e9ceccdef70a701c2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"vi","translated":"Kết quả tìm kiếm","updated_at":"2026-06-16T14:17:25.260Z"} {"cache_key":"d64fee5c071c87b4acff1889991a1e5313e2b518fefd0eca254c31403d0afd0b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"vi","translated":"Mở rộng không gian làm việc phiên","updated_at":"2026-06-16T14:17:17.661Z"} -{"cache_key":"d7eb36f4096efe659a0d9ae07600ab3984a20f6a2aa889d1ddf1bf7b53dc23f7","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"vi","translated":"Hiển thị tệp phiên","updated_at":"2026-07-10T06:08:43.795Z"} +{"cache_key":"d7ca9532e2e4357b7e2994db0bcc3fb8f0140f0fa9bec90303be81d7924cdfc4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"vi","translated":"Đã tắt","updated_at":"2026-07-10T02:28:40.839Z"} +{"cache_key":"d89aabfbd6fa9d1e7ab778f90df68913a37842a3faaa1baa8bc1a61ce361e309","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"vi","translated":"Plugin gói","updated_at":"2026-07-10T02:28:44.198Z"} +{"cache_key":"d9bc5b9a2045f980c2847613f177b1d49c39e9eaa81fc973034dcab61ab6adf6","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"vi","translated":"Không khả dụng","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"d9cfcb4291fb5ab8eef715588fa709d0da5958fa695e91449a904c243fc9cb90","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"vi","translated":"Đang chạy","updated_at":"2026-06-17T14:17:26.553Z"} {"cache_key":"daeedec7a7519fcd7fc178ea3996b33f916abebf1a08e86f4731f0c0670bd8a2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"vi","translated":"Không xác định","updated_at":"2026-06-16T14:17:17.661Z"} {"cache_key":"db7dc997a9a6de81ff6c5eb5faf78f5a05537150ebb165478839a0c5e240b583","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"vi","translated":"Mã QR ghép nối đã hết hạn","updated_at":"2026-07-01T10:33:49.015Z"} +{"cache_key":"de31de08b4cd618f432d3fe0aadb7e76bad50084b6888472280f5dc1662c4f65","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"vi","translated":"Đang tìm kiếm ClawHub…","updated_at":"2026-07-10T02:28:29.209Z"} +{"cache_key":"de327d10b9135f3d2338f86722d130d57b828b8bbc3ef014dc673ab612d99d79","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"vi","translated":"Thử lại","updated_at":"2026-07-10T02:28:29.209Z"} +{"cache_key":"de89cfb52ba107bad18da47b8c36ee5d26cabc96b9303bab10a9f0ebb15ae2b1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"vi","translated":"Tên máy chủ sử dụng chữ cái, số, dấu chấm, dấu gạch nối hoặc dấu gạch dưới.","updated_at":"2026-07-10T02:28:37.411Z"} +{"cache_key":"df08a11c5c24e3b8e97d82c9ba4aff246567e6ad999c79afb6acd11a56b5fca0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"vi","translated":"Cuộc sống hằng ngày","updated_at":"2026-07-10T05:22:41.820Z"} {"cache_key":"e07a25dac5f049ec4112617e539089111a22506c2f2670040eed8b3558b4b7fa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"vi","translated":"Không có tệp trong thư mục này.","updated_at":"2026-06-16T14:17:25.260Z"} {"cache_key":"e090c6714467425d0c151993bea3fe23e6675519da1689bd84af827f6fb4409d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"vi","translated":"Chạy /pair qr một lần nữa để tạo mã thiết lập mới.","updated_at":"2026-07-01T10:33:49.015Z"} {"cache_key":"e0b2cb96cd283b7a43d11cb8fae04f6df16d971f1a0d3a5c14e73367af3c70d0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"vi","translated":"Đổi tên nhóm…","updated_at":"2026-07-06T23:41:17.640Z"} +{"cache_key":"e23bce7de5edf3e6cb7c95de9d1c5881ccc3c2f261f2ca4a0cd85edfca4fea3b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"vi","translated":"Tìm trên ClawHub","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"e274b7bbb1e7c351bc4ab9b0f7bcf7a2be594170e7c6664b1d578a23f7e2a341","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"vi","translated":"Công việc nền đang xếp hàng và đang chạy.","updated_at":"2026-07-09T21:53:38.389Z"} +{"cache_key":"e2a64339aa14b6f77e2dbc06225bec6b090b22a7f56f1b6265c62993c0094934","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"vi","translated":"Đã thêm","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"e2bbbb40e4762fbcef24f0c2e92d6616d053b4bd2813138b8bb255155c1f84f3","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"vi","translated":"Русский (Tiếng Nga)","updated_at":"2026-06-26T21:43:43.463Z"} {"cache_key":"e361324f7af778895fc24ee693f36fd13d015ff3d8865c2dfeae8959a5e0f984","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"vi","translated":"Đổi tên nhóm","updated_at":"2026-07-06T23:41:17.640Z"} {"cache_key":"e39d27795fa7de145c54b6a83c2ccfdb454bb2604a51fd38e6ccc2e27d7af9d7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"vi","translated":"{count} sẵn sàng","updated_at":"2026-06-16T14:17:17.661Z"} {"cache_key":"e44a23e420b369513c273a390bc2de83e04665bb690caf4313daf3e61c9b8eff","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"vi","translated":"Lần chạy","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"e5820e5f0374bbfee0c0acbead8c72bb8d61d0bb25781b59aa5e9b56154d99bc","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"vi","translated":"Bật chia sẻ phiên Codex trên Gateway hoặc máy tính đã ghép nối, rồi làm mới chế độ xem này.","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"e596898910fd11f083e10a545054286557295e3f3a79f7fffc9002272fe72b5b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"vi","translated":"Đã ghim","updated_at":"2026-07-02T14:31:04.850Z"} +{"cache_key":"e6966d222cfec8afdb5972453a24cb58536d579098968cb7cf4b9da4d9fdd9b6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"vi","translated":"Bật","updated_at":"2026-07-10T04:28:49.893Z"} +{"cache_key":"e6b0eec2cfe5367e10b0f24abb181d4b0ce173110248c4abed9c5081fb7cf6dd","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"vi","translated":"Phiên bản Gateway đã kết nối","updated_at":"2026-07-10T09:47:43.124Z"} +{"cache_key":"e7297009dbfd8507fa6095ee472dd7e2af02fc431b84c050acaa7ad8898794b2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"vi","translated":"Cài đặt MCP","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"e788cc22fe43a2bf9a84a6b2c97c5e327f45fb971f7a606011afe15a11dd3771","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"vi","translated":"Thêm quyết định, vướng mắc hoặc ghi chú bằng chứng...","updated_at":"2026-06-16T14:17:17.661Z"} -{"cache_key":"e7b9c996c45d01fb28c123ff302422b97c68b9dff1ecd62261f95a44995aa510","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"vi","translated":"Kéo để gắn sang phải hoặc xuống dưới","updated_at":"2026-07-10T06:08:43.795Z"} +{"cache_key":"e7e77ab21bec20bdd01fd2fcd3663a0166692aa79d2a42c4e95b1a29955bcc0d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"vi","translated":"Gỡ bỏ {name}","updated_at":"2026-07-10T02:28:40.838Z"} +{"cache_key":"e7ec129d9c60b016a88536449528f7ba94076c5a2b0152a16e11e600c5fc9a6d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"vi","translated":"Đã cài đặt","updated_at":"2026-07-10T02:28:29.209Z"} {"cache_key":"e838ed4a97c9d53b108884796abba20f89bb75016484a49e5eb245a2bc181d2b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"vi","translated":"bị chặn","updated_at":"2026-06-17T14:17:32.599Z"} {"cache_key":"e9a1c03ad574ca69151e8e5f02769ff63872706cdef0dc10dac1650d35c71a38","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"vi","translated":"Chi phí nhà cung cấp hằng ngày","updated_at":"2026-07-06T06:40:15.357Z"} -{"cache_key":"e9d7cff0c6d161a10dedd8b18505b6081bb0968c5b87ed572662a2dc558e80ab","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"vi","translated":"Tìm kiếm","updated_at":"2026-07-10T06:08:43.795Z"} +{"cache_key":"eb3788661fba2cdec95a4b2ea039c384d129949658f70acbab411a4b9c7f7a23","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"vi","translated":"Đang xử lý…","updated_at":"2026-07-10T04:28:49.893Z"} +{"cache_key":"ecf1456f205689bbd7d73705b51c44a8546808e7067efab573f33ff21d048d06","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"vi","translated":"Hủy","updated_at":"2026-07-10T02:28:40.838Z"} {"cache_key":"ed80f1deb625fb3411795b11027b8878d6fbce19d0e577546c4a395f54144c34","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"vi","translated":"{count} thẻ","updated_at":"2026-06-17T14:17:26.553Z"} {"cache_key":"edc7228cdc148ded641b3943afb02e3ebf8a1ddf2c1a4e8e1181fc2e1c4509c8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"vi","translated":"Agent mặc định","updated_at":"2026-06-17T14:17:26.553Z"} {"cache_key":"edd05826519470eeb55b7450fe76833349a31c44fc1bb2a784868eef282b1021","model":"gpt-5","provider":"openai","segment_id":"usage.daily.compressedScaleHint","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Square-root scale keeps low-usage days visible.","text_hash":"9515e7c6db149c32b64dba95a43e31a61d53dce8f11fe98683b234fb1cfd1920","tgt_lang":"vi","translated":"Thang căn bậc hai giúp các ngày có mức sử dụng thấp vẫn hiển thị rõ.","updated_at":"2026-07-05T20:24:32.108Z"} +{"cache_key":"edd370425786495a10224326182991e9aeac5784e0c5c6e107bc92359e01351c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"vi","translated":"Lập trình & hạ tầng","updated_at":"2026-07-10T05:22:41.820Z"} {"cache_key":"efb7b3c610d602a0c1c815ee8b67b4ac2ebc2dc6f504b2df9ebe6e2d25c42de6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"vi","translated":"Không có hoạt động","updated_at":"2026-07-05T14:40:16.834Z"} +{"cache_key":"efea2fc64cfc27345d8d012e32233a8420c2b593d5526352301395f153860ffe","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"vi","translated":"Đã sao chép hash commit","updated_at":"2026-07-10T09:47:43.124Z"} +{"cache_key":"f01a7bbd4ddf7dd4a17db25f761f89bee9846f22469f1a251f0b22aab03b0722","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"vi","translated":"Khám phá một plugin nổi bật hoặc tìm kiếm trên ClawHub để mở rộng OpenClaw.","updated_at":"2026-07-10T02:28:33.498Z"} {"cache_key":"f0785f703c03bed46e9c527ed4bb3fc10e6a52d97b50e7798a3b7b0f004c40f0","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"vi","translated":"Mức sử dụng ngữ cảnh phiên: {used} trên {limit} ({pct}%)","updated_at":"2026-07-05T10:16:30.856Z"} {"cache_key":"f09884057acf2d5b752e060c3b375b8c9a704f7e20afa6b848889bec8be4fdf2","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"vi","translated":"Lượt ghé thăm của tôm hùm","updated_at":"2026-07-09T20:51:54.489Z"} +{"cache_key":"f0beed280d3b579acd83eb6ac6e63d8f8b463698ab1ca1ebd433b85faf759f86","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"vi","translated":"Commit","updated_at":"2026-07-10T09:47:43.124Z"} +{"cache_key":"f1bff381f908ecd60192ad049559091214adcde1dd5f74e5199afc15fbb98d93","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"vi","translated":"Có sẵn","updated_at":"2026-07-10T02:28:40.839Z"} {"cache_key":"f44c5950936ecbdfefa49e23f16b07d9a612e8750754be60184ae2f44ef394af","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"vi","translated":"Loại","updated_at":"2026-07-05T14:40:16.834Z"} {"cache_key":"f44c8fc4ce70c38addf59f1988795ed0eaf29b5292c6f7685d787e691a0d57b0","model":"gpt-5.5","provider":"openai","segment_id":"connection.retryNow","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Retry now","text_hash":"5148c3e20576923b589bd801ea84dc376213b82fbf8694f64437b621f1690615","tgt_lang":"vi","translated":"Thử lại ngay","updated_at":"2026-07-05T21:55:55.058Z"} {"cache_key":"f494b186ac8af21f9f852aab60dad607db57a77d1221643bc2fb5cab695589b6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"vi","translated":"đang chạy","updated_at":"2026-06-17T14:17:32.599Z"} @@ -304,12 +422,18 @@ {"cache_key":"f64675f26129a4cb5a53c4e80342b3d9cc1c4ea3295d5f1e582872808ae4daf4","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"vi","translated":"Hôm qua","updated_at":"2026-07-05T14:40:16.834Z"} {"cache_key":"f6b143fd2d4dce2c17190813b4194c25d0ed8878ed0f33a53ec9606b219d884f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"vi","translated":"Tóm tắt phiên Codex","updated_at":"2026-07-09T10:01:43.734Z"} {"cache_key":"f6c99245164ae45d358e15636e0beedf7affb9bbcb5479adf2db53678a1a7e3b","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"vi","translated":"Thỉnh thoảng ghé qua","updated_at":"2026-07-09T20:51:54.489Z"} +{"cache_key":"f6ca9545736db357f66aa2bc5071608119407c5ab6cb49addbf986d1506a70a9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"vi","translated":"Toàn cục","updated_at":"2026-07-10T02:28:40.839Z"} {"cache_key":"f72ea7ba7b70a1dac852f601584cc4241b3fa6d1957165fe8c7a8ea0319b48f0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"vi","translated":"Không gian làm việc: {workspace}","updated_at":"2026-06-16T14:17:10.180Z"} {"cache_key":"f8d03c4549894c75be61fd875211c285579d2a96a4a6c4004c94f121fe75371b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"vi","translated":"Kênh","updated_at":"2026-07-05T14:40:16.834Z"} {"cache_key":"f92cbf45c9890def4c9343bd98bd2ab2c6e1f7eec5b8f3cbda2789767c5c0e28","model":"gpt-5","provider":"openai","segment_id":"usage.costWindows.title","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Cost Windows","text_hash":"d085ca9b7dffb14e13dd359e697260f29a1201cc065356abc06b7e3ed3fafd64","tgt_lang":"vi","translated":"Khoảng chi phí","updated_at":"2026-07-05T20:24:32.108Z"} +{"cache_key":"f9689a4430601791b22044529d34e6cc5f6315a09b4c1c7ccfd56bf140ef499c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"vi","translated":"{enabled} đã bật, {disabled} đã tắt, {issues} có sự cố","updated_at":"2026-07-10T06:09:07.096Z"} +{"cache_key":"f9dcc1b9c346cfef34c8ed54be406ec174580fe1337c32ce262b1108dcb854e5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"vi","translated":"Đã bật {name}. Cần khởi động lại Gateway để áp dụng thay đổi.","updated_at":"2026-07-10T02:28:44.198Z"} {"cache_key":"fb67030033dd67a9e139f6137af39f3e6fa454b5c8dfca6fac6c9cb0e3f2b4e6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"vi","translated":"{count} đã đọc","updated_at":"2026-06-16T14:17:25.260Z"} +{"cache_key":"fb76039a376ed7678087c22f54c43760f3f83a5926ab2688eb063ffb5d0515c5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"vi","translated":"Máy chủ MCP có tên “{name}” đã tồn tại.","updated_at":"2026-07-10T02:28:37.411Z"} {"cache_key":"fbe7507469319c05bcfbd615f6df59ebbd682e249f4a7dfbabb6419013c5ee3e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"vi","translated":"Thay đổi chế độ xem, tìm kiếm, mức ưu tiên, agent, hoặc bộ lọc lưu trữ.","updated_at":"2026-06-17T14:17:32.599Z"} {"cache_key":"fc5250549b39c609a7d41bc8d195346b9c63d0cfb28dbcf09e39beb9ff1b08c1","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"vi","translated":"Khôi phục phiên này để gửi tin nhắn.","updated_at":"2026-07-02T14:31:04.850Z"} {"cache_key":"fd630e4d80a6cdc30e7ef68557b78a8c92e3452a1a54d7bf98fac7ffd4356c7e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"vi","translated":"thiếu bằng chứng","updated_at":"2026-06-17T14:17:32.599Z"} {"cache_key":"fde35d59e3a43b7b06a8531859196131833ba5e32446f6d5f6e407db24d419d0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"vi","translated":"{count} bị chặn","updated_at":"2026-06-16T14:17:17.661Z"} +{"cache_key":"fe17e30b4958567ce878e271bd25e7c80172905f6d34b2c41b58bf345281ebde","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"vi","translated":"Thao tác {name}","updated_at":"2026-07-10T04:28:49.893Z"} {"cache_key":"fe84d5fb63a79a746ddd8e08be85e99ec41a64699a5bb8f6caf732da424eef91","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"vi","translated":"Di chuyển phiên vào một nhóm","updated_at":"2026-07-05T14:40:16.834Z"} +{"cache_key":"ff052a3781ee3b330617ac8bc97da12939a242d090638d81706679e3d0a923ec","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/vi.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"vi","translated":"Plugin","updated_at":"2026-07-10T02:28:44.198Z"} diff --git a/ui/src/i18n/.i18n/zh-CN.meta.json b/ui/src/i18n/.i18n/zh-CN.meta.json index c37684d89613..a96a489b1e80 100644 --- a/ui/src/i18n/.i18n/zh-CN.meta.json +++ b/ui/src/i18n/.i18n/zh-CN.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:25.489Z", + "generatedAt": "2026-07-10T09:46:42.673Z", "locale": "zh-CN", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/zh-CN.tm.jsonl b/ui/src/i18n/.i18n/zh-CN.tm.jsonl index 407e08b8bf5f..538eda34e5d5 100644 --- a/ui/src/i18n/.i18n/zh-CN.tm.jsonl +++ b/ui/src/i18n/.i18n/zh-CN.tm.jsonl @@ -1,15 +1,26 @@ {"cache_key":"002b98e2f8bf8e4a94a9f0b51b717bfd2d8417bc29103056e128a0c77120a6d9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"zh-CN","translated":"60秒","updated_at":"2026-06-17T14:13:17.789Z"} +{"cache_key":"00655d4880d5bc0f9d465153bf52710bc6cf4a19e1b80608c729e11a56c39adc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"zh-CN","translated":"请输入 http(s) URL 或命令行。","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"0259ea39d87e525d3757071256ff68ad463b0ce74f74ec4f8ffc09b8125f5c49","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"zh-CN","translated":"麦克风访问被阻止。请在浏览器的网站设置中允许访问以列出输入。","updated_at":"2026-07-06T17:56:04.251Z"} {"cache_key":"027d9f79927731d6c1fcde09e98adff20cfbae77f05775a849cb79cdbe7982d2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"zh-CN","translated":"置顶会话","updated_at":"2026-07-02T14:29:55.120Z"} +{"cache_key":"04842f2f20b88ccaff796557193ef401cfb359423f89bf5651e723686c4a4428","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"zh-CN","translated":"已停用 {name}。需要重启 Gateway 才能应用更改。","updated_at":"2026-07-10T02:22:41.379Z"} {"cache_key":"049ae83a4bd2e64812105beaf4155414d382f6ddf6554241caa47085b2824213","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"zh-CN","translated":"已排队和正在运行的后台任务。","updated_at":"2026-07-09T21:53:01.582Z"} {"cache_key":"04cb02b359b4b245dd2dc3e8e0a782fd170066c7caeabbe2a6cda230e191c765","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"zh-CN","translated":"{count} 个依赖项已完成。","updated_at":"2026-06-16T14:13:02.064Z"} {"cache_key":"04db3c2ac09c3d41fc3d5dde848ce0528bf14a495802eb9d14c30f72f71d6e5b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"zh-CN","translated":"会话归档筛选","updated_at":"2026-07-09T10:01:43.701Z"} +{"cache_key":"050ef1cc64d17a681ab6063c7e37459eba0164761c18a98b3188beb70adb4bb8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"zh-CN","translated":"已添加","updated_at":"2026-07-10T02:22:30.168Z"} +{"cache_key":"0548965f20d9a6304c75e4aab40812b703c3eae80ac025fe1a905f1fd5222f79","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"zh-CN","translated":"不可用","updated_at":"2026-07-10T02:22:41.379Z"} {"cache_key":"06550ec898b301f33668478edc4afb84dd0cee63506c9f0ffbd51c99d8f0f897","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"zh-CN","translated":"复制链接","updated_at":"2026-07-09T11:02:24.168Z"} +{"cache_key":"06dd0157296dbb939389ab59cbcfdb19050e0f041f41f0796fdb80e3a7e64fd4","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"zh-CN","translated":"复制完整提交哈希","updated_at":"2026-07-10T09:46:42.669Z"} {"cache_key":"07c8e0a8adea694a6bc2f3fcaf4643c3c4ccd23339402526f73a4c57a8e63793","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewAll","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"All cards","text_hash":"2306120917506b5998ec702f3661068b102dac538ba4c9e4634d65fe33eea98a","tgt_lang":"zh-CN","translated":"全部卡片","updated_at":"2026-06-17T14:13:12.872Z"} {"cache_key":"089266810099fc107c4aeb2ea83e26fe29e3009237e62cda5043c5fc1d727d10","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"zh-CN","translated":"会话","updated_at":"2026-06-16T14:13:02.064Z"} +{"cache_key":"09a28e0d69faf1d61eb083a3b2bb825bfb15c5fdad0d78cbd38171867ba68b34","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"zh-CN","translated":"已安装 {name}。","updated_at":"2026-07-10T02:22:41.379Z"} +{"cache_key":"09b637e3edfd2657baef7ff44f7bdffe167ec69147d369f120a491b5692552ce","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"zh-CN","translated":"在配置中未找到 MCP 服务器“{name}”。","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"09c30fd3ce83a679533c5bf00b1b2b7a05c19633a4013fd8fd212900a05d5efa","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"zh-CN","translated":"代码库","updated_at":"2026-07-05T21:00:21.876Z"} {"cache_key":"09ed15bb12e7e25d15337bb2d8b7e301d3838eea96f0fdc749c73cbb6e734b1f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goal","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Goal","text_hash":"cdbf6975e8a35b0d03558be6822dfae166482c24fb86b0433f60e8167f5c91e4","tgt_lang":"zh-CN","translated":"目标","updated_at":"2026-05-29T20:59:45.212Z"} +{"cache_key":"0a4017cc676df22878edace759049b0bcdceea7e8516d5b33d1046f7f0311988","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"zh-CN","translated":"来自 ClawHub","updated_at":"2026-07-10T04:28:05.882Z"} +{"cache_key":"0a6db1a6d07fd0bd9ec66d85538976017ee82616774744d5e60f8535c87a4454","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"zh-CN","translated":"工具","updated_at":"2026-07-10T02:22:34.212Z"} +{"cache_key":"0ab8c48621d76789bdf39068d29429ebb31272e97669bee3102fcd1797d455af","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"zh-CN","translated":"捆绑插件","updated_at":"2026-07-10T02:22:41.378Z"} {"cache_key":"0aebe77c4f02a1cc0fc470f5307a69b9e64ff567ee3d57daa8a075b6c93f4142","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"zh-CN","translated":"分组依据","updated_at":"2026-07-05T14:39:29.129Z"} +{"cache_key":"0b239ec5cd9acd33d6178a74ffa53c31ab9915b5c94b9e5c036fcde63c86dcaa","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"zh-CN","translated":"提交哈希已复制","updated_at":"2026-07-10T09:46:42.669Z"} {"cache_key":"0b79882b8e96f7221f875848e7183f76b5eee59ea76c179e591ed370ce25418f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"zh-CN","translated":"5秒","updated_at":"2026-06-17T14:13:17.789Z"} {"cache_key":"0bdefb51170cd60179bd89971a6d2eedd3cee83b40d7cb16157b554e324e33cd","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"zh-CN","translated":"{count} 条 worker 日志","updated_at":"2026-05-30T15:38:03.150Z"} {"cache_key":"0c2ff501479b9c6e086c00c4f42452eee15e1c14fcd268624b5446b7d3194bb4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"zh-CN","translated":"{agent}(默认)","updated_at":"2026-06-17T14:13:12.872Z"} @@ -17,15 +28,22 @@ {"cache_key":"0cd010c8067486e7e41684af34913acc6eda78008498a4247e728d9738900e15","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"zh-CN","translated":"空闲","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"0e36547b8832fb3cfb9187c0d586866f9074f73006d00e86769ab05877efdc08","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"zh-CN","translated":"上下文窗口","updated_at":"2026-07-05T10:15:53.745Z"} {"cache_key":"0fbae0ca5b0747a797ed77774a9b37431cf67bd905e45ad237bcdab01b3f4dea","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"zh-CN","translated":"工件","updated_at":"2026-06-16T14:13:07.632Z"} +{"cache_key":"0fee7ab3a3c9eba0a2c67a18abf9e767fafb0771b4ba58ff99fde4d4cb14715f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"zh-CN","translated":"可选 OpenClaw 功能。","updated_at":"2026-07-10T02:22:37.566Z"} +{"cache_key":"101e7455113a32092885ecdea34c2f61d416e1b4bf9c72aee18f8ec95fe1454d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"zh-CN","translated":"连接你的世界","updated_at":"2026-07-10T02:22:30.168Z"} +{"cache_key":"108c83fc6becd032014ccccbfad315ab85dc117bf70f25bf3981261da46c750b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"zh-CN","translated":"连接后可浏览已安装和推荐的插件。","updated_at":"2026-07-10T02:22:37.566Z"} {"cache_key":"11560d6bce879ade49bcc24d337d51adc9d8ae39a9dcee167c107147d186d773","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"zh-CN","translated":"默认","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"12d726ec5c2e90fe86b7e9e392eac5867dd9ad9a19a3e05c96a549eda9646261","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"zh-CN","translated":"从不来访","updated_at":"2026-07-09T20:51:20.078Z"} {"cache_key":"130dc23e7f16895351c483e98099eb1ad9d549d596962067699d54999a1abb0b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"zh-CN","translated":"新分组名称","updated_at":"2026-07-05T14:39:29.129Z"} +{"cache_key":"1432d9e48abf2b3b9d42a4c5aae47cc1cafbc91502490093e1afcced670ae411","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"zh-CN","translated":"已包含","updated_at":"2026-07-10T02:22:37.566Z"} {"cache_key":"14a037bbc62849750d3c927fdcd005a459bda33a372f22ce78dca739547ebbf5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"zh-CN","translated":"已置顶","updated_at":"2026-07-02T14:29:55.120Z"} -{"cache_key":"152449057fcd07bf4d67433fa82899f6dc109fa4b42764cae7a7b6e8fc74891d","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"zh-CN","translated":"{name} · 首次访问于 {date}","updated_at":"2026-07-10T04:20:21.986Z"} {"cache_key":"1569a4dd4bd2449dcfef09f17f95f55a234baf2e6c7ba098c47597dcd6cbf615","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"zh-CN","translated":"worker {state}","updated_at":"2026-05-30T15:38:03.150Z"} {"cache_key":"15fe689e0bc48f264380114c7b42e1e140cf9c27515efec11f7deee366f7ce1d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"zh-CN","translated":"租户:{tenant}","updated_at":"2026-06-16T14:12:56.348Z"} +{"cache_key":"162cddc47412c58c0c833730df7e224dd9a76e656a9ef2e5592256f16c010592","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"zh-CN","translated":"关于","updated_at":"2026-07-10T09:46:42.669Z"} {"cache_key":"163c0d72d5fc971751f197d8cf2bb9fd0dcc94c1af36cd2f8c6fabd098dd8287","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyMissing","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{parent} (missing)","text_hash":"8daa419059727391c01e3b7021e05d8d70b4da67f9c57cd2d80f302af77aac53","tgt_lang":"zh-CN","translated":"{parent}(缺失)","updated_at":"2026-06-16T14:13:02.064Z"} {"cache_key":"16d2d66c5ce557b07810d901c0e5017d28e519f478d01f157fd53203def3470e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"zh-CN","translated":"此文件夹中没有文件。","updated_at":"2026-06-16T14:13:07.632Z"} +{"cache_key":"1720d31b68df9b93ef405f361ee19a11859eb5b834469b29157f12ac7843df2e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"zh-CN","translated":"浏览 ClawHub","updated_at":"2026-07-10T02:22:26.256Z"} +{"cache_key":"1755ef5648d4284b5a3b952ae8ec57f0d3322639c2dfca00d35d9deda1da1f32","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"zh-CN","translated":"确认风险并安装","updated_at":"2026-07-10T02:22:41.379Z"} +{"cache_key":"1761033cff28087fb9e1d3d9ca6863bcb47911e26888da89d1ed554845de6156","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"zh-CN","translated":"正在搜索 ClawHub…","updated_at":"2026-07-10T02:22:26.256Z"} {"cache_key":"1790d55de5716a78862cb66d978c3e7fbc328a23850efe091814e7570920d936","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"zh-CN","translated":"节点","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"17afeaa34fdaad1bbb762c06931abfff0dbff85740cc24a05e9e55343b29b093","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"zh-CN","translated":"MCP 服务器、身份验证、工具和诊断。","updated_at":"2026-05-31T05:36:30.556Z"} {"cache_key":"190328c5a586dabd788b2166506e20bba6d9549fe7a2756257192d5564c400f4","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"zh-CN","translated":"调度器","updated_at":"2026-07-09T21:53:01.582Z"} @@ -37,51 +55,75 @@ {"cache_key":"1b3f2f5c2d759286ebb70744b1960734542d99226b5f5d8501d135bcd2ed1f33","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"zh-CN","translated":"会话上下文使用情况:{used} / {limit}({pct}%)","updated_at":"2026-07-05T10:15:53.745Z"} {"cache_key":"1bcf27ecdec3acaccb7d13212fe685bb249450388adef711ab89979bdfce3cc1","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"zh-CN","translated":"偶尔来访","updated_at":"2026-07-09T20:51:20.077Z"} {"cache_key":"1c15e74361e6380876cc428abb7974ae645e9add7ffb5ea54ae59c7cff1243eb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"zh-CN","translated":"删除分组…","updated_at":"2026-07-06T23:40:42.207Z"} +{"cache_key":"1ca744153b0e4a67a5b1d9ee983044de124a640ad3b92ed9aaa8535e045bf496","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"zh-CN","translated":"全局","updated_at":"2026-07-10T02:22:37.566Z"} {"cache_key":"1d05e0086e02f8afe1a1faf6e0c09abe7260dd777ddb6244b096a47c90539da6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"zh-CN","translated":"收起会话工作区","updated_at":"2026-06-16T14:13:02.064Z"} {"cache_key":"1d0cebd0320484e71767c34cacb9fc38a1f80cf7d3badf7baeaa584e41e6b8e1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"zh-CN","translated":"{count} 个已读取","updated_at":"2026-06-16T14:13:07.632Z"} {"cache_key":"1d5c8d953e303dc49080ec36b111dd36aa850c54ff161512b6122f4da8885956","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"zh-CN","translated":"已存储","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"1ee1c9653ecde6367eccef26d50ed5b69cd022d8bac8692b4685f2de862ce2e5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"zh-CN","translated":"摘要:{summary}","updated_at":"2026-06-16T14:12:56.348Z"} -{"cache_key":"1fbbc3ab5641c36c234f892881d27ff5cdecaf5127a68f0cf71485cd693de7d7","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"zh-CN","translated":"停靠到右侧","updated_at":"2026-07-10T06:07:40.148Z"} +{"cache_key":"1f4c1526f25b332a56e7e5995c55301b05f1a051bf022ba768c0da10ae1322b4","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"zh-CN","translated":"插件","updated_at":"2026-07-10T02:22:41.379Z"} +{"cache_key":"20d9d89df5fd5e93d944509df7ce1091b55fdb56da863efc6701c1b1540a6549","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"zh-CN","translated":"安装","updated_at":"2026-07-10T02:22:41.379Z"} {"cache_key":"212414f51f44d0f39bac5f98dfe26faaf7aa176007948a1831495eb9dbb97511","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"zh-CN","translated":"最近更新","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"227028963ad8f220a4fdb38eaaf4f68ef7a0b48512784da6b9aacc253268422a","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"zh-CN","translated":"取消置顶会话","updated_at":"2026-07-02T14:29:55.120Z"} {"cache_key":"2373bff203ca1ad410a396ce9c05d29c24a25dd24f151cd0fd7e87e920846a91","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"zh-CN","translated":"{count}小时","updated_at":"2026-06-17T14:13:17.789Z"} +{"cache_key":"246e1a7d2f3878c8ae105c4eedb1f367dd88e66ed31d6d7de9004af83176d6bb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"zh-CN","translated":"包","updated_at":"2026-07-10T04:28:05.882Z"} +{"cache_key":"24b00550bd098ce8f45a537ca25adce895fc3d895240a1331bd883d0149c586e","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"zh-CN","translated":"Control UI 构建详细信息","updated_at":"2026-07-10T09:46:42.669Z"} {"cache_key":"2529fcfb18f9925db612f84c7800431ac8cdcd3a617a215bb3eabd24e0a32e66","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"zh-CN","translated":"卡片详情","updated_at":"2026-06-16T14:12:56.348Z"} {"cache_key":"256248ebe7a4d18a45fe4959f5860e74259b7120425f5445da58b0dc583b2b8b","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"zh-CN","translated":"Gateway","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"2569c6f57755774e881c8a994a8442a4b69e2828c12c41b0ab561a288bc79c07","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"zh-CN","translated":"根目录","updated_at":"2026-06-16T14:13:07.632Z"} +{"cache_key":"258575f1d6443a804844bd8372ecd9c9adf41b7f8ae732cb230e86ef4fc3e841","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"zh-CN","translated":"日常生活","updated_at":"2026-07-10T05:21:47.531Z"} +{"cache_key":"259715987513a92681c7522c29fba0a9a516d4c86bf2620dc87a7f6fdc614409","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"zh-CN","translated":"搜索插件","updated_at":"2026-07-10T02:22:26.256Z"} {"cache_key":"261e2b1f75f0a5f3c9d24e018907eddab9b8974724e7d420df8a2ddbdf1ed76a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.dismissTalkError","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Dismiss Talk error","text_hash":"72f032a5a37e7197cc94ea95f5da0829abb2262396cdcc35229bd8ce9a52de1e","tgt_lang":"zh-CN","translated":"忽略 Talk 错误","updated_at":"2026-06-16T14:13:02.064Z"} +{"cache_key":"273998f517d1e6ee570cd34f3fd7c3755a86da6afd25b79d2f6079cdc4450e2d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"zh-CN","translated":"编码与基础设施","updated_at":"2026-07-10T05:21:47.531Z"} {"cache_key":"27b92ad76747660720cca8b96827147feabe9837f25d65e5bd07ca7ef6cc9e5d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.archived","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"zh-CN","translated":"已归档","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"27ebe89dcbef0e20d72d0b23eb363cc668963ccf551cdabc38b5bcac85ac723a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"zh-CN","translated":"操作员备注","updated_at":"2026-06-16T14:12:56.348Z"} +{"cache_key":"29f68d899ec30854aaa2dd49f9f4ceb54334d60131f174dd12f0e1d04611d729","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"zh-CN","translated":"由活动的 Gateway 连接报告;与此 Control UI 构建分开。","updated_at":"2026-07-10T09:46:42.669Z"} {"cache_key":"2a028605530b320bf1db8f947997b056df5dccbcc2b9328d2724ba4005e9d439","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"zh-CN","translated":"未知","updated_at":"2026-06-16T14:13:02.064Z"} {"cache_key":"2a042e30e5ed0ab3249aec806adeb23faae45e54129d891c66be56c053691fac","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"zh-CN","translated":"运行中","updated_at":"2026-06-17T14:13:12.872Z"} +{"cache_key":"2a899aafbb50bfdccc02b23f85a27c380e4728ef44189cb8a98717049bf0d9db","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"zh-CN","translated":"要移除此插件吗?","updated_at":"2026-07-10T02:22:37.566Z"} +{"cache_key":"2bdcfbaa4418031d491bd2b825301830d7d5b7b3d33a62583dbb8aa8c4e3212a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"zh-CN","translated":"添加","updated_at":"2026-07-10T02:22:30.168Z"} {"cache_key":"2e34d6b2c15bef88f3956b229e7f19e159bbec33ebbb1a4f1e12b09c2f220c9c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"zh-CN","translated":"未分配(使用 {agent})","updated_at":"2026-06-17T14:13:12.872Z"} -{"cache_key":"2ec3c84d70c7b453658cfa891f7c3d5e82cae7e1e669202bf5ff01a84314015f","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"zh-CN","translated":"静音","updated_at":"2026-07-10T04:49:47.263Z"} +{"cache_key":"2e487cbc5ab4ef364bc1857f6c66ff319d1b2e9aec84c0604d6f480a5db24e7a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"zh-CN","translated":"其他","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"2f2e23b461b50eed2f1fe7e316cacc9254672116ec9122a8f15c203f7c6199c1","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archiveSession","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Archive session","text_hash":"740ded37480365eae8bf833ccaaa58350fc9434a77b7bb65b5516eba476fbec3","tgt_lang":"zh-CN","translated":"归档会话","updated_at":"2026-07-02T14:29:55.120Z"} +{"cache_key":"30a6855d4b295e11fd2473366a10a3d90438439a12ba6c17ff2a15df615b22eb","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"zh-CN","translated":"安装和管理可选功能。","updated_at":"2026-07-10T02:22:26.256Z"} {"cache_key":"31bd00f16cecd8300c9596052aa31783e4befbb742ecc30d75dd3d8f5513a6ab","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"zh-CN","translated":"已添加附件","updated_at":"2026-05-30T15:38:03.150Z"} {"cache_key":"320080affff39b949ba3816ddf77eb4875a338382703f0d62212a7d30b63112b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryToggle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Keep commentary after the final answer","text_hash":"febdff0791d1ceeddb2b7596da8282f4dcfd5cff4cad11dea4c0a23944cd8ffe","tgt_lang":"zh-CN","translated":"在最终答案后保留评述","updated_at":"2026-07-01T01:06:06.598Z"} {"cache_key":"3299610a677df332f9cd54acd764153498ae8932b2e71f7a31b42a6ebe8470d1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationWorkspace","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Workspace: {workspace}","text_hash":"17f5e696e557a646a9003fc8448f6f6761f5fe6bdf7478f750f471496e87c17b","tgt_lang":"zh-CN","translated":"工作区:{workspace}","updated_at":"2026-06-16T14:12:56.348Z"} {"cache_key":"33044caef31e28251d133d51dfcd57bd21c0846dbe42659f9b6ab8b5e5e74613","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"zh-CN","translated":"正在显示前几个匹配的文件。优化搜索以缩小结果范围。","updated_at":"2026-06-16T14:13:07.632Z"} {"cache_key":"337d0b227b5ed4d4d187c97c90a10cbbaf8979d68fa3d486da08f85aca589190","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"zh-CN","translated":"类型","updated_at":"2026-07-05T14:39:29.129Z"} {"cache_key":"33a6f66bf057a04f7e4130cef76902c4d1cd71e6e052781f4ac5cecaadc89066","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"zh-CN","translated":"已阻塞","updated_at":"2026-06-17T14:13:17.789Z"} +{"cache_key":"33eb4b05039437f15c7159d629f4a5e2fca6a9ec7b89d6127c8b144e5eb2408f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"zh-CN","translated":"未找到插件","updated_at":"2026-07-10T02:22:26.256Z"} +{"cache_key":"341cb6fc46ba72622f141b1c0f13664677bd0ecb683134f319ac837c2eca6bb4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"zh-CN","translated":"一键式 MCP 服务器","updated_at":"2026-07-10T02:22:30.168Z"} {"cache_key":"359fb4a263cb3e67b4a9144cf2753f391e6a747b5ac4cfd633ebf5846f6830da","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"zh-CN","translated":"此主机上没有符合搜索条件的会话。","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"360b0866ae1b9ecad382bd2137c6c4ad2a99223f5aec4e35a366d588fcc7763f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"zh-CN","translated":"高级 Talk 设置需要 operator.admin 权限。","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"3699fb5fd71dbeaad1a9246eb96f66f3b19dea75d82e40c5aef32ca031f89673","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"zh-CN","translated":"托管的 Worktrees","updated_at":"2026-07-05T21:00:21.876Z"} {"cache_key":"36bef9a73ad94b17f0428509d5cc6a054f7ff2cd824bca972e4c4e564946dcfd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"zh-CN","translated":"审核","updated_at":"2026-06-17T14:13:12.872Z"} +{"cache_key":"36f8496b934c1283d74e4a19904191eba82e9efcd1d353b6297224805e473688","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"zh-CN","translated":"已连接的 Gateway 版本","updated_at":"2026-07-10T09:46:42.669Z"} +{"cache_key":"37d5198ca030899c8936d5b81a3f9993a2b0cb1ecabab8f4be194194a48fec1f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"zh-CN","translated":"一键式 MCP 连接器,以及为热门服务精选的 ClawHub 搜索。","updated_at":"2026-07-10T02:22:30.168Z"} {"cache_key":"38594261e6f72d80ee6934189fe9a5c2ecba499697165fbf09fa07a07c1f6b7f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"zh-CN","translated":"添加备注","updated_at":"2026-06-16T14:13:02.064Z"} +{"cache_key":"391a838f3ba1c240f34422ce15f159fbdb5f89f38005e391d4f61f7a761aff3b","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"zh-CN","translated":"无法复制提交哈希","updated_at":"2026-07-10T09:46:42.669Z"} {"cache_key":"3945179967cdedfa16f39e86a70e8994ccf72365cab34123cc5d71cb6ef4eed8","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"zh-CN","translated":"{count} 个输出令牌","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"3a41d0532747ec3c5892bfce160bea0103efcf61eea877ae6202c75ac8b3fa52","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"zh-CN","translated":"已启用","updated_at":"2026-07-10T02:22:37.566Z"} {"cache_key":"3a459258cbe0cb114b294918134cf2c2e83654d66c6895c83e4ecefe3de6a84a","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"zh-CN","translated":"恢复此会话以发送消息。","updated_at":"2026-07-02T14:29:55.120Z"} +{"cache_key":"3ae7e1454bcf78d0a2fe101684c54d013d267d4d48746270e7ee86b54e288a78","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"zh-CN","translated":"插件","updated_at":"2026-07-10T02:22:26.256Z"} {"cache_key":"3afb67e2aecee97a3e7b8b8f4967c1144b92a8b4159c7e974e45946a583bd10e","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"zh-CN","translated":"未找到麦克风输入。","updated_at":"2026-07-06T17:56:04.251Z"} {"cache_key":"3b0004c723b469ead9ad4af743c8f486d01e2e734a9a87ccbf8dd25059bc6052","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"zh-CN","translated":"重命名会话","updated_at":"2026-07-02T14:29:55.120Z"} +{"cache_key":"3b22c88ab5756bae7db59d8a36402110dfd9b9296ff5368c62f7c423269187d4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"zh-CN","translated":"记忆","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"3ba0c0bd7b61b3605244baba4f754b7bf18e72afcde240bf3055873a45ebad2a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"zh-CN","translated":"已连接","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"3be5d6100e4c842c96ba88c48f283f1417248129e70a23c45cad5f04f06ab14b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"zh-CN","translated":"正在加载麦克风…","updated_at":"2026-07-06T17:33:17.801Z"} +{"cache_key":"3c1477b590a14a9f2576d15ce88f044241896bbc451194e83f43a5b8ab570bde","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"zh-CN","translated":"搜索插件","updated_at":"2026-07-10T02:22:26.256Z"} {"cache_key":"3c454dff9f1b5d923cc290599b2cb04c860ca448836d89b0243ea74ee5e39fc4","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"zh-CN","translated":"所有会话","updated_at":"2026-07-03T07:36:07.006Z"} +{"cache_key":"3e877e223cfb3646d4f3a09af36fef0741e57a8cffcd8d940b25ee9237e22c93","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"zh-CN","translated":"插件 ID","updated_at":"2026-07-10T04:28:05.882Z"} {"cache_key":"3ea9e6e56aca10a3a583c75136399ee34969e78dd3b1a0c657becb0c81618314","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"zh-CN","translated":"Worker 协议","updated_at":"2026-06-16T14:12:56.348Z"} {"cache_key":"3ee9598236d04b4ab6cd5e826f5f681b90dc6c72f2730440aed4e0297bd54b91","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"zh-CN","translated":"新建分组…","updated_at":"2026-07-05T14:39:29.129Z"} {"cache_key":"3f16889eba2ce190c00e6d2bef2e79ac4841f6ee9cb0cebba4a5f403adb49290","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.last7Days","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"7 days","text_hash":"7f920bb639c9307589b65e5f639391d65dcb86b0611ac47f58f7c769215326ee","tgt_lang":"zh-CN","translated":"7 天","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"402b76e1651d2b58033b57b3f2c3a11114af221590ad73cf7b96f1b822db6aa6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browser","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Project files","text_hash":"2a3d9a240c9206964ee7237a1d99fda05ed501a485262e18f33c446c9f735d1c","tgt_lang":"zh-CN","translated":"项目文件","updated_at":"2026-06-16T14:13:07.632Z"} +{"cache_key":"4086ecc02c38f56876488ff317417b8b3f806435473431c11a8ffbdfc851f465","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"zh-CN","translated":"已添加 {name}。使用前请在 MCP 设置中更新端点和凭据。","updated_at":"2026-07-10T02:22:30.168Z"} +{"cache_key":"41dd6a6ad34fbc446ce91619431bd0c89dd28f74809937d933cdc86d618b86c6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"zh-CN","translated":"没有匹配的发现内容","updated_at":"2026-07-10T02:22:26.256Z"} {"cache_key":"42e61c4a1e8cc2adc7be569404fcb614713f78d530dcfc2e3188842f01186c0b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"zh-CN","translated":"此会话中尚未处理任何文件","updated_at":"2026-06-16T14:13:02.065Z"} {"cache_key":"42fc0c8e2fa93c908d9306d3fccc33b639bf66f1070318dab51985fc388c5043","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"zh-CN","translated":"Worker 日志","updated_at":"2026-06-16T14:12:56.348Z"} {"cache_key":"4334f8e72e6f28f7777100c7de99647d49821e2c305f8c38f60289474b00fa60","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"zh-CN","translated":"就绪","updated_at":"2026-06-17T14:13:12.872Z"} {"cache_key":"441e169a33a3d3aab6c28ba84ac2631b530a4e423757fc4e749e2f4434aea9c8","model":"gpt-5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"zh-CN","translated":"刷新","updated_at":"2026-07-09T10:01:43.701Z"} +{"cache_key":"4535d3156b02680f9e9bc5d0b9f2a983c064ebc74b30c5c2eddf2e1f58c45ca9","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"zh-CN","translated":"正在复制提交哈希","updated_at":"2026-07-10T09:46:42.669Z"} {"cache_key":"45fe35cf506ce5b01449e7faa4034f1a8349670c33d6bd34dac1d1940164aef3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"zh-CN","translated":"默认 agent","updated_at":"2026-06-17T14:13:12.872Z"} {"cache_key":"46617f8c5bb197263cd8501e535683f51859529f6304a18daef128b83ce8e7bb","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.selectedMicrophoneUnavailable","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"The selected microphone is unavailable. Choose another input or System default.","text_hash":"7ae3ae7c3179e22942d5b6f911a3de37085b7753814c65e58be50989987bb00f","tgt_lang":"zh-CN","translated":"所选麦克风不可用。请选择其他输入或系统默认。","updated_at":"2026-07-06T17:56:04.251Z"} {"cache_key":"4677741fa62bf013797c93d1f692385c5a2ff39111d91831983fc4e4e7cba282","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"zh-CN","translated":"Skills:{skills}","updated_at":"2026-06-16T14:12:56.348Z"} @@ -91,24 +133,39 @@ {"cache_key":"48b101f4e993b05bba64bb3eb9999425224930971966a0e8dbc4797ae6f65d99","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityMedium","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Medium","text_hash":"8e588cd187741f1cd76f5fab77b7208782a8c21d764ce7d7a4cf3ac4e0968873","tgt_lang":"zh-CN","translated":"中","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"493835cefc927aaca2276aaab70150ce5f377bf4e4b0459139e9009bcce6d586","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlockedTitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Waiting on dependencies: {parents}.","text_hash":"50fb8f9b1326b69bd67d25583ddb4f70b9d75ae6e3ff8a9056a9361daa4b7d8b","tgt_lang":"zh-CN","translated":"正在等待依赖项:{parents}。","updated_at":"2026-06-16T14:13:02.064Z"} {"cache_key":"496da448fb016bb024270dcbd5392a7b3f04b31d4ad6893b3a0e87825383cd3d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"zh-CN","translated":"没有匹配的文件。","updated_at":"2026-06-16T14:13:07.632Z"} -{"cache_key":"49a6dd1f29dcecdef5e47f18e12776803f03e6c8910588b83e9ceb05dcd73134","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"zh-CN","translated":"搜索","updated_at":"2026-07-10T06:07:40.148Z"} -{"cache_key":"4a292dcc9cad19937492d451edf59c312db94d99cfe2e5627694276f03dbf350","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"zh-CN","translated":"已访问 {seen}/{total}","updated_at":"2026-07-09T23:55:42.936Z"} +{"cache_key":"49d03f7d2f427a09b9cf7607e2d85a1b90b16df1f6385d300e1d022bd6bb7b9d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"zh-CN","translated":"MCP 设置","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"4a35dcaf90d349d4bc12e00e646c437e1e429690ced805fd6316b8fca59dec82","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dragSessionHint","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Drag to move between groups","text_hash":"3e8692b1cd1c1f9a606a779f1037aa390c885fde224ddb841df9259e8aab03ae","tgt_lang":"zh-CN","translated":"拖动以在分组之间移动","updated_at":"2026-07-05T14:39:29.129Z"} +{"cache_key":"4afc915c7980bb7cd8da9041c6df1a658de0327f4a35911008417a336af4be09","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"zh-CN","translated":"名称","updated_at":"2026-07-05T21:00:21.876Z"} +{"cache_key":"4b1ad95e5f75ad3c33b25bb0db188a28aa92839af39b126c6ba00b4477208936","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"zh-CN","translated":"提交","updated_at":"2026-07-10T09:46:42.669Z"} {"cache_key":"4d9cf225c85a5b41525cd887a911893c8140b6f9e46d854c995fa5b7ce9458dc","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"zh-CN","translated":"最近已完成、失败和已取消的任务。","updated_at":"2026-07-09T21:53:01.582Z"} {"cache_key":"4db81d22b1656ea356a6a78cbf47e987809783db1c8176c66bcfc49ef2d8b98c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"zh-CN","translated":"Gateway 任务","updated_at":"2026-06-16T14:12:56.348Z"} +{"cache_key":"4db8c13336b6b0867f1f942ff07f5a30f639cc76ccfde692a92c4b915feda5ff","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"zh-CN","translated":"禁用","updated_at":"2026-07-10T04:28:05.882Z"} {"cache_key":"4e87b36fe252bfe59aa3510ac0112b3c7637554802306cffe0ca74e7bd3f3322","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"zh-CN","translated":"{count} 项受阻","updated_at":"2026-06-16T14:13:02.064Z"} {"cache_key":"4edbd8669dce3bb60c0c15661918a73726c8570c263b1095aaba29366b3e3519","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restore","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Restore","text_hash":"a76e13b9839270eb73ed11417f7d8acca55df0ad52065799361631d0fff74f27","tgt_lang":"zh-CN","translated":"恢复","updated_at":"2026-07-05T21:00:21.877Z"} +{"cache_key":"4edc6dd95fc39f88c70bdea44d49c52516a77c3b86f09813d31c66df1f954b3a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"zh-CN","translated":"启用 {name}","updated_at":"2026-07-10T02:22:41.379Z"} +{"cache_key":"5028df8e9430c8d2a61de7863f9a9e64a69b8ba5b40498ac924d79ec8e66a32f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"zh-CN","translated":"仅可浏览。更改插件需要 operator.admin 访问权限。","updated_at":"2026-07-10T02:22:41.379Z"} {"cache_key":"50295bdef42931479a04e58f947cc727b463cd8663844a817deddbfa57bdfe47","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"zh-CN","translated":"缺少凭证","updated_at":"2026-06-17T14:13:17.789Z"} {"cache_key":"50a5daadc1dd8e76f30020d58f996b528bd77b8b7c379930f05643861e014d36","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"zh-CN","translated":"Русский(俄语)","updated_at":"2026-06-26T21:43:19.728Z"} +{"cache_key":"513a0a6ca06120b7edb8a253026b9f33c26a33b364c0e0de263e92c06d871126","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"zh-CN","translated":"渠道","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"51650687c0ab2b5af885ca6be20375b3dd6b4c8a1b22fa946ad0c815baaafd2d","model":"gpt-5.5","provider":"openai","segment_id":"connection.retryNow","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Retry now","text_hash":"5148c3e20576923b589bd801ea84dc376213b82fbf8694f64437b621f1690615","tgt_lang":"zh-CN","translated":"立即重试","updated_at":"2026-07-05T21:54:55.187Z"} +{"cache_key":"517a5e04dd40c14a6cc22544ddf14bade9bab8425909e8a825236a5be8a5a355","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"zh-CN","translated":"Control UI","updated_at":"2026-07-10T09:46:42.669Z"} {"cache_key":"51efad7a7ea87c645dc8c1d2ecf08a5db18883a5a6652e7ccd06fa5fe89a06a6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"zh-CN","translated":"心跳 {age}","updated_at":"2026-06-17T14:13:17.789Z"} {"cache_key":"52efd1cfee466f374422e77ece583302bf3dd2cf8356e5f61a3aebed5ac6c2a1","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"zh-CN","translated":"拆分","updated_at":"2026-07-06T22:56:12.834Z"} {"cache_key":"5644303cd0b9f4812ff2f792dd0cd80041ca5cae312af731fc94cbae0d88e4ef","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"zh-CN","translated":"{count} 天","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"566c749d2a13bfa6bf24553ae9d0d7ea1b4fdc9ee9c06af7ca21dda461d56d04","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"zh-CN","translated":"今天","updated_at":"2026-07-05T14:39:29.129Z"} {"cache_key":"57628f1023df1a1470b9753bcbdbfc70c7cec0565f4ab84bab87e24620e2184c","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"zh-CN","translated":"Worktrees","updated_at":"2026-07-05T21:00:21.877Z"} {"cache_key":"57a0234caa387ef33f550405a764bea0634b5a84a79287dade230dafc1860033","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.lastActive","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Last active","text_hash":"bcdf701c4dfbaee3a2162f9b9affd87a23a13426c391f95e964d983851b58a05","tgt_lang":"zh-CN","translated":"上次活跃","updated_at":"2026-07-05T21:00:21.876Z"} +{"cache_key":"57f325662d0bb60e76922504c886c46fbd26c490003fdb8bce629e68aface516","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"zh-CN","translated":"全部","updated_at":"2026-07-10T02:22:30.168Z"} +{"cache_key":"5856ea864faa0dd615414c2764c2c81740c23e3e470358b7a2faf62258d47969","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"zh-CN","translated":"处理中…","updated_at":"2026-07-10T04:28:05.882Z"} +{"cache_key":"58ca68f082bf5e5602055047747282c70480e856f44d8c97b730a038ee964251","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"zh-CN","translated":"正在安装…","updated_at":"2026-07-10T02:22:41.379Z"} {"cache_key":"5942de41541e1c9973eed1974be3be75d9db0a3b6fe339dfb38237a297dd9142","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"zh-CN","translated":"日期","updated_at":"2026-07-05T14:39:29.129Z"} +{"cache_key":"59e12e3193c32e4958ff061d7655fd219fce68f231eb9d3f1a7307bbe40009fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"zh-CN","translated":"发现精选插件或搜索 ClawHub,以扩展 OpenClaw。","updated_at":"2026-07-10T02:22:30.168Z"} {"cache_key":"5a37568f873447915d0c3be6ca5b1d91059fbe3eaa6387c8433ef56c40333d14","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"zh-CN","translated":"依赖项","updated_at":"2026-06-16T14:13:02.064Z"} +{"cache_key":"5b66016fc5389ce9b603e83f7e0726c99e65ab7122ab0b6ff0652d6922a13496","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"zh-CN","translated":"已添加 {name}。使用“{command}”进行身份验证,然后重启 gateway。","updated_at":"2026-07-10T02:22:30.168Z"} +{"cache_key":"5b7f4b4b56781f0adaec29d4d594c9dca8d6d29b22e4568f19e1034aadeef7b1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"zh-CN","translated":"已安装 {name}。需要重启 Gateway 才能应用更改。","updated_at":"2026-07-10T02:22:41.379Z"} +{"cache_key":"5bcd646a8176d2bda59c285d71aa24765d98d3848e29366ea216575c859527b7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"zh-CN","translated":"正在准备搜索…","updated_at":"2026-07-10T02:22:26.256Z"} +{"cache_key":"5bf5225afb5dc5dca5b5a1aeb20526ec02871a148dfafec66d77dc5d42a7f640","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"zh-CN","translated":"Control UI 和已连接的 Gateway 构建标识。","updated_at":"2026-07-10T09:46:42.669Z"} +{"cache_key":"5c44d8f930697b285df5fb20020ddb6d5aa5c85b396484b638288b59cbc11b75","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"zh-CN","translated":"移除","updated_at":"2026-07-10T02:22:37.566Z"} {"cache_key":"5cfb0f4db16e05e4dd6b9a97c5ba6dfd09a711763766a79ec10bb17e6f841a9e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"zh-CN","translated":"Codex 设备群","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"5d1db0fdaff8b1e11d8faab861d9df56e5109ed6725c3137237b5c724bc44703","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewBlocked","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Blocked","text_hash":"18f2a0947f9d6523991b29b450307f22773f57d65f7efb98d48a167df04d6b1d","tgt_lang":"zh-CN","translated":"已阻塞","updated_at":"2026-06-17T14:13:12.872Z"} {"cache_key":"5e92f8017b80a151f1ed0e2e5443ae49a974ac4206672dbd70ee52448ac7e3f2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNotePlaceholder","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Add a decision, blocker, or proof note...","text_hash":"0e40ea8371be2fcbd8379458b0da541ca0dce5dc86357dea64a4d8fac1c742dc","tgt_lang":"zh-CN","translated":"添加决策、阻碍或证明备注……","updated_at":"2026-06-16T14:13:02.064Z"} @@ -116,29 +173,43 @@ {"cache_key":"5ecbbce047208ee3c6ecf0a7e01aac4fc0ac4a6498c67bc28eb0a914aea5899b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"zh-CN","translated":"明确分配给已配置默认 agent 的卡片。","updated_at":"2026-06-17T14:13:12.872Z"} {"cache_key":"5efc2f3829fd9d1aa25ede2e3d20e3e158373390bfdfe607ffdf2952cc3c05f9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"zh-CN","translated":"已过时","updated_at":"2026-06-17T14:13:12.872Z"} {"cache_key":"5f2b5171a4336823d5a9a9621cd5f2b95cb5911521cdd376d2f65cf17e0d1364","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"zh-CN","translated":"紧凑卡片密度","updated_at":"2026-06-17T14:13:12.872Z"} +{"cache_key":"5f7ffda2ef6fff37b9f5b1d89aa916e98b34598660136a5847ab0384f97cefc5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"zh-CN","translated":"已移除 MCP 服务器 {name}。","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"604d40029923dadbbd9711e786263f195cd5563a0a8b5483758fdf39a7db0acc","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"zh-CN","translated":"正在加载 Codex 会话…","updated_at":"2026-07-09T10:01:43.701Z"} +{"cache_key":"60de0119a6982328bd80567f1ac5cbe03f79d67b6fbd28e55e57e83817fa9119","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"zh-CN","translated":"官方","updated_at":"2026-07-10T02:22:37.567Z"} {"cache_key":"6113645b638a7fb62ff326456800e6428a2b292929cca8fc9db8812251a4b39e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"zh-CN","translated":"运行","updated_at":"2026-06-16T14:12:56.348Z"} {"cache_key":"6188b9206488ef96f51e9a957a38d3d66aadf673d2d33a8b8bbce19804bce3e5","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.archived","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Archived","text_hash":"bdb86505f8062d15f152cef71dd4ca89609d5bf8e98771dcd2c9f70d247403da","tgt_lang":"zh-CN","translated":"已归档","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"61adcb02ca7435aa4622d2788ed14c8270bcbadeab1d9603f9cd67813f2cd098","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.budgetValue","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{used} of {limit}","text_hash":"e191398f92416f35cb6279f7206d2b67cdee04ce46932a1ece17c8c18ca3636e","tgt_lang":"zh-CN","translated":"{used} / {limit}","updated_at":"2026-07-09T11:48:45.932Z"} {"cache_key":"64b0db5ea1584729031fd90f0154c70887c0f66a64ad3f2225ebaaaaed11f08a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"zh-CN","translated":"线程","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"667fa13d3b3a513f5df3997dbefc06e2658bf35b198d4570c2f3fcd0007f5e1c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"zh-CN","translated":"会话","updated_at":"2026-06-16T14:13:07.632Z"} +{"cache_key":"66d3162c47464883718a6a81e77bb6fe1821182fd973f078b2c5bf03f5bd81aa","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"zh-CN","translated":"已验证来源","updated_at":"2026-07-10T02:22:37.566Z"} +{"cache_key":"6709f5d80cb35819c9e376733f1d3cb197516e43a675bc447723b3b8cc703448","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"zh-CN","translated":"已停用 {name}。","updated_at":"2026-07-10T02:22:41.379Z"} {"cache_key":"67a96c36feb4ea74886d750fcf5fe5944b23d215cbc2bdfd55b057ba738c8104","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"zh-CN","translated":"未找到 Codex 主机","updated_at":"2026-07-09T10:01:43.701Z"} +{"cache_key":"6856ad11a3e2db0659ac8f58c4e3e4dd706dc11cd509ea73f819bd057f92ab8b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"zh-CN","translated":"官方插件","updated_at":"2026-07-10T02:22:30.168Z"} {"cache_key":"688d01d07e1f871b0b92df8cf0d65bc19c83002a545acb090b90feaf3e797114","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"zh-CN","translated":"Agent","updated_at":"2026-07-05T14:39:29.129Z"} +{"cache_key":"68b1385e4bbac6df800666119b38de31a12f83256e94b41eafb6c665861673bd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"zh-CN","translated":"配置不可用;请刷新后重试。","updated_at":"2026-07-10T02:22:37.566Z"} {"cache_key":"68b2fcfdd945339833924d5b5040cb61be6be470c0c42afb95de10b00b3f7a4d","model":"gpt-5.5","provider":"openai","segment_id":"connection.lostTitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Gateway connection lost","text_hash":"ec6cd265976239ff6fc4f227bb25e8e6286fe38c3d1c64326dcdbb76c28b515e","tgt_lang":"zh-CN","translated":"Gateway 连接已断开","updated_at":"2026-07-05T21:54:55.187Z"} {"cache_key":"699c515c211b0b95cbe03af9ddbd3e9f50bf3d312362b2058148a66553f33885","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"zh-CN","translated":"刷新失败","updated_at":"2026-06-17T14:13:17.789Z"} +{"cache_key":"69bfd63ee70cb3f2a1aa20df5a7ef59098d1f8fb620c6355271bdb109e357e92","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"zh-CN","translated":"无法刷新 Control UI 配置:{error}","updated_at":"2026-07-10T02:22:41.379Z"} {"cache_key":"6b2bff8fac8b312a255c94f5d5a157389d81fbf5a2caf01c8af7025b2cf5706c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityLow","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Low","text_hash":"f793de205ead5ac302c4a1627829dea41f176b1068b993a32373fc869918374b","tgt_lang":"zh-CN","translated":"低","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"6d61929e58115a5a1bbd6f7b2afe51d6731fdb264aaec1d6c1d6f4a4e90afbbf","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.estimatedCost","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Est. cost","text_hash":"3199f14286736527bfc6ad9165629415a5aa087517acd2c0e9b1ae8bb5d26766","tgt_lang":"zh-CN","translated":"预估成本","updated_at":"2026-07-05T16:00:04.301Z"} +{"cache_key":"6df366f1f9f8cdefd844f8525fa78ad2eb91e3a4a53e087ad80ccf15bee2550e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"zh-CN","translated":"{enabled} 个已启用,{disabled} 个已禁用,{issues} 个存在问题","updated_at":"2026-07-10T06:08:26.024Z"} {"cache_key":"6e20d3f3b2c728e81d94ab2663555cda610f2e130140e290a282a0a082bef307","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"zh-CN","translated":"{agent}(未配置)","updated_at":"2026-06-17T14:13:12.872Z"} {"cache_key":"6e649a391515d299448c4aac993af0ab39d8d63af4bf8e253db920d010cbbda3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"zh-CN","translated":"预览","updated_at":"2026-06-16T14:13:09.659Z"} {"cache_key":"6e768d666e6610b6e66ef852ac09a2d08621dd76f5d8014ee822e143fbbd05e5","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupAgents","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Agents & Tools","text_hash":"493e2edea6e1c48892128656867eab52c07c16ec4f3b59e995b329a18e920328","tgt_lang":"zh-CN","translated":"代理与工具","updated_at":"2026-07-09T08:07:43.962Z"} {"cache_key":"6f95652c601b1ea8d236b15f5670521a4c863d133cc4e2f66374400963e7a250","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.badge","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Expired","text_hash":"424a2551d356754c882d04ac16c63e6b50b80b159549d23231001f629455756e","tgt_lang":"zh-CN","translated":"已过期","updated_at":"2026-07-01T10:31:03.966Z"} {"cache_key":"70023d170826b81b8c0449f796f630afb0487347c42cb1348ed2246665b18959","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"zh-CN","translated":"{count} 项就绪","updated_at":"2026-06-16T14:13:02.064Z"} +{"cache_key":"701ce25b8a6abf1ea360ae793e92b55ddb3f359993e7817ad9d17466a6935bab","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"zh-CN","translated":"仅可浏览。此 Gateway 不允许更改插件。","updated_at":"2026-07-10T02:22:41.379Z"} +{"cache_key":"7085d30d8d397386b22bd63270be44008fb5519f4b8a788207fdb4c995fd6578","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"zh-CN","translated":"在 ClawHub 上查找","updated_at":"2026-07-10T02:22:30.168Z"} +{"cache_key":"70b3aa44b33091667b28d027fe027ce0441fdb0532383a00898fd8711b172827","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"zh-CN","translated":"已移除 {name}。需要重启 Gateway 才能应用更改。","updated_at":"2026-07-10T02:22:37.566Z"} {"cache_key":"71a7e46d96256b5a077c7d7a9b787172c9705701f0b9d2adc30710fd3680fe65","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"zh-CN","translated":"缺失","updated_at":"2026-06-16T14:13:02.064Z"} {"cache_key":"71d13f9506d2a92a6b0ec95fdd1c4f25009094220113e3ca9581da0f33810fbd","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"zh-CN","translated":"此页面处于非活动状态时,麦克风输入不可用。","updated_at":"2026-07-06T17:56:04.251Z"} +{"cache_key":"72b1c0fbced1922b4fe57efa0ecbc25b6a6723346f97f9bc1c0aa0528ef5b34d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"zh-CN","translated":"插件目录","updated_at":"2026-07-10T02:22:26.256Z"} {"cache_key":"73a2d02f0dc9601214ede6186b47d9aa5afd2a2bf0ed683d3e375225e402aa15","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnly","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Archived only","text_hash":"da7ebd8c482f38dc2a5b693a0ec25aaa04ea7b5fa3713cce9fa41a28f2201a6b","tgt_lang":"zh-CN","translated":"仅已归档","updated_at":"2026-07-02T14:29:55.119Z"} +{"cache_key":"73b0a58f2c6cb7598f7dcf88b850b8d2ef1b5e4d356dad646a41410c422e166a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"zh-CN","translated":"筛选已安装插件","updated_at":"2026-07-10T02:22:30.168Z"} +{"cache_key":"7434784d2ac6d5b78c16417493bb909e676061104028f34ada2630c52b10be06","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"zh-CN","translated":"连接 Model Context Protocol 服务器,为你的智能体提供额外工具。更改将应用于新的智能体会话。","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"76be308934133ae936480963c27e5dc0e544ae642dc40a6553412efede37f3d7","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupConnections","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Connections","text_hash":"dc273117482b4429ada500ecd2e0c75532454194892cb901ca64cc7df369fdf6","tgt_lang":"zh-CN","translated":"连接","updated_at":"2026-07-09T08:07:43.962Z"} {"cache_key":"77575fbf7ed48976af995251c71bc3053d1333a0fa4a429f38a2120237b90d96","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"zh-CN","translated":"每日提供商费用","updated_at":"2026-07-06T06:40:15.357Z"} -{"cache_key":"77b8d96eb78456f1d7d55438ddce7afa674adc7da38843ce32fb6b82804c31c9","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"zh-CN","translated":"拖动以停靠到右侧或底部","updated_at":"2026-07-10T06:07:40.148Z"} +{"cache_key":"7785cb854b7bd6dd1a9c943eaf4d2cedeb393a76262392c840a9989e1afe91a7","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"zh-CN","translated":"已启用","updated_at":"2026-07-10T02:22:30.168Z"} {"cache_key":"79718c67a32a5715aaf82061c30249f8f266d590ab01ac64dc9d6c4e7768fbe3","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"zh-CN","translated":"工具错误","updated_at":"2026-05-31T06:43:44.343Z"} {"cache_key":"79fde73afecc4d79dd4bd35fe6a18eac854011d3d87673f3cc357e1c282c37c5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"zh-CN","translated":"30秒","updated_at":"2026-06-17T14:13:17.789Z"} {"cache_key":"7a8df63f8b703bbc628a80688de508d6b42d8382901f1d64f9d230f166c9fbd9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"zh-CN","translated":"评述","updated_at":"2026-07-01T01:06:06.598Z"} @@ -151,10 +222,13 @@ {"cache_key":"7e54b1034ef4308f3500aedb0f075b50121d3c355e3fa93b5393eb003ac1513f","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"zh-CN","translated":"{count} 个缓存令牌","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"7ecc102f28505976a27945fcd618acdd9e02bad34bcb8e8b7bebe159f09f41c3","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitHours","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{hours}-hour limit","text_hash":"c9091350c3c5c4e3c54dae43eec58cd35555724276a0acc388b98239a573f9df","tgt_lang":"zh-CN","translated":"{hours} 小时限制","updated_at":"2026-07-09T11:48:45.932Z"} {"cache_key":"80fb46ada1bdfad885dc5352cab2a62a36de308027367cb11269c689b1c6448a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"zh-CN","translated":"搜索结果","updated_at":"2026-06-16T14:13:07.632Z"} +{"cache_key":"83b66b5e877ecb4e48f4f35f79a89d320615367b37b3587dff8a83a6da21c372","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"zh-CN","translated":"已禁用","updated_at":"2026-07-10T02:22:37.566Z"} {"cache_key":"83cb96fc210a24483fd16ea83fa4295ae364018c7b0e94d4418f48bee7651172","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"zh-CN","translated":"要删除分组“{group}”吗?其会话将移至未分组。","updated_at":"2026-07-06T23:40:42.207Z"} {"cache_key":"83e6a198426627d98dd2adbe8d10a3d1c73dd13e687b6871f47be3d886545d25","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"zh-CN","translated":"已过期","updated_at":"2026-06-17T14:13:17.789Z"} {"cache_key":"84236818e6010d8d9d617fbe9d4cabcdcb2f96525bf35ca5554c1de8e3f375e4","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"zh-CN","translated":"所有电脑上的会话","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"847af1a927fa455ca46dbb4aa45ced05520eb59a5e4a4961978c2ae1e27c97c8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"zh-CN","translated":"工作板视图","updated_at":"2026-06-17T14:13:12.872Z"} +{"cache_key":"84b10f20b9eec80a39861f7bbbd6bd809a7ae1053f795782d4aac81e3fa7d981","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"zh-CN","translated":"取消","updated_at":"2026-07-10T02:22:37.566Z"} +{"cache_key":"8512b608f386530b7fb726b38062376b9270ec89e76ab701dcdfb9bc58e8b321","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"zh-CN","translated":"没有匹配的已安装插件","updated_at":"2026-07-10T02:22:30.168Z"} {"cache_key":"85d14ecfe410aad36aeb2107815564e2c9c53cb42a9b266e11e587466b8e7ead","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"zh-CN","translated":"打开上下文使用详情","updated_at":"2026-07-05T10:15:53.745Z"} {"cache_key":"85d17e2530b7aae7b69ae9dfa5e55d0d7c06465be5db9773c6f93ab186ed5d76","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"zh-CN","translated":"15秒","updated_at":"2026-06-17T14:13:17.789Z"} {"cache_key":"86c19e3da87db1491089a234aac58984d031ca793127ba63256b19aa9259a553","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"zh-CN","translated":"模型","updated_at":"2026-07-06T20:20:02.809Z"} @@ -163,38 +237,54 @@ {"cache_key":"87ae12eb21f59263611833a66dcb31702dccbfba41bdb5c1b9f5650b5da14ac6","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"zh-CN","translated":"将会话移动到分组","updated_at":"2026-07-05T14:39:29.129Z"} {"cache_key":"880fd4f479483976258410e957526190665655199903be2338371504e5f51847","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"zh-CN","translated":"请重新连接 Gateway 以刷新 Codex 会话。","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"88beeee8d7a6f46cf5403890e9b4d699d6d6c11990e3b9c565d3a8ebb02576f1","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"zh-CN","translated":"搜索会话标题","updated_at":"2026-07-09T10:01:43.701Z"} +{"cache_key":"8903090c4b1ad21c8e3a750a0b91f9011a63444232622fa388885a1d079b80c7","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"zh-CN","translated":"刷新","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"890b6f937f03bd9e02e4b8858f9f5ff19e571c94b20682cae0978d9f80be8312","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"zh-CN","translated":"更早","updated_at":"2026-07-05T14:39:29.129Z"} {"cache_key":"8a17e722dd12b3f61aff7e2a5897dab070581678e12290349f939346a175ef27","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.resets","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Resets {time}","text_hash":"5a0f8c1b2755ee505e02e19fadc7377ad48df63cc7d3399c20228fe3edc37cb1","tgt_lang":"zh-CN","translated":"{time}重置","updated_at":"2026-07-09T11:48:45.932Z"} {"cache_key":"8aadc762c89e6d542e79391f2f20ec1e0fe53ad0214b435ff3232e7ee8614411","model":"gpt-5.5","provider":"openai","segment_id":"nav.exitSettings","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Back to app","text_hash":"a6989680b3528cd399ebaea75e660da6ce8d155d24226532180f90ab37c05e9e","tgt_lang":"zh-CN","translated":"返回应用","updated_at":"2026-07-09T08:07:43.962Z"} +{"cache_key":"8b0c6f737627031a86303cef9b417037ca658a1565a6afbecb908128869efdc5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"zh-CN","translated":"工作与效率","updated_at":"2026-07-10T05:21:47.531Z"} +{"cache_key":"8b3066abff12f031c2a0802a327e89aafcbeff433c7d905a4ea5c65dfd9d5f42","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"zh-CN","translated":"需要注意","updated_at":"2026-07-10T02:22:37.566Z"} +{"cache_key":"8b93efc9e5b47913ad18ffce2282ee40f210ec45b1c59e43f223a928b26c0423","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"zh-CN","translated":"家庭与媒体","updated_at":"2026-07-10T05:21:47.531Z"} {"cache_key":"8bb245f232ef8206260a3e93a8eabd671e0c689dd12d72676a83e0b03361a492","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitWeekly","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Weekly · all models","text_hash":"144f0e5ca031e40c0cba8a53a9dcb4d9534c74edd976587231da2cd14b4944df","tgt_lang":"zh-CN","translated":"每周 · 所有模型","updated_at":"2026-07-09T11:48:45.932Z"} {"cache_key":"8c4a9363b4253c0f1a0471adb5a63487ef8d11eecf15e2da62ad06c19d6f17c3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"zh-CN","translated":"最近完成","updated_at":"2026-06-17T14:13:12.872Z"} {"cache_key":"8d43a155d00742cc961984fda6a4e554020b7c72594d7d550c5ddaa9f7128895","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.runDuration","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Run duration","text_hash":"b5e9698b25697ec71f0947df28e6b08438033fe73b1b87ac7362766d77b45b97","tgt_lang":"zh-CN","translated":"运行时长","updated_at":"2026-07-09T10:13:07.809Z"} +{"cache_key":"8e1b8892277c4edddd3c91e63aec8d43d71c8a94649fcd37be41abc337250791","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"zh-CN","translated":"已添加 MCP 服务器 {name}。","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"8e53a8a0ab4a78c328102f9f69906a4435905db7f71cfd14ea3a86635387dcce","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"zh-CN","translated":"CWD","updated_at":"2026-06-16T14:13:09.659Z"} +{"cache_key":"8ebdb3ef7a71cf045fbae24da2aed648479e9362ec80540378ccd4b60a43f8ae","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"zh-CN","translated":"请尝试其他搜索。","updated_at":"2026-07-10T02:22:30.168Z"} {"cache_key":"8f0c57d54c95209e4bd78eaf28f89738b119f9be813da74386068ce29bffdba9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByNone","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"None","text_hash":"dc937b59892604f5a86ac96936cd7ff09e25f18ae6b758e8014a24c7fa039e91","tgt_lang":"zh-CN","translated":"无","updated_at":"2026-07-05T14:39:29.129Z"} +{"cache_key":"9079333bac5588091c0ddc43c70ca04b4ffa2f76c7f12a30f9ad4f67ba0a50bc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"zh-CN","translated":"ClawHub 上的社区插件","updated_at":"2026-07-10T02:22:30.168Z"} {"cache_key":"909cbf5b9e1b516be1ccbdec207c086dc90926548b85b1633525fb3b4045dca3","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"zh-CN","translated":"重命名会话","updated_at":"2026-07-02T14:29:55.120Z"} {"cache_key":"90e8a6f866f950932996737cd32b84ad02a11cffbee91a04b119df8bfa589f38","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"zh-CN","translated":"昨天","updated_at":"2026-07-05T14:39:29.129Z"} {"cache_key":"90f71cf55c8e2c404947b3268f949841fc3a9e375992976fae1700ce6a543227","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"zh-CN","translated":"在工作树中新建聊天","updated_at":"2026-07-06T04:55:41.261Z"} {"cache_key":"91b44f9eb4aaa5d195f09bd3ac1b751d42e6267c3450226c8a3466a2a75dd24a","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"zh-CN","translated":"编排","updated_at":"2026-05-30T15:38:03.150Z"} {"cache_key":"9204b0af4959992f86ed7b0182138467e93424ad220bab9617c601771ff37f7d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"zh-CN","translated":"此主机上没有活跃会话。","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"921d2593314a06d228c40d777c11c9358beac8658e31bb78c72ec0156479f122","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"zh-CN","translated":"最新运行令牌","updated_at":"2026-07-05T10:15:53.745Z"} +{"cache_key":"92d2fc11e14c28786469e3ee307120eba50d561a65d8ea10d94fba03719f0076","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"zh-CN","translated":"URL 或命令","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"931bb31dc9e5fc62578d7b84cddc6c28d0a91462b1d70d91346f70d2f6c5bf46","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"zh-CN","translated":"工作区","updated_at":"2026-06-16T14:13:02.064Z"} {"cache_key":"94d027d3632d0b83dbad662a48213bff9192175966a3232a12fe80c0c3429d35","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"zh-CN","translated":"工作区路径","updated_at":"2026-06-16T14:13:07.632Z"} +{"cache_key":"96e8f6c88d084a8493e9c31bc1cd584a389132f675bf931a26f79376e3b6e6d6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"zh-CN","translated":"问题","updated_at":"2026-07-10T02:22:30.168Z"} {"cache_key":"977f813911a330bb671b27ed6adabc6c366f250395bf3b05ca6450a9189226a2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"zh-CN","translated":"已使用 {percent}% 的上下文({used} / {context} 个 token)","updated_at":"2026-07-09T07:06:10.579Z"} {"cache_key":"9a146ba6cab54d6d511b1f33da5aab677cb124ba85c3bfcee674761410a3c87a","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitDaily","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Daily limit","text_hash":"1e4ce9cd955f07b1b79cddb1bec9df28d4033d4238c0e54b0b766239133afc8c","tgt_lang":"zh-CN","translated":"每日限制","updated_at":"2026-07-09T11:48:45.932Z"} +{"cache_key":"9ab497bd2e0b0e94721e21c94b4f9e2342952ec03a7cd827f687c44fab077f37","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"zh-CN","translated":"正在添加…","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"9af9effc9d05b8b69b0ef3fc55b7aae6b1942cb2e2fb157e6de1781b20e3e909","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"zh-CN","translated":"刷新会话工作区","updated_at":"2026-06-16T14:13:02.064Z"} {"cache_key":"9b3d188311193fa6069b9f08be7d3f4d27c457e7065abe4f1f6b52fd54f3cecd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationBoard","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Board: {board}","text_hash":"96d7493589e40e17803b3bf643dff1b891a4ebf57f5d2b36af0a7ddd09e64b84","tgt_lang":"zh-CN","translated":"看板:{board}","updated_at":"2026-06-16T14:12:56.348Z"} +{"cache_key":"9c3b2d87bddeacb258522a51cd5b61418f67e5290fd747c30ed0b5ac59e67544","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"zh-CN","translated":"配置","updated_at":"2026-07-10T02:22:37.566Z"} {"cache_key":"9cdbb5a644a8bcc07b63ca91a9ca8a44ce573821e07e9b0c71a1696b3859027d","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"zh-CN","translated":"麦克风 {number}","updated_at":"2026-07-06T17:56:04.250Z"} {"cache_key":"9df04f62aad41195b81ed3eb222cdfe7e97b9eb68b0dbb0636598658e6508c06","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"zh-CN","translated":"以只读方式查看此 Gateway 和所有已连接且启用会话共享的电脑上的 Codex 会话。","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"9df70d65c0a7d1e9a686bc454d0fad582310d4d8eb2cbd92522f79545f899e31","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"zh-CN","translated":"系统默认","updated_at":"2026-07-06T17:33:17.802Z"} +{"cache_key":"9e90ff8fe5c70d0e82f1336468499ac7198058e3839a05a47ae5c7b8dee796c9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"zh-CN","translated":"服务器名称可使用字母、数字、点、短横线或下划线。","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"9f42eba1f91aabef900ff36d5fa41bcdb9ed96e1889800782deebbda11b07fde","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"zh-CN","translated":"暂无操作员备注。","updated_at":"2026-06-16T14:13:02.064Z"} +{"cache_key":"9fb3a3ffa80759ae9eb5d1e7288abc08f20c5df36f2b209c9c1f287bfb273c3f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"zh-CN","translated":"类别","updated_at":"2026-07-10T04:28:05.882Z"} {"cache_key":"9fb9dc387f88bdcb9b2ad08ec9e5ef628b5c29edf16aa781eb2469e58bf6a986","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"zh-CN","translated":"{count} 个请求","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"a169cb05d52934034f79da2984b8edfba11cbe14673986d36301cacdfea7ea48","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"zh-CN","translated":"协议违规","updated_at":"2026-05-30T15:38:03.150Z"} {"cache_key":"a18d96e5fded51bc640663bb01d17e5f9f39deec2e016189c9061533ac6377d4","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"zh-CN","translated":"活跃","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"a22243320fa56f3a951b9a6a9a033efaee999643c0de514174713dbc0d6983b9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"zh-CN","translated":"目标备注","updated_at":"2026-05-29T20:59:45.213Z"} {"cache_key":"a309677c4ab7b7fb227acba42c87f5bf269459c07e16985f69d90e1c9c15b312","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"zh-CN","translated":"将修订请求发送到当前聊天会话,而不是提案的工作坊会话。","updated_at":"2026-06-16T14:12:56.348Z"} +{"cache_key":"a32aab02c3e5ccffc23dedb3f58d120566f91c9645e3d509f3ba52ba7e37c5c6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"zh-CN","translated":"启用","updated_at":"2026-07-10T04:28:05.882Z"} +{"cache_key":"a3acba3722eabe950732c0769b926984bbad54d3e85666910128289169f714e5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"zh-CN","translated":"重试","updated_at":"2026-07-10T02:22:26.256Z"} +{"cache_key":"a4db40c00cd8f88f4a770b6fcd9e74f748a44fd07d3b52c920915bc7e1ea1b42","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"zh-CN","translated":"安装 {name}","updated_at":"2026-07-10T02:22:41.379Z"} +{"cache_key":"a52e9fc53a9dc1b9c1d9227767ce3b6626d30d035d1fb757e8393dce12ebca79","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"zh-CN","translated":"查看详情","updated_at":"2026-06-16T14:12:56.348Z"} {"cache_key":"a5347dabc6ddc8630217d60b6b12afe06a232fd77ab402617b32fa4b4350ee7a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"zh-CN","translated":"自动化","updated_at":"2026-06-16T14:12:56.348Z"} {"cache_key":"a59d8460532e0f8a2f5f5ca90b1571d8acb8e990592cb485485d07195f27d147","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"zh-CN","translated":"排序方式","updated_at":"2026-07-06T23:40:42.207Z"} -{"cache_key":"a5fd33bf24260dbdfdf3d5df782b28acad6cc2771fa159bc66f5fd1a4350c14d","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"zh-CN","translated":"Lobsterdex","updated_at":"2026-07-09T23:55:42.936Z"} {"cache_key":"a67303163e88926de7cd141809322989aa148d2f66005df748b33e0b5b82a5be","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"zh-CN","translated":"龙虾来访","updated_at":"2026-07-09T20:51:20.077Z"} {"cache_key":"a6dd04bb562e778cc5afb1595642673471281de48324082484fe487f2523f73d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"zh-CN","translated":"未命名的 Codex 会话","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"a80e0e155059db70842a755311839e6581ab235302f02da96a8a2a08c7ed280a","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"zh-CN","translated":"状态","updated_at":"2026-07-05T21:00:21.876Z"} @@ -202,35 +292,53 @@ {"cache_key":"a8e8281eb21a2bff4585c741ab9573e6ae33ad543ac5df29d5cc1e9fb0139fe4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"zh-CN","translated":"语音","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"a92f66940cfdce9ab88a4ea19541e24a21d4ff043318dbc8aa75085b95f6aa04","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"zh-CN","translated":"已显示 {count} 个","updated_at":"2026-06-16T14:13:07.632Z"} {"cache_key":"a947d068dbf617b4cd568a9dd4500f045551063db1e44d5874dfbaa5168590ca","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"zh-CN","translated":"活跃","updated_at":"2026-07-09T10:01:43.701Z"} +{"cache_key":"ac07514bf556674e783c1d43f16f32faf21b3721de562e7a873a9391ab91c81c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"zh-CN","translated":"未安装可选插件","updated_at":"2026-07-10T02:22:30.168Z"} {"cache_key":"acf135af3b21a2afa9b8ee32079c7b6801bad41ad50eb122aed0d238bce524c4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"zh-CN","translated":"就绪未分配","updated_at":"2026-06-17T14:13:17.789Z"} +{"cache_key":"adbc8bd484a7ed9a36a23857915589dd8e8d6666c2c4187ac48f86a6a18499bf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"zh-CN","translated":"ClawHub","updated_at":"2026-07-10T02:22:26.256Z"} +{"cache_key":"adde90de9f66814502b44cc78abd4349383df614073e44c898faa64cd55483a6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"zh-CN","translated":"添加服务器","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"ae146c82830904f54d5f31e8cda63c7c95e9e7cd07d53d7a2220c2e0eff438a7","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"zh-CN","translated":"隔离的代理任务检出和恢复快照。","updated_at":"2026-07-05T21:00:21.877Z"} {"cache_key":"ae5fe0e0ebb0a7b24517764127519de7cc9b94b0e2c0a354ddc46cf5d849a948","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"zh-CN","translated":"费用类别","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"b00f2330994db598f738499efb4983c3f2c5615e50f2c29680d04a47f5f6a76e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"zh-CN","translated":"分组","updated_at":"2026-07-05T14:39:29.129Z"} +{"cache_key":"b1c26b1a31da3feaa822550e02dce80eee2d87418add5667d38971903693dc8b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"zh-CN","translated":"停用 {name}","updated_at":"2026-07-10T02:22:41.379Z"} {"cache_key":"b1d861d36ed63ffa10eb466ae4808325f177079d361d33df83fbcd4ae3b55455","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"zh-CN","translated":"打开聊天","updated_at":"2026-07-09T08:27:09.526Z"} {"cache_key":"b1e565857c860629e775fea87298072706fb1e85f491c2eb5958969c219d1690","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"zh-CN","translated":"没有托管的 worktree。","updated_at":"2026-07-05T21:00:21.876Z"} {"cache_key":"b426537195153a93e865fc8e97f99fd103f434051f77c357adc7bb961243e906","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"zh-CN","translated":"会话","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"b4e992387ebfad552df1efabac949f56586b7ad39a24d770e121528e5583ce39","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"zh-CN","translated":"关闭","updated_at":"2026-06-17T14:13:12.872Z"} +{"cache_key":"b54f8a5676ddb23c599708c65f2fd681bf858eddc141871bc62bf8280b7583a2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"zh-CN","translated":"正在移除…","updated_at":"2026-07-10T02:22:37.566Z"} {"cache_key":"b5ad8421e12b2c7aa85b3e53c449595abad920034d161e55f49c3545e3b89230","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGroupSystem","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"System","text_hash":"6725e7bbcd28f3a8a586fa34bf191fd72dde8b61756932cd3237c17a6f196f1a","tgt_lang":"zh-CN","translated":"系统","updated_at":"2026-07-09T08:07:43.962Z"} +{"cache_key":"b6144579e751152991b74e9b531df3cb8c2ded13124a56b8452f002d1841a0ff","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"zh-CN","translated":"搜索 ClawHub","updated_at":"2026-07-10T02:22:26.256Z"} +{"cache_key":"b61aec78d03ca01f97cc7ad7e4e3518982d0493893d871ec164ad002bbc99197","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"zh-CN","translated":"可用","updated_at":"2026-07-10T02:22:37.566Z"} +{"cache_key":"b6808cd59919d3df5f9918dc5583bbb298e332fc0c6f050421119837e3895089","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"zh-CN","translated":"精选","updated_at":"2026-07-10T02:22:26.256Z"} {"cache_key":"b682b0be54b367e76ec19fbcfcb8d976e47bbc2c325da131f145b7b326ee940f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"zh-CN","translated":"本周","updated_at":"2026-07-05T14:39:29.129Z"} {"cache_key":"b6d6c1007381621c6513588430faeef336ffce10612ca2677f2d8d494872f63f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"zh-CN","translated":"再次运行 /pair qr 以生成新的设置代码。","updated_at":"2026-07-01T10:31:03.966Z"} {"cache_key":"b71a00b34aac94e1f770e951cd1200e430c9b8345c288ed5e5abd9f6aa7b0374","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"zh-CN","translated":"在提案成为上线技能之前,进行审查、优化并应用。","updated_at":"2026-05-31T21:48:12.453Z"} {"cache_key":"b76e0984ea02f710842b4cfe0a5e585a61ee95556247438dedd1e7c27cecbf2c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"zh-CN","translated":"{count} 个已更改","updated_at":"2026-06-16T14:13:07.632Z"} +{"cache_key":"b7820cb2a562c65bd613ffb052180fa13d0a0d0008ecda736b4e2652d0db2b8b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"zh-CN","translated":"尚未配置 MCP 服务器。在此添加一个,或从 Discover 中选择一个连接器。","updated_at":"2026-07-10T02:22:34.212Z"} +{"cache_key":"b7b335028c8b3d03666fe3a663de83e09b238167bb3b7c3efe95e2a997691712","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"zh-CN","translated":"来源","updated_at":"2026-07-10T04:28:05.882Z"} {"cache_key":"b7ce3eca1ad2f2387656aec7d2eae71c9a0020ae019808f36c52dee34f88b6b4","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByCategory","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Custom groups","text_hash":"9636b3c175d0e2a9fb982785a84275d191a8b4ef28e4d842a9e35a38e3c12f10","tgt_lang":"zh-CN","translated":"自定义分组","updated_at":"2026-07-05T14:39:29.129Z"} {"cache_key":"ba20c86435f671b5ce320e05e537e49d1bcdfa83c8113bfbea5b5ca7b86e9175","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"zh-CN","translated":"此主机上没有已归档的会话。","updated_at":"2026-07-09T10:01:43.701Z"} -{"cache_key":"ba66cfaff0bec6cabc915db2d43d045f2ea23eacf8272cfd19db5ff3a64aec78","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"zh-CN","translated":"显示会话文件","updated_at":"2026-07-10T06:07:40.148Z"} {"cache_key":"ba96885b1cacc1b221d2d4919c9872219a71638364d1b63d68202ebc095d8877","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"zh-CN","translated":"由 OpenClaw 拥有的隔离代码库检出。","updated_at":"2026-07-05T21:00:21.876Z"} {"cache_key":"bbb3e5c481862e0a176dafef1141274ef9b4860fdc4d08c07e0866292b5a94c7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"zh-CN","translated":"主机","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"bc8de5c3147c2a650544490d0721eaffab55237b070092a0d63bad6f2f592fe6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"zh-CN","translated":"配对二维码已过期","updated_at":"2026-07-01T10:31:03.966Z"} {"cache_key":"bdb340670df47cbae54025a5ec4856428df61d622ead9150c27a1068dc55e2fb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatAria","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Use current chat for revision requests","text_hash":"9c551a423ae74aedaaa90e4df9899dbdc02f846d6ee058bf2576a812e2c52119","tgt_lang":"zh-CN","translated":"将当前聊天用于修订请求","updated_at":"2026-06-16T14:12:56.348Z"} +{"cache_key":"be618039adb6848bf714066e81757ad7ddeeacb07db6d351b31c589980cdde65","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"zh-CN","translated":"已安装","updated_at":"2026-07-10T02:22:30.168Z"} +{"cache_key":"befe9da390071aa9606d7a43891f5f133123d2a9a1033ac1498fabd4acd627af","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"zh-CN","translated":"名为“{name}”的 MCP 服务器已存在。","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"c090fc1c2de7a56fb0aa912c902092f18d463241874f3d3ceca44f7d48892897","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"zh-CN","translated":"没有卡片符合此视图","updated_at":"2026-06-17T14:13:17.789Z"} +{"cache_key":"c2297d74f439cbc2fac6925eea04d3e8cc119b4e2406a72f2bb24e57547110cd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"zh-CN","translated":"移除 {name}","updated_at":"2026-07-10T02:22:37.566Z"} {"cache_key":"c236e7b14cc80a54b31ed3f1cbea83ee1528b62c05545d43824d53498071b693","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitFiveHour","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"5-hour limit","text_hash":"26d04fad786b1e3a08fd957ec893b0457b72a2926da0ee63847aea9037951d24","tgt_lang":"zh-CN","translated":"5 小时限制","updated_at":"2026-07-09T11:48:45.932Z"} {"cache_key":"c268dbd9a6ff1bdb81405b1aa6e249a9781576aa4f55632323d1fa3d933e8f8a","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"zh-CN","translated":"{count} 个输入令牌","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"c34ff5c967efd561c304968fa6f28847a106627fedfa0d3f631e96ec4d857e25","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"zh-CN","translated":"关闭","updated_at":"2026-07-10T04:28:05.882Z"} {"cache_key":"c355864abe1010d20cb292cc3969f7d2af29d317136e2369ca404a45cedb7c84","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadingMore","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"zh-CN","translated":"正在加载…","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"c3737355859b78b9222efcbfa3779cc9168eeeb1159a0dd9f5bde1b8682af781","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"zh-CN","translated":"查看详情","updated_at":"2026-06-16T14:12:56.348Z"} {"cache_key":"c54ea95851f6fb9a3e7edbae4319c9ff1bff70ebe7939a5a9f7b14d830a7d5b6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.lastRefreshed","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Updated {time}","text_hash":"2f87419441e6111b4d62893d3c4ef5ddeb2c8e1af82fabab6132856faf77f907","tgt_lang":"zh-CN","translated":"已更新 {time}","updated_at":"2026-06-17T14:13:17.789Z"} {"cache_key":"c6cba46d07ad919a1a14bb0ff98158905b22c53ef82f6b33fcf699d05ba069a3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"zh-CN","translated":"搜索文件","updated_at":"2026-06-16T14:13:07.632Z"} +{"cache_key":"c6e81a8dd35052ff3a53825663441062b49940f38972366dee59d604186f04d9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"zh-CN","translated":"已启用 {name}。","updated_at":"2026-07-10T02:22:41.379Z"} +{"cache_key":"c76f64de4669751fdbfd9988057df9008b60518fa560c3271ec0b2d7f89da284","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"zh-CN","translated":"构建时间","updated_at":"2026-07-10T09:46:42.669Z"} +{"cache_key":"c79b5c3c2c5f66bbae52483aebd8d69b5c3ec3874ffaa053c8044832117e03cd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"zh-CN","translated":"代码插件","updated_at":"2026-07-10T02:22:37.567Z"} {"cache_key":"c99abc498d4cd48fa77585c4e1f5d42bddcffaa12700b31c94b3597df9b00013","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"zh-CN","translated":"名称","updated_at":"2026-07-05T21:00:21.876Z"} +{"cache_key":"c9ac8757268ac670a0e433fe5a08550c3deede385597b859ee91b25874d0d75d","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"zh-CN","translated":"版本","updated_at":"2026-07-10T09:46:42.669Z"} {"cache_key":"ca46e3eccd4bc876d240f2234771f5f5f8021b156bb5bf22e75409c613b9ead8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"zh-CN","translated":"命令","updated_at":"2026-06-16T14:13:09.659Z"} +{"cache_key":"caf6e5fc9ac416205744f4369702650eeb59e56037665ec4357a72f34205f13c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"zh-CN","translated":"Gateway 离线","updated_at":"2026-07-10T02:22:37.566Z"} {"cache_key":"cb52990e51f5a3e66fc1e073ae501a8b2f90ff7530bef6d90551ac29ddea22b0","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"zh-CN","translated":"无法访问麦克风输入。","updated_at":"2026-07-06T17:56:04.250Z"} {"cache_key":"cc2db2a17eaa1760517a78470c4ee7ac60d8569c68d764d2658cfa006c92ab2d","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"zh-CN","translated":"Realtime Talk 需要浏览器麦克风访问权限。","updated_at":"2026-07-06T17:56:04.251Z"} {"cache_key":"cca9d224a9c8081e0802e3a19610233be8f4786a4525fc0207f14bad97945620","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"zh-CN","translated":"自动刷新","updated_at":"2026-06-17T14:13:12.872Z"} @@ -238,17 +346,23 @@ {"cache_key":"ce1b95cc415bbabfdf3826d6f698e76ddd6b1c1ccfe39b11fc6325b79445866e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"zh-CN","translated":"展开会话工作区","updated_at":"2026-06-16T14:13:02.064Z"} {"cache_key":"ce5dfb9c3456296bbf277b301eb2ab9379076b902760601739fcc68f641681f8","model":"gpt-5.5","provider":"openai","segment_id":"languages.hi","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"हिन्दी (Hindi)","text_hash":"fab2abfce45382f3031c59477017700a8cb5dfaf8d15379dc24304809b97c7d5","tgt_lang":"zh-CN","translated":"हिन्दी(印地语)","updated_at":"2026-06-26T21:43:19.728Z"} {"cache_key":"ce82a02c0474c34be4475bb5ae1d8b7816343f5a5c9ec0c1355a2b4d51dcc8a2","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"zh-CN","translated":"MCP","updated_at":"2026-05-31T05:36:30.556Z"} +{"cache_key":"cf05f330c58044f3e0259c22c5619b3698adefdbe035d475554655116717c508","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"zh-CN","translated":"{name} 操作","updated_at":"2026-07-10T04:28:05.882Z"} {"cache_key":"cf40349339fb34426c7595898e8675a217ed3e327664a2ff545bdf6cbf89b891","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"zh-CN","translated":"缺失","updated_at":"2026-06-16T14:13:07.632Z"} +{"cache_key":"d08f9c104a2a6b8bca1693a8ff095546a81c02240735b5b3cf8f44a596dbe485","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"zh-CN","translated":"工作区","updated_at":"2026-06-16T14:13:02.064Z"} {"cache_key":"d099bcb5fff56ac4bf1037c3e5d7cdbff1ee229144c20fbbf351f392b6175447","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"zh-CN","translated":"此浏览器无法列出麦克风输入。","updated_at":"2026-07-06T17:56:04.251Z"} {"cache_key":"d1627828da337af84dbfe02a3f7fb8b6aabb517330f02120629d42b86c2176b5","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"zh-CN","translated":"技能工坊","updated_at":"2026-05-31T21:48:12.452Z"} +{"cache_key":"d2938d0d029f899b2761b87690cfd3b01f4d47d9f0237af7ba28109bd64b42a9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"zh-CN","translated":"模型提供商","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"d2e5734783075ea488053bb07d9f1d8e6f5ac0f77cce21752949b0ede2a23a95","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"zh-CN","translated":"仅显示已归档的会话。","updated_at":"2026-07-02T14:29:55.120Z"} {"cache_key":"d416c230ab0c1da9c6c49eeaabf375446f55434215e65f740dc7e68afcd44384","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"zh-CN","translated":"{count} 个会话","updated_at":"2026-07-05T14:39:29.129Z"} {"cache_key":"d4846736138303bead12427b11591612e853ff843bef3b731319fb43f98f96db","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"zh-CN","translated":"操作","updated_at":"2026-07-05T21:00:21.876Z"} +{"cache_key":"d6501aeeeb7d09302ea831f4890bfcdfa7c4479cbbab0da217fd807b75741294","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"zh-CN","translated":"搜索 ClawHub","updated_at":"2026-07-10T02:22:26.256Z"} {"cache_key":"d653d0d8e144cd583c112e525ea5f6f1921dd9bbc50738d7cd4ac4a7058daf84","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.title","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Context usage details","text_hash":"0e04e44654b5a2abf769dcd2f82a32e0501a41689d6635d7f718978c160958f0","tgt_lang":"zh-CN","translated":"上下文使用详情","updated_at":"2026-07-05T10:15:53.745Z"} {"cache_key":"d729a8cb57c1d1edba6bd8a53c63736e0f36dde763e0d052f32f127b5e61e12f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"zh-CN","translated":"有 {count} 台主机不可用。其他主机仍可用。","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"d7473bdca7e98480314b35b2567c33154768be882c0ed9c0af0f2e3133ffc36b","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"zh-CN","translated":"热门模型","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"d76206e632fe24e1ca937d952a43bb83ec0c10b6bfd06910bf997559eaa37862","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"zh-CN","translated":"构建此浏览器产物时嵌入的标识。","updated_at":"2026-07-10T09:46:42.669Z"} {"cache_key":"d783c793b1846038502c37af4680597a34dacf9f2c93108ac6b424d11c60df51","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.loading","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Loading session workspace…","text_hash":"bc6b2400fad20ee1d95d8de4ec6eef9ff1818ab080f86513384029519eaf4f4e","tgt_lang":"zh-CN","translated":"正在加载会话工作区……","updated_at":"2026-06-16T14:13:02.064Z"} {"cache_key":"d83bb5af8ee96cd1b116828daf930cdda7f67b21b720db6ca53e5b89db2423f0","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"zh-CN","translated":"为 {name} 创建快照并删除?","updated_at":"2026-07-05T21:00:21.877Z"} +{"cache_key":"d89afac3b554757fb4d561599db3a52a68e32dad05522101aa2511b48135ee74","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"zh-CN","translated":"需要注意","updated_at":"2026-07-10T02:22:30.168Z"} {"cache_key":"d8ba4969bd8ea9008dc15568c43fc888159393dd84f1473c3dc1fcc4403e2a70","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"zh-CN","translated":"请在 Gateway 或已配对的电脑上启用 Codex 会话共享,然后刷新此视图。","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"d8d059a2a919eeb288a8748c5d2bf04ec0e36ca1a6504bcbcc9cfc559ee5385c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"zh-CN","translated":"已更新","updated_at":"2026-06-16T14:12:56.348Z"} {"cache_key":"d8d12564d50b423c2c2bd65f5d3534c9772715425066bffdcacfb682c0d20bd3","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"zh-CN","translated":"今天","updated_at":"2026-07-05T14:39:29.129Z"} @@ -257,9 +371,14 @@ {"cache_key":"dcbcde9aefceb81d5b5baaaaecb3011643afb5b9af2f45fa6dad4bfa817a1bc3","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"zh-CN","translated":"在线","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"dd49f8ed874f61fcd6ef3e3d3d869426fd62aac2507318e53463c2bacdb9e29c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"zh-CN","translated":"已显示 {count} 个","updated_at":"2026-06-16T14:13:07.632Z"} {"cache_key":"dd6dad49d6ab26541e33457aa008101752f61d1d423fdb5d16e4ebd58ba9354c","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.planUsage","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Plan usage","text_hash":"eb55e9232d2a7503c819491be60761e99458daf4947df9676c5cc86b653f59f4","tgt_lang":"zh-CN","translated":"套餐用量","updated_at":"2026-07-09T11:48:45.932Z"} +{"cache_key":"de11439a6bf657595619440322501e9c7d701e7786fda41e942327702c306fa2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"zh-CN","translated":"发现","updated_at":"2026-07-10T02:22:26.256Z"} +{"cache_key":"de38c83fd438afd97f809d134bef09726afc8ed557ff6bd7eb12d4398473633b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"zh-CN","translated":"不可用","updated_at":"2026-07-10T02:22:41.379Z"} {"cache_key":"df533618a71d54ab47a3fab70cf1e1f928aee1837023b7bfb6e54e0cc4c2df38","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneInput","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Microphone input","text_hash":"5c8a6025b9d96fb0c090d33c9def15ee64aa520a83cf5d64c784b4f0699bb15e","tgt_lang":"zh-CN","translated":"麦克风输入","updated_at":"2026-07-06T17:33:17.802Z"} +{"cache_key":"df7b0f402cb9fa4f02583c26f1871fb540fd4cae36fe4e2f1aadcab8e4c9f81a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"zh-CN","translated":"安装此插件前,请查看 ClawHub 警告。","updated_at":"2026-07-10T02:22:41.379Z"} +{"cache_key":"dfd2770408e175779d9c5d467cc698cb3f04a7742b1f840c2c8f443fdfd1bebc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"zh-CN","translated":"ClawHub 中没有“{query}”的结果。","updated_at":"2026-07-10T02:22:26.256Z"} +{"cache_key":"e08daaaccd8a74671f759b845bb17d62bc67903a0be88cdf49f22b5795ef2041","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"zh-CN","translated":"正在加载插件…","updated_at":"2026-07-10T02:22:26.256Z"} +{"cache_key":"e142638cf2d7353402bf7f6dc466353824a91e0950336b973c6fcb26a5d53e69","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"zh-CN","translated":"MCP 服务器","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"e17ad9eace2e7160e31c9e34007e0303ecf7cf73604209705936b698e083dd22","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"zh-CN","translated":"灵敏度","updated_at":"2026-07-06T20:20:02.809Z"} -{"cache_key":"e23a5320767c2c80cf54f86058d5162d969c455369e889dcbbb42760564d5aeb","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"zh-CN","translated":"龙虾音效","updated_at":"2026-07-10T04:49:47.263Z"} {"cache_key":"e2b04570ec37956ab09fdb3eda0bb1c6c0f0e4aa3e9fc54e7f90daf6d9b557ee","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"zh-CN","translated":"重命名分组","updated_at":"2026-07-06T23:40:42.207Z"} {"cache_key":"e36d0e82f933f05f657d66ee40b185909e28009859e363872af0130495af8376","model":"gpt-5.5","provider":"openai","segment_id":"nav.settingsGeneral","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"General","text_hash":"c910d474dcd724bff83ddedeb06bf1eceaf9fb3af7c76bb282be057f36e6dffa","tgt_lang":"zh-CN","translated":"通用","updated_at":"2026-07-09T08:07:43.962Z"} {"cache_key":"e37c9647e2d6d7a77f470b7a465ed7136d7db347b9a1be3e491f0e044138de59","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivityHigh","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"High","text_hash":"c4ebc6d4a5832cd9415f906ad03661110c705a72381c8b8b145761d02e2dd23a","tgt_lang":"zh-CN","translated":"高","updated_at":"2026-07-06T20:20:02.809Z"} @@ -272,11 +391,15 @@ {"cache_key":"e74cbaca3fb022ecddce09a4ec183689d52341d5aafa49cf9974fd4b3fe480ae","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"zh-CN","translated":"分支","updated_at":"2026-07-05T21:00:21.876Z"} {"cache_key":"e81939c44ed4255c745eea1ed7b8828ee516f2a1797a92f33f42d033bed68505","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"zh-CN","translated":"在默认浏览器中打开","updated_at":"2026-07-09T11:02:24.168Z"} {"cache_key":"e8ba2231314380ef7d455617f316fe194b075dd3ed626c1ce41fa62c6ea0753f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"zh-CN","translated":"复制路径","updated_at":"2026-06-16T14:13:09.659Z"} +{"cache_key":"e960543f2b7badffb5d0a7a455b2d5f8bd8676b08c9d3868eee45dc73d2be0e6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"zh-CN","translated":"连接到 Gateway 以更改插件。","updated_at":"2026-07-10T02:22:41.379Z"} {"cache_key":"e9bc25f088333e039c45a2fd1e94c3803b63bdd396f507c7068d00db24204011","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"zh-CN","translated":"链接操作","updated_at":"2026-07-09T11:02:24.168Z"} {"cache_key":"ea0881c4918136b6e80f0904ffd52deb6df20c9bc9d61d132703eda59d7604e9","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"zh-CN","translated":"系统错误","updated_at":"2026-07-09T10:01:43.701Z"} +{"cache_key":"eac5a2196b56e90bb965186fc7401471ed4b3df91c3c3f9d72f0d60ddfe1d59b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"zh-CN","translated":"已安装","updated_at":"2026-07-10T02:22:26.256Z"} {"cache_key":"eac61937cea7a2fe57800d170b6ab7197de171e9e8ee3d6183cdf0e46a9b3b32","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"zh-CN","translated":"已读取","updated_at":"2026-06-16T14:13:07.632Z"} +{"cache_key":"eb613b59d04d785382df2f0e58ee609ae923179f6cb821cad92d893b56928ce6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"zh-CN","translated":"已启用 {name}。需要重启 Gateway 才能应用更改。","updated_at":"2026-07-10T02:22:41.379Z"} {"cache_key":"ed08a02a402e8e1f570a992bde8bd293686695c31f2fc5e809e04c83c752a74f","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"zh-CN","translated":"已分离","updated_at":"2026-07-04T21:23:46.285Z"} {"cache_key":"edd1daaafea87955c5785494b9bec9a525c6126a4af67b455c60e559b90e04c8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"zh-CN","translated":"重命名分组…","updated_at":"2026-07-06T23:40:42.207Z"} +{"cache_key":"ee6201e938b7e5a1f6cdcf241a66c66fd80d3d297df499c4e37ee9c9cdedb811","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"zh-CN","translated":"已添加 {name}。新的代理会话可以立即使用它。","updated_at":"2026-07-10T05:21:47.531Z"} {"cache_key":"eea8b87c4185cceb10a362123cb486df856067bd62ec54f0dda89850de3e1e9d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"zh-CN","translated":"设置中更多选项","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"efd0ab7936fee8c2389e94dda091262ceb0bd45db3fdedb087aa0c7fd5564766","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"zh-CN","translated":"会话目录不可用","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"f03bfa5b94f27a09776995652814947da0be9a243d8c2adacea07093a6f803ef","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"zh-CN","translated":"使用当前聊天","updated_at":"2026-06-16T14:12:56.348Z"} @@ -287,18 +410,19 @@ {"cache_key":"f33e4eb6ac34b6fd773777a4ece31f2645a1ce8cd53315b1aab1a936474d81bd","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.openUsage","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Open usage dashboard","text_hash":"bae5e40b055c195a780a0dc06042d60353da51ab582610096c5cb0d269484c00","tgt_lang":"zh-CN","translated":"打开用量仪表板","updated_at":"2026-07-09T11:48:45.932Z"} {"cache_key":"f3b89fd1435a423eef3ebc5293a4144439c54b739f78094c5e600e53eaba8433","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"zh-CN","translated":"{count} 个附件","updated_at":"2026-05-30T15:38:03.150Z"} {"cache_key":"f3e2350de6e160675bcc9622aabeb49160e5631a1357a328449248740b05b11a","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"zh-CN","translated":"在边栏中打开","updated_at":"2026-07-09T11:02:24.168Z"} -{"cache_key":"f415f2086f952c0c119bdc13706229f6b41e609e8e97e364cd434586f0316157","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"zh-CN","translated":"触摸时发出轻微咕噜声","updated_at":"2026-07-10T04:49:47.263Z"} +{"cache_key":"f42db8ec78d644c1b6ae54dbf6bf26c028378704c11dc316ca2b000c129fed06","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"zh-CN","translated":"输入至少两个字符以查找代码和捆绑包插件。","updated_at":"2026-07-10T02:22:26.256Z"} {"cache_key":"f546087198af9c84715102ff9387620795f6b9ee46f90889cf2f7f325ed80b72","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"zh-CN","translated":"{group} 的分组选项","updated_at":"2026-07-06T23:40:42.206Z"} {"cache_key":"f55792d9125c9ab212c8517108777fcc318232651d166537b2c23c9dbe99338d","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"zh-CN","translated":"提醒调度器","updated_at":"2026-05-30T15:38:03.149Z"} +{"cache_key":"f5920cd52de6b09a8069c683cd796a39404d0c0b85e006f9c83332af12f16dc6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"zh-CN","translated":"MCP 服务器","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"f62f4b4d9b2bf1fd1ba005cead9446cc7d53503516f349f7454892a7dd76634e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"zh-CN","translated":"上级文件夹","updated_at":"2026-06-16T14:13:07.632Z"} {"cache_key":"f74c8a67deacc2bd29ad93ece5f8f833fdcd48c8065337b00e8d99c601a6156c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"zh-CN","translated":"{count} 张卡片","updated_at":"2026-06-17T14:13:12.872Z"} +{"cache_key":"f797cfca54f194c7810fe51734ab59044ce2688b0c3453b5f3bb0dbdd20c17b9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"zh-CN","translated":"上下文引擎","updated_at":"2026-07-10T02:22:34.212Z"} {"cache_key":"f7ed16571fdec6a45355166771b644a808618862a09ed22a7b9a9d29c2f2a072","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"zh-CN","translated":"Codex 会话摘要","updated_at":"2026-07-09T10:01:43.701Z"} {"cache_key":"f95a527230e5c3ddb8caf4fd088428bced518d38940d887cef20e358d55fe7d2","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"zh-CN","translated":"未分组","updated_at":"2026-07-05T14:39:29.129Z"} {"cache_key":"f979c213faf3f928f4bce65070ac96d18f3dfdd32350d9af1d865bc2bd9820e7","model":"gpt-5.5","provider":"openai","segment_id":"connection.offlineHint","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Live updates and actions are paused until the connection returns.","text_hash":"7a60105cdafb6aa95b9081a370308a9ccd495199c9bfb90d3e0f70af68680f26","tgt_lang":"zh-CN","translated":"实时更新和操作已暂停,直到连接恢复。","updated_at":"2026-07-05T21:54:55.187Z"} {"cache_key":"fa68f714378369967c188eccda0986a65885fba122448a0e84b4a7e55f3a017b","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"zh-CN","translated":"未找到其他麦克风","updated_at":"2026-07-06T17:33:17.802Z"} {"cache_key":"fafa46ac079c00c67736f73d6b0a33c705236b1077c76a15e5a89999541b81fd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"zh-CN","translated":"宽松卡片密度","updated_at":"2026-06-17T14:13:12.872Z"} {"cache_key":"fba9c84d786ac63dbce7465ee8a9a91e5fd85cbaa3f4bd2435efde19ec803952","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortCreated","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"zh-CN","translated":"创建时间","updated_at":"2026-07-06T15:07:02.499Z"} -{"cache_key":"fd70978ca0ac245f241ae881452971de46782e1adfcaec3f928155652cea067d","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"zh-CN","translated":"停靠到底部","updated_at":"2026-07-10T06:07:40.148Z"} {"cache_key":"fda2fd0044566760d3dc6c414412cd72fe3fd6835d0ac7936a987a040ec0d235","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"zh-CN","translated":"可恢复","updated_at":"2026-07-05T21:00:21.876Z"} {"cache_key":"ff53b13be5fc05507e7c7a3db5313c493249976916ac6124140c813a3568bb0e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"zh-CN","translated":"会话工作区","updated_at":"2026-06-16T14:13:02.064Z"} {"cache_key":"ff8fdf257b107c10b9795a7884d926b9ffe05afd7150c0e7efc2adf9514911e6","model":"gpt-5.5","provider":"openai","segment_id":"connection.reconnecting","source_path":"ui/src/i18n/locales/zh-CN.ts","src_lang":"en","text":"Reconnecting…","text_hash":"27b80374e1151af6df7824a358606c77502548bff4d467e4ae2e146801f601ce","tgt_lang":"zh-CN","translated":"正在重新连接…","updated_at":"2026-07-05T21:54:55.187Z"} diff --git a/ui/src/i18n/.i18n/zh-TW.meta.json b/ui/src/i18n/.i18n/zh-TW.meta.json index 473f6d974dba..326e85141aeb 100644 --- a/ui/src/i18n/.i18n/zh-TW.meta.json +++ b/ui/src/i18n/.i18n/zh-TW.meta.json @@ -1,11 +1,11 @@ { "fallbackKeys": [], - "generatedAt": "2026-07-10T08:37:25.603Z", + "generatedAt": "2026-07-10T09:46:45.814Z", "locale": "zh-TW", "model": "gpt-5.5", "provider": "openai", - "sourceHash": "f6a3e03d983c828decd96c8d86d239a1ce4cb9ffd26f7989145a7614ebce30c3", - "totalKeys": 1794, - "translatedKeys": 1794, + "sourceHash": "87e3b04af2d979d967352a34ae17e2ae239229cfbef9b9d4ac1bd21512abfdc6", + "totalKeys": 1904, + "translatedKeys": 1904, "workflow": 1 } diff --git a/ui/src/i18n/.i18n/zh-TW.tm.jsonl b/ui/src/i18n/.i18n/zh-TW.tm.jsonl index 089cf1fc2054..46ce8a7c746a 100644 --- a/ui/src/i18n/.i18n/zh-TW.tm.jsonl +++ b/ui/src/i18n/.i18n/zh-TW.tm.jsonl @@ -1,8 +1,11 @@ {"cache_key":"0058dd63eb3fb24da56f4bdc46818c272c7219177e42c8da79de612edbc78e2d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.expand","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Expand session workspace","text_hash":"ac1d210db40c5026879774849ad74a9e1247523192a795ac33965b3ee72691c2","tgt_lang":"zh-TW","translated":"展開工作階段工作區","updated_at":"2026-06-16T14:13:10.175Z"} {"cache_key":"012977636af17cc98fbb838f759468a7702dfb011da0f37e3a27fb6e1294a291","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.noMicrophones","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No additional microphones found","text_hash":"a6e4a20dda44dead8daa06da30fca7e7d90fa5aa4c15cbada30af1f52874d347","tgt_lang":"zh-TW","translated":"找不到其他麥克風","updated_at":"2026-07-06T17:33:33.517Z"} +{"cache_key":"0299d91627bf8e0e6941be61875c974db7ebd2b1c11008aec4d3123012299a69","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.needsAttention","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"zh-TW","translated":"需要注意","updated_at":"2026-07-10T02:22:56.441Z"} {"cache_key":"03bfdb648f4b090f353e419b4e66ec6939f140af7d3e0c560b2b5b00cb43879f","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openExternal","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Open in Default Browser","text_hash":"fc4fd2b1f38c03d1a8bffe8ad5baf4d19e414bc2f0b8c319b3990d513de2aa05","tgt_lang":"zh-TW","translated":"在預設瀏覽器中開啟","updated_at":"2026-07-09T11:02:38.494Z"} +{"cache_key":"04eaef777352aa74fcf389a28a7e60432158cada3d529e055ed0092338f74245","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.preparingSearch","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Preparing search…","text_hash":"d818c0a87f022169d886b8acfe2d926215fae51cfa19ffb632487cdd7928be04","tgt_lang":"zh-TW","translated":"正在準備搜尋…","updated_at":"2026-07-10T02:22:44.740Z"} {"cache_key":"04fc76d25faad9f51b570fb4f1f7306b7ff547836da07e12a23bfc61b65b2b33","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.root","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Root","text_hash":"44cb005ee2e65d9cc817b0a083579369fb6c24a4be728cb43fd9d4c3ca7f4c2e","tgt_lang":"zh-TW","translated":"根目錄","updated_at":"2026-06-16T14:13:16.738Z"} {"cache_key":"04fddb9a7a47d22563be18e53f515c705f50c0c584d97a7e6e0db25d4d4f62a3","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkVoice","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Voice","text_hash":"87bf2bc08589f0bd4a078db145c34ad5e14b8fda53c3ae65b78601294913df95","tgt_lang":"zh-TW","translated":"語音","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"053a031a7578ce7f449ce799adba464f54639451f03ad0342bf834c41846693a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.featuredGroup","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Featured","text_hash":"c533cafab69e4033784a7d3857a806e551a95fee2ce47207bdd9a5528a24fb25","tgt_lang":"zh-TW","translated":"精選","updated_at":"2026-07-10T02:22:44.740Z"} {"cache_key":"055a682eaf869d24f02cb651f6c57b56a60eec647fe40f6fb3ad55b458a8e39a","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.loading","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Loading tasks…","text_hash":"9ae9f7d835d95a2cf1362c130da3a0ebacae4331dbb431e60e1735477591bf7b","tgt_lang":"zh-TW","translated":"正在載入任務…","updated_at":"2026-07-06T08:41:46.878Z"} {"cache_key":"057eb52ab6cd4261f14738eb6947916a1d27c42a625d9b66b72272a052f539ab","model":"gpt-5","provider":"openai","segment_id":"codexSessions.partial","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Unavailable hosts: {count}. Other hosts remain available.","text_hash":"00ca17db32e78382e78e5877fd167f21e6baf40783b4cf581f34be5ffd1bd05b","tgt_lang":"zh-TW","translated":"有 {count} 台主機無法使用。其他主機仍可使用。","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"05a16f9e74b7496f49646fd9b8a2e8287360005ea3e4768c05e7bcd31ead135c","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortUpdated","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Last updated","text_hash":"382ac5f308f76c24b2c981e2041943bc2be2229cbd285ad362b9af1cfc386ef8","tgt_lang":"zh-TW","translated":"最近更新","updated_at":"2026-07-06T15:07:02.499Z"} @@ -12,6 +15,7 @@ {"cache_key":"08982382123994fc547aa072a6d9ffbc0baf90cb80de0cba19d2c31c94a02510","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changedCount","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} changed","text_hash":"db3cb1c116f0a410592fe8556a43513156ce84faa3b69de7e68635474b2f6a10","tgt_lang":"zh-TW","translated":"{count} 個已變更","updated_at":"2026-06-16T14:13:16.738Z"} {"cache_key":"08e26062f7097e844e8d44c4964971a01d7fdf55d45295212d273710a82ed49e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.label","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Session workspace","text_hash":"c0e8ea0cf983d14e8ba3f8fc28976954d637fd50f807c69e9695715fd2384b78","tgt_lang":"zh-TW","translated":"工作階段工作區","updated_at":"2026-06-16T14:13:10.175Z"} {"cache_key":"091964429097e86626cff67120c26ff47f3439984bf7070c6005f894b1ad08c2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDefaultAgent","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Default agent","text_hash":"94da52ecd6c5c3b77b89b8427f4bcaf11a40ddf68f5b00171977349fb2e6abc9","tgt_lang":"zh-TW","translated":"預設代理人","updated_at":"2026-06-17T14:13:17.815Z"} +{"cache_key":"091cf53c684393c3eb4db7e785516889b2609889e0dd8ee0fdb257bae83b6c3d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetInvalid","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Enter an http(s) URL or a command line.","text_hash":"e9a2c862f58c47bbaf4e5a4091d2ef12079c8c5696bd77a553f9baabf3e245ec","tgt_lang":"zh-TW","translated":"請輸入 http(s) URL 或命令列。","updated_at":"2026-07-10T02:22:53.065Z"} {"cache_key":"09b9668b0ae19b07f6ca2b28c36da14da221318f67d334b64426885eb55a00b1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthLabel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Workboard health","text_hash":"85416c4a6d64e35611bdd9747b82815936c38b41d820796ba1fbfbb7539d906b","tgt_lang":"zh-TW","translated":"工作看板健康狀態","updated_at":"2026-06-17T14:13:23.259Z"} {"cache_key":"0abc5d9d912c07cf416454f1717a4f78da1797cd0a5964b8ea859bf57d97ce7f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.workspace","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"zh-TW","translated":"工作階段","updated_at":"2026-06-16T14:13:10.175Z"} {"cache_key":"0ad3cde7972c8d6ce1cddc8f186aafa59d3fc531934d9a4f871a718a2a3b3431","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.refresh","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Refresh session workspace","text_hash":"c7a97b20a3a3ce348239c4893c99f1902d44877567cb32f752c30cdfbc9a2468","tgt_lang":"zh-TW","translated":"重新整理工作階段工作區","updated_at":"2026-06-16T14:13:10.175Z"} @@ -19,52 +23,74 @@ {"cache_key":"0b4a6c7b886f8be400f2169ed92b510f6cb6be82d62ea059203408606971bc9e","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.outputTokens","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} output","text_hash":"e433f6601aaa1a1cce63c5ca6b15fddd247bf53697d09171d25592f70f2e949a","tgt_lang":"zh-TW","translated":"{count} 個輸出權杖","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"0b9e56448e469f671c96b858dc73ae37897dc20ca920c90646a5f717635ea2c2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.parentFolder","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Parent folder","text_hash":"158f5a01ef8cfb1e6d91f8c321dd3a63f5e457f9650eecd662857701762bd31d","tgt_lang":"zh-TW","translated":"上層資料夾","updated_at":"2026-06-16T14:13:16.738Z"} {"cache_key":"0c7165ba1e11cf1aa849c065850b7abb33693c2b5394ca73e661e5ae63730b8d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupPrompt","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Rename group","text_hash":"98d254a311d0e820bb8739eb28d4e1eb5fc1cfc34f755167759864cd15504b4c","tgt_lang":"zh-TW","translated":"重新命名群組","updated_at":"2026-07-06T23:40:44.295Z"} +{"cache_key":"0c8b8b6ab641f2f37531b13b152f3c62e672b9fdfa9265daba73d8345b5b28b6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noDiscoverMatchTitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Nothing to discover matches","text_hash":"6becb932fc06a9b6bdfe92fb1964a1a20407fc4624d1687d8d53ee8e65c5320e","tgt_lang":"zh-TW","translated":"沒有符合探索條件的項目","updated_at":"2026-07-10T02:22:44.740Z"} +{"cache_key":"0cd839981837168b2270649970492fff5b0e4fd63a285d6e934965b7d877cdd6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpRemovedSuccess","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Removed MCP server {name}.","text_hash":"23bc526898fa87ba16c8e445e94473181ef240c4055d94b523bb6872a3c61feb","tgt_lang":"zh-TW","translated":"已移除 MCP 伺服器 {name}。","updated_at":"2026-07-10T02:22:53.065Z"} {"cache_key":"0d18df5d6830393c6ddbd56732339fa028e3941ef7ace89f10a8bfdda13b9fa2","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.contextWindow","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Context window","text_hash":"7696d0855331622dc12438057f5509348f9d6f0ec2eb3580e18a99d31eba86db","tgt_lang":"zh-TW","translated":"上下文視窗","updated_at":"2026-07-05T10:15:56.105Z"} -{"cache_key":"0d34b66c28505e20fe0f49f0d79ea8a158e39dcd62e4d02e687dddc121c9625f","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdex","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Lobsterdex","text_hash":"5e32f89430f682bf1a241c402ea32a317b1e869fc85cdcab7d897a813ab6e107","tgt_lang":"zh-TW","translated":"Lobsterdex","updated_at":"2026-07-09T23:55:44.406Z"} {"cache_key":"0e070148b7195ab0e9642937d106d4df172c9d654dcf217565f04eee4fdc5f74","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh15s","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"15s","text_hash":"21b5f52ded33ab19c16a680c4e280b8f9992395b514290163abf272f06394a6f","tgt_lang":"zh-TW","translated":"15秒","updated_at":"2026-06-17T14:13:23.259Z"} {"cache_key":"0f7e79303f419c97c2d8a8b626041b3cdaf9652d5cd91857c542dac3b3f88052","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.status.timedOut","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Timed out","text_hash":"9718cc761cfd5810041ef007ae258fa1308b8487d0f30c5f36a442f8fe5f76c5","tgt_lang":"zh-TW","translated":"逾時","updated_at":"2026-07-06T08:41:48.829Z"} {"cache_key":"0fa2bf07d92e95e768b7776a1c91b9131bd7f6626add77c31ac470388dec4591","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Model","text_hash":"5e2c614c23f02239bc03c6c04fcb681950f9e72bf8fdff6be79c79841cbb10c0","tgt_lang":"zh-TW","translated":"模型","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"10c67829b7fb19a49b2b2eeae8827d15e4e557961747c0a5204d2916524c8dac","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAddedSuccess","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Added MCP server {name}.","text_hash":"a15c3a1725ae35dfa9a4efc01cc2e51f6ae88aa7f7f380abc5c02944ab532412","tgt_lang":"zh-TW","translated":"已新增 MCP 伺服器 {name}。","updated_at":"2026-07-10T02:22:53.065Z"} {"cache_key":"1387e86e171dde748f1bf188b25d81b23ed8933cb63f841fa7f8ec34c4b02924","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerProtocol","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"worker {state}","text_hash":"f16b9e04d42182b421ce4f4e982b2ef75fab9bd581bdc8b87e62899ba28de11c","tgt_lang":"zh-TW","translated":"worker {state}","updated_at":"2026-05-30T15:38:05.607Z"} +{"cache_key":"1389eed743cd4600bcb6b24043410c197184d5a34b1bfefba1222c300fc78788","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledRestart","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Disabled {name}. A Gateway restart is required to apply the change.","text_hash":"1ee58e882a46a89d43cc9118873fede5aa815a1f80b407b3d6ebe79576a56e37","tgt_lang":"zh-TW","translated":"已停用 {name}。需要重新啟動 Gateway 才能套用變更。","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"13da946215e3385c3a9aeeb1f848d3aa42385229923c6a98ba9ece5fbb21bc4e","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.untitled","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Background task","text_hash":"dba3626059c35bd2e98b0d10db53d9832106dca8a364c3f6106f2788b4d032c6","tgt_lang":"zh-TW","translated":"背景任務","updated_at":"2026-07-06T08:41:46.878Z"} {"cache_key":"13e555a572384c20d960fddf442456cc734a59a4daa9739261a3ed50a46c028d","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.runtime.unknown","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Task","text_hash":"4bc74b21357c6cf5cca8f66b4d4ee948be64d0396feb434c9645e168ad61ceaf","tgt_lang":"zh-TW","translated":"任務","updated_at":"2026-07-06T08:41:48.829Z"} +{"cache_key":"13faac5fe7a56bcee1f486af3e6ace3d7efe3b5963b9a416f81c02ae6ef11d5c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.remove","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Remove","text_hash":"c3812fc4acb861d5182fc2b8155f327f736fbe5e5eb86a7bd7afcb6dc5497282","tgt_lang":"zh-TW","translated":"移除","updated_at":"2026-07-10T02:22:56.441Z"} +{"cache_key":"141f2b759b9bccc4055999074e8ce0d7d42d9b1463b5d220fca5c93feb72158a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupDev","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Coding & infrastructure","text_hash":"39247c184ac938c5a3cab97d039b0bd0cd332ca44a46d8ec547f7f8a611cb86a","tgt_lang":"zh-TW","translated":"程式開發與基礎架構","updated_at":"2026-07-10T05:21:53.040Z"} {"cache_key":"1454e5ea94bc2f88beca7253b08568494df2b89490ec2498b2220c7f1e2df2e2","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchLabel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Search Codex sessions","text_hash":"9faac855b3f6714185ac7a410a5e3b039e8217588d32bdcf4084f50c90d8acb7","tgt_lang":"zh-TW","translated":"搜尋 Codex 工作階段","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"147bf0036bab269e4e76958c888d7a598be90be9639d930333cf15e4416702a9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredTitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No cards match this view","text_hash":"a272617e183ba1dff3f7f140d0851b64baf95f4827ff729d23dfeb05c2069875","tgt_lang":"zh-TW","translated":"沒有符合此檢視的卡片","updated_at":"2026-06-17T14:13:23.259Z"} +{"cache_key":"15733a84a7740d43569d9e1a1565aabd071260ddabd2c811deb7b0914853c809","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.config","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Config","text_hash":"87e89abb4c1c551fe08d355d097f18b8de78edca5f556997085681662fce8eed","tgt_lang":"zh-TW","translated":"設定","updated_at":"2026-07-10T02:22:56.441Z"} {"cache_key":"15b777d3c74a6aaefa88ea632e0db636dc1ca26a4c40943a08132573a89f4f3c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthMissingProof","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"missing proof","text_hash":"748797f5ab1c31c8aeeaf7f76bce76064b175a1d1f530849ec683cacbe6555eb","tgt_lang":"zh-TW","translated":"缺少證明","updated_at":"2026-06-17T14:13:23.259Z"} {"cache_key":"162841717c67db6b6f654af343ea287c7790d6da4c1cde9fe5dda6a01dea900e","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.planUsage","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Plan usage","text_hash":"eb55e9232d2a7503c819491be60761e99458daf4947df9676c5cc86b653f59f4","tgt_lang":"zh-TW","translated":"方案用量","updated_at":"2026-07-09T11:48:50.643Z"} {"cache_key":"1642061a9f02b51059a1c355d8352ec0040c952e4cb590550bbe1e85c492929e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdmin","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Advanced settings require admin","text_hash":"021f44198c7c7935a112e55150d2daaebe388ac9e529460d64c2f8f3ba3b9d82","tgt_lang":"zh-TW","translated":"進階設定需要管理員權限","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"170d25e4057a0eec371732483fbbee38bba24086ed741c30af4a592931e07c69","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.verifiedSource","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Verified source","text_hash":"8013ffdad04c8d1ab57ee4c121ae097c13ff8dde902debdf8e10de0408f7f1d7","tgt_lang":"zh-TW","translated":"已驗證來源","updated_at":"2026-07-10T02:22:56.441Z"} {"cache_key":"1721597dddda5bdbcd49e85f8038348ca5f343e1ec730814a95aa85993633366","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReady","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Ready","text_hash":"5fa7aac5375c5815787fba3f49559f9b45b14023147ce0652803387974144e5f","tgt_lang":"zh-TW","translated":"就緒","updated_at":"2026-06-17T14:13:17.815Z"} {"cache_key":"174fffd0f63f0ec52a7aefef498c252fc72e9ab966d5cbf7d0848613a1881113","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.ageHours","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count}h","text_hash":"5828ef1c1e95e0bae1c98548d1795a2482cc8e14a8b161b183960a06018ce10d","tgt_lang":"zh-TW","translated":"{count}小時","updated_at":"2026-06-17T14:13:23.259Z"} {"cache_key":"183daaee34447df4b2d689e3c0d0af831237865a3191cf90432d38a3de2d3cad","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthBlocked","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"blocked","text_hash":"6973dddd3ef9cb6a2932702f31777faad9c9bf3124d147a84f31aadb6d139546","tgt_lang":"zh-TW","translated":"已封鎖","updated_at":"2026-06-17T14:13:23.259Z"} {"cache_key":"18f56c2053e1f56ae92d04066c2b3b8b16a93807717d09e06a2c45dbb6d28f49","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerLogs","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Worker logs","text_hash":"67766b9f222a7ccdae6beb7d6e7877d1a13abb8a346a8c5c803a4380bdf851b1","tgt_lang":"zh-TW","translated":"Worker 記錄","updated_at":"2026-06-16T14:12:59.400Z"} +{"cache_key":"1907056e4030660f3d6113fbd8e27e258ba1f58b583a10160a1af433f8df08bd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.fromClawHub","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"From ClawHub","text_hash":"7ab917666959f3e9cfd5cdf9d06636b7908a0ca5445889cb7812629f3b39d250","tgt_lang":"zh-TW","translated":"來自 ClawHub","updated_at":"2026-07-10T04:28:07.910Z"} {"cache_key":"1a43bd4f0a3e7bb82614b3c32b805be639b426446e181ff2c041a4d94b58bd45","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.unknownStatus","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"zh-TW","translated":"未知","updated_at":"2026-06-16T14:13:10.175Z"} +{"cache_key":"1a7446adf9cbbc3b3f5320532a3bb1ddd39f61e1e1d153468a209a2279358e90","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tryAgain","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Try again","text_hash":"d8b8392e2c542950ca64867168e4ef87d4ad606882d5898f826b51c6d553988f","tgt_lang":"zh-TW","translated":"再試一次","updated_at":"2026-07-10T02:22:44.740Z"} +{"cache_key":"1ac6757f2bca6db5d0f000bc89e918edc478cde3122fca82a4a619418d009318","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpSettingsLink","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"MCP settings","text_hash":"c63c58c0874ca18691a2bc5896e73af3488303de668dbbe1e23d0b0e41ecee35","tgt_lang":"zh-TW","translated":"MCP 設定","updated_at":"2026-07-10T02:22:53.065Z"} {"cache_key":"1b57f63393eb9e3fcc52fb45e85f7f229a6c7e124cf2e639eae6eb94acb58b58","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthFailedAttempts","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"failed attempts","text_hash":"fd9023af0795825a458100ddbe894a7a8f603324a2b7ad2305d4c9d2334cbd26","tgt_lang":"zh-TW","translated":"失敗嘗試","updated_at":"2026-06-17T14:13:23.259Z"} {"cache_key":"1b7a2b6353ef2e7e9d646efd7a0bb1a5e1619a94eb5c7990b624a2a121431dcf","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByKind","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Kind","text_hash":"f5387f9bb6ed70315a77fdcb9335facc27a9bf241f35955bd2755c55e0c016c7","tgt_lang":"zh-TW","translated":"類型","updated_at":"2026-07-05T14:39:31.777Z"} {"cache_key":"1cac0e3004f15600654fec058e21b2ebeaa24849e7b741e0a6ba2c6564e71ac8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameGroupMenu","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Rename group…","text_hash":"fe4e8d175e15f0a28c7c39b8bf3ea98b704e793c7efbc5231eb4a7448d0e675b","tgt_lang":"zh-TW","translated":"重新命名群組…","updated_at":"2026-07-06T23:40:44.295Z"} {"cache_key":"1eedf3a9f4a8a161a15d4187d1962531aeb80fe63e7627c31fc9038bb34e7944","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeWorkerLogs","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} worker logs","text_hash":"2923e2a84e6ed0ca048d280206198b156da6148859e474498d335a44e323e0a8","tgt_lang":"zh-TW","translated":"{count} 則工作者記錄","updated_at":"2026-05-30T15:38:05.607Z"} +{"cache_key":"20227e43de7942324c31186bf6b1a2601ed7b931869255eb4eb055814328c800","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabled","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Disabled","text_hash":"75081b593d15cf6e631971bc6768723f593b88b172477e40ae7d363e4829816d","tgt_lang":"zh-TW","translated":"已停用","updated_at":"2026-07-10T02:22:56.441Z"} {"cache_key":"222d58f2bcd3645b5b6a572fead6894c2c46eb5a5dc19279bb6159051d6664be","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.cleanNow","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Clean up now","text_hash":"da367b57478fe6da969f5ff3a78717074d7fca77a312ac2c8f77dc2f56032578","tgt_lang":"zh-TW","translated":"立即清理","updated_at":"2026-07-05T21:00:31.397Z"} {"cache_key":"226202e350321139a12733da5f68f08b60c0da340369b9cc36cdc177764d983d","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneFallback","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Microphone {number}","text_hash":"357eae20db9739dfdbb59ec21db70200f6ca9ee257c28ed637712f147af419ec","tgt_lang":"zh-TW","translated":"麥克風 {number}","updated_at":"2026-07-06T17:56:07.837Z"} {"cache_key":"22a508372058bca1f104bb6f765599709737e3c6812b941c52e9d22a7dbc4902","model":"gpt-5","provider":"openai","segment_id":"codexSessions.eyebrow","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Codex fleet","text_hash":"64e0510e4f9e07ad1283b7c1d55e67b5b853081b6ca4013fc8d710aa658d5127","tgt_lang":"zh-TW","translated":"Codex 裝置群","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"239830e854cd40a1a174c34d37efde05b8b2c8a469068a0771ea117cf4642af6","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventAttachmentAdded","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Attachment added","text_hash":"f39a309fb0054d8e6c512733d6f3a4791c6b63157a388d72f635574d98b49b3e","tgt_lang":"zh-TW","translated":"已新增附件","updated_at":"2026-05-30T15:38:05.607Z"} {"cache_key":"245cfff3be1aeb0f46e10b44e468ed0fa52223c0e8148946aeb86dfa04c787f7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkMoreInSettings","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"More in Settings","text_hash":"87f1e602d68bdc42ae3fddc0c1541d323adc718b7b9b3f889b2ca71823e319b9","tgt_lang":"zh-TW","translated":"設定中的更多選項","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"246bfe07ee9295208d03e36bf4aba3e40a6d21d2ac69af28ccfcdb3420b4a6b3","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.agent","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Agent: {agent}","text_hash":"b0a224d2a72b2aa43d4e0a1ffa0523c8c5da621a16408810fcb0385da86054a4","tgt_lang":"zh-TW","translated":"代理:{agent}","updated_at":"2026-07-06T08:41:46.878Z"} -{"cache_key":"24df645d4c79511608a0f351c94278c46b7279c8a688cf8d35ffd2da80293d34","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOn","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Tiny blubs when touched","text_hash":"35af4a22855e8564a6e31d589281759ff7f7d8b01e84b8d732d5466575b808db","tgt_lang":"zh-TW","translated":"觸碰時發出小小的咕嚕聲","updated_at":"2026-07-10T04:49:49.836Z"} +{"cache_key":"2503d94bbf7c6fc1179ed6baf7ff9cb27db098634218aefd19e908871066b0f1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpHint","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.","text_hash":"8cdbff56f3f144f1460730fd5cad67d37272aa0c690873ffb6a04df0de2933a0","tgt_lang":"zh-TW","translated":"連接 Model Context Protocol 伺服器,為你的代理程式提供額外工具。變更會套用到新的代理程式工作階段。","updated_at":"2026-07-10T02:22:53.065Z"} {"cache_key":"2504969e4eb6cc98f5c146c527a7199d26a3d9b5e4f82b8c93fed5e282ab7476","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsage","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{percent}% of context used ({used} / {context} tokens)","text_hash":"f626ed78b8aca81f039ef64637bbdd4cffe0a289b402fd0c6039e977040aba72","tgt_lang":"zh-TW","translated":"已使用 {percent}% 的上下文({used} / {context} 個 token)","updated_at":"2026-07-09T07:06:12.435Z"} +{"cache_key":"25b52b4cef26e52eb03cc7ed829dbd556fecc92a4b67bd29d9fa6a05c2c19154","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.unavailable","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"zh-TW","translated":"無法使用","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"25bde9fe163ddbd5548981286060465182d19fc714178dd8926d9a94ebbc0186","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.systemError","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"System error","text_hash":"b9564eaf21a9356d06f7f3c67a5b9cb7e6538687c33bebbf1e1b64715018f310","tgt_lang":"zh-TW","translated":"系統錯誤","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"267cd9e2120e64ee28fc527714522de3b91c2a4f729ccd7c267e3c63dcd7c9a4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.path","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Workspace path","text_hash":"1fddb73e40f0f5cc6fbf747930a11f857b7a37991caeb4d8677433bbc50a2a38","tgt_lang":"zh-TW","translated":"工作區路徑","updated_at":"2026-06-16T14:13:16.738Z"} {"cache_key":"26b24ef4a9d46efa15c790026e63b376dab6ad86cd0a5dc2f089ec35a893195e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.restoreSession","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Restore session","text_hash":"35e4dc9befd3b3a29b50938839af0efb41b08051988dde53e1c1e73d1c2a039f","tgt_lang":"zh-TW","translated":"還原工作階段","updated_at":"2026-07-02T14:29:59.020Z"} +{"cache_key":"27bb3f82203b073b280442dc86ece8a474d1b8e3a31afbb758b230004a3c2655","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupWork","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Work & productivity","text_hash":"fb7630f5dba5774a83602aba681a0be6bc1a9ea85dfda92c63716cdadb023a69","tgt_lang":"zh-TW","translated":"工作與生產力","updated_at":"2026-07-10T05:21:53.040Z"} {"cache_key":"281ebd5735d09792156416816e295aabf6ad64a80038a9f5d16c1aef9bd1c8bc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthRunning","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"running","text_hash":"c071cf5f5ed6f884cc70155b6f05f755fd46a302d05e4261b7e92ce878bbfed8","tgt_lang":"zh-TW","translated":"執行中","updated_at":"2026-06-17T14:13:23.259Z"} {"cache_key":"28a992a7c181ad351097f4f53ecff5e5705fb89ed61a2c422fc2e4c88b5844a8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.session","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Session","text_hash":"6959b4159575d8dd76d9f3bbe2c6437904f861e7860c35abd18deffb1c3425a0","tgt_lang":"zh-TW","translated":"工作階段","updated_at":"2026-06-16T14:13:16.738Z"} +{"cache_key":"29647455aab4851e2a63f1153fc6bf83119099a64ba6beacce5b65a4aef32185","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPluginId","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Plugin ID","text_hash":"32a723fa23c16a93157b972c5fad5668e2a9e91a94719b2a00a1b41ead75bf94","tgt_lang":"zh-TW","translated":"Plugin ID","updated_at":"2026-07-10T04:28:07.910Z"} {"cache_key":"2aa479ea5662ceaf049d7b0e1f5bcaa30d0a1afaa1ebd401c19e6dbb769f4feb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSessionPrompt","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"zh-TW","translated":"重新命名工作階段","updated_at":"2026-07-02T14:29:59.020Z"} {"cache_key":"2abfc76b0a5dd5d18efab28d8f168ee646bffbd4538dba8b772978ef3474b730","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.offline","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Offline","text_hash":"a1794783aab72d205dc532b1170d1be63ebdce8816b57c21acb451c15dab969a","tgt_lang":"zh-TW","translated":"離線","updated_at":"2026-07-09T10:01:43.713Z"} +{"cache_key":"2ad1697a2acfc6754372a4ec089e23ac397ebe42a137ce7c5dbc50ce4548cecb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statMcpServers","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"zh-TW","translated":"MCP 伺服器","updated_at":"2026-07-10T02:22:53.065Z"} +{"cache_key":"2b2f2753fdd4b351a713dac906ad01e04468c020c9c890b497941b490d078a46","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpMissing","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"MCP server “{name}” was not found in the configuration.","text_hash":"0fcf0028371340306f34d196f8069514ce59ebc4da45c4fe9bf64811420cde62","tgt_lang":"zh-TW","translated":"在設定中找不到 MCP 伺服器「{name}」。","updated_at":"2026-07-10T02:22:53.065Z"} {"cache_key":"2b4270d6ba9f28986c52dcc245aa5e65c336f25d206447290983fcc04e0d7db7","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroupPrompt","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"New group name","text_hash":"cee9e709525c90b1a97dff72c62082602b199b54036ed573926d1b11c6d54ec7","tgt_lang":"zh-TW","translated":"新增群組名稱","updated_at":"2026-07-05T14:39:31.777Z"} {"cache_key":"2baca11243f583e35c3403aeee04a9a88023ceeb9be8e8a27b376d5dbf3cf73e","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitHours","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{hours}-hour limit","text_hash":"c9091350c3c5c4e3c54dae43eec58cd35555724276a0acc388b98239a573f9df","tgt_lang":"zh-TW","translated":"{hours} 小時限制","updated_at":"2026-07-09T11:48:50.643Z"} {"cache_key":"2dcadb6a56d4dae637c2be124e0077eaa96831f70abeafe9eeb50d47de750d67","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutCompact","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Compact card density","text_hash":"2f532993d5a6ccda4d758c7ecdda8bebaa857218045a3d4a011fec73d9728785","tgt_lang":"zh-TW","translated":"精簡卡片密度","updated_at":"2026-06-17T14:13:17.815Z"} +{"cache_key":"2e2d35db83b5e92609ebac2aa01e442074d0b36bcd3ae3b1540748c55f96e50e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubTab","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"ClawHub","text_hash":"a2019fe71279ebb59b7876298299699524a6eb7885a04484409a1b556c8548f3","tgt_lang":"zh-TW","translated":"ClawHub","updated_at":"2026-07-10T02:22:44.740Z"} {"cache_key":"2e3c5d81d525ededb9f9fb2b74cd666a54ea490456bb465e19a4ca06dbf823d2","model":"gpt-5.5","provider":"openai","segment_id":"workboard.badgeAttachments","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} attachments","text_hash":"7bb1847693bc91e6e4624d996a96840396a71052786ab143ccb47fbdaa77cf41","tgt_lang":"zh-TW","translated":"{count} 個附件","updated_at":"2026-05-30T15:38:05.607Z"} +{"cache_key":"2f80e6cb613d464041d9e3edf4ecd4da4128debcd9ae23cfddb3177d0fa1d11a","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommitFailed","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Could not copy commit hash","text_hash":"d1d49bada22aed67f07f232a7bb2092380570f990335bec15e2f8ad027200d2b","tgt_lang":"zh-TW","translated":"無法複製 commit 雜湊","updated_at":"2026-07-10T09:46:45.811Z"} {"cache_key":"2f98ec5fd8dc15ac7d5d7c2bae44629cebb69aab03283689f9f227dfcf48c5c6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.host.sessionCount","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"zh-TW","translated":"已顯示 {count} 個","updated_at":"2026-06-16T14:13:16.738Z"} {"cache_key":"2ff7826aeeb2445b9410639a3d15efee7077877e037fa6b3c5bdaeb089219ff8","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.emptyActive","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No queued or running tasks.","text_hash":"00db4a453c2e92f4d807847fc0d8d340708ed9ab547280ce376ba1d610bcb5a6","tgt_lang":"zh-TW","translated":"沒有排入佇列或正在執行的任務。","updated_at":"2026-07-06T08:41:46.878Z"} {"cache_key":"3079b1a8bf5ee737871de1a3c7683989f4459c96fa92db422a76603e2a92d748","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.changed","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Changed","text_hash":"2a6141e43be0c2125e3b5d9f74b4ff1261a0b320ff927c83d4d9b1b65585bad7","tgt_lang":"zh-TW","translated":"已變更","updated_at":"2026-06-16T14:13:16.738Z"} +{"cache_key":"3089e778c5a4c8b54f057eef18b3fed1dda05620b1db4f7a0c6b9914c7bc2ef9","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactTitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Control UI","text_hash":"73fc16837b0a6b13c23d4100f65a5e58460aac38cd66f884c5884b74a553f93a","tgt_lang":"zh-TW","translated":"Control UI","updated_at":"2026-07-10T09:46:45.811Z"} {"cache_key":"30a2bcf0485a73ede97f894f87ba3fb9852fc44f692a63c20dffb0ca7b0e5202","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.emptyFilteredHint","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Change the view, search, priority, agent, or archive filter.","text_hash":"049dfae940263ace9707334af06b298c1223c38a449b1cec5a712553badebbd0","tgt_lang":"zh-TW","translated":"變更檢視、搜尋、優先順序、代理或封存篩選條件。","updated_at":"2026-06-17T14:13:23.259Z"} +{"cache_key":"31980eb5fa580a3dca9300f3b74b7afaa49691ed0e8b40277fe28f2b9d409ec8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsTitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No plugins found","text_hash":"87f17f9ec1f356c2876b1576c818b46b3c6379eff4fe94fa51b7f52b24032f55","tgt_lang":"zh-TW","translated":"找不到外掛程式","updated_at":"2026-07-10T02:22:44.740Z"} {"cache_key":"3317ea01e0a7a85d8ea26f24afad6bb3230f139b5d175db0a61afd5d57fbe819","model":"gpt-5","provider":"openai","segment_id":"codexSessions.searchPlaceholder","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Search session titles","text_hash":"9a6bdede84234fa08d6294e1636a34d26cbdd8eca425248f8d3c6cf8844a0cf9","tgt_lang":"zh-TW","translated":"搜尋工作階段標題","updated_at":"2026-07-09T10:01:43.713Z"} +{"cache_key":"334fc52029e956a3481f19108eae96b0e5a5d6f4e3a38045fd077433883cc8d3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statEnabled","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"zh-TW","translated":"已啟用","updated_at":"2026-07-10T02:22:48.423Z"} +{"cache_key":"34428058e7daf7d85b0b99aea3eb52f5c8edd20cb435c3c2024859e95c956224","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.optionalCapability","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Optional OpenClaw capability.","text_hash":"6721f4c64905a3c8e0fa1702ef341d5fa0fb04d624fafd4c06d83ad03d3e0af2","tgt_lang":"zh-TW","translated":"選用的 OpenClaw 功能。","updated_at":"2026-07-10T02:22:56.441Z"} {"cache_key":"354885e514d3d7e78e589fb33ff5e6aea796e7ccf065b94443f22a804f43f799","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencyStatusMissing","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"zh-TW","translated":"缺少","updated_at":"2026-06-16T14:13:10.175Z"} {"cache_key":"356ddab7e2e3a943b24d4cb0b4f2ffb41517cdf32e1c53b18bbb6fc984dbe71c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.commentaryLabel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Commentary","text_hash":"4a7a75ab79cde05b0b1baa8f7a704c991586ea44d7e7793e57178ef56f778ff8","tgt_lang":"zh-TW","translated":"評註","updated_at":"2026-07-01T01:06:02.438Z"} {"cache_key":"37db510b10e60bebd333f2087cbcf645bb39dc0edaa1d4c8b14d4151ade20ebb","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.summary","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Session workspace summary","text_hash":"1ed422c34dc1802d4c7366164ae810c496e206fe82e8e6565cefc38230b56bb4","tgt_lang":"zh-TW","translated":"工作階段工作區摘要","updated_at":"2026-06-16T14:13:16.738Z"} @@ -72,119 +98,174 @@ {"cache_key":"3895e70568e93923af79ea30a018187ad1e81c5d46af82198cf045b94285d70b","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateThisWeek","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"This week","text_hash":"8c4eef5ab2532515ef24a662db70f6e5b8063c7f924342b2a463f763f1091634","tgt_lang":"zh-TW","translated":"本週","updated_at":"2026-07-05T14:39:31.777Z"} {"cache_key":"3955af8b5f09f3b927d9a7b4778cf907df5a66ca2f9781922dd6b9695f772d58","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortCreated","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Created","text_hash":"d70b9e24bca26b409b9458ceca6c9e5c2b5c3171c37ff050c6f6a0d7a4420d2a","tgt_lang":"zh-TW","translated":"建立時間","updated_at":"2026-07-06T15:07:02.499Z"} {"cache_key":"39bb76742f8d0a5f7646ad59caaec4ce1d3c1786c38fa5bb1e47f086f77de188","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.copyPath","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Copy path","text_hash":"720ff4160412b943370afdb8fc1c082ff057d54713d5fb4b4b7a9634bfabf5fe","tgt_lang":"zh-TW","translated":"複製路徑","updated_at":"2026-06-16T14:13:18.599Z"} +{"cache_key":"39c13f6fc9a060e235d539b6bd34a0564b65cf5cd14dd6ee419a15dd187169d6","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installNamed","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Install {name}","text_hash":"15d27e180bc64b4b3219b11337fa5e748c69724a16fc7b9918b5994ddaad2e9f","tgt_lang":"zh-TW","translated":"安裝 {name}","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"3a12fb18b9756570ff22152940da62a3f15e237246a783b872d5255be34a6f85","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.openSession","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Open session","text_hash":"b205bb47f81a30968789eac28cefb848c4b849245d4d12f9311557c5f56ce770","tgt_lang":"zh-TW","translated":"開啟工作階段","updated_at":"2026-07-06T08:41:46.878Z"} +{"cache_key":"3b2486676f6d4690c93281397e8d3493bcfd1f93a8c31b4d2fad4e74cefd0d83","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removing","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Removing…","text_hash":"d4b09919ec929f15c19802296a06e97a0d0862e29e23c453d638fc0c3b87c641","tgt_lang":"zh-TW","translated":"正在移除…","updated_at":"2026-07-10T02:22:56.441Z"} {"cache_key":"3bd00b55cdb2ad5aad20be9a9398d7294767493f0b82a641d6f0c865a9f4d6d5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPreset","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Workboard view","text_hash":"cc2b05179ad742029156bb45578e880c46599fd28e1c2ab66f5a6f9e7f8fa08e","tgt_lang":"zh-TW","translated":"工作看板檢視","updated_at":"2026-06-17T14:13:17.815Z"} {"cache_key":"3c8876ee1b28223bbfa9d8f00b634a4d6d40bf0157a1d1af84df67d225a437e9","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.label","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Link actions","text_hash":"bffef58c5284b351b41a353b723845cca19cf29bf817f7b74c2e77e74d282a20","tgt_lang":"zh-TW","translated":"連結動作","updated_at":"2026-07-09T11:02:38.494Z"} {"cache_key":"3d15ac3f052fbff7d1c77ce6984f27550f2d6f9930e8309562031cd638b60d3f","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneNoneFound","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No microphone inputs were found.","text_hash":"3aa0952aa2a5987227a12656a28131c7e153b5efe3fca4043c742fb289eeb37c","tgt_lang":"zh-TW","translated":"找不到麥克風輸入。","updated_at":"2026-07-06T17:56:07.837Z"} {"cache_key":"3d7411fc0b32025b16c7ee937d9e11495fabf99314b355c35410f7380b7b09db","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summaryLabel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Codex session summary","text_hash":"667dedf7bd0ebc80d4e312cc52f824e6a5307c1c6210f2e72e5b93da824da502","tgt_lang":"zh-TW","translated":"Codex 工作階段摘要","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"3da9d91aff622941e54302adeab34cbd23a245a81ece197573272b19b58e161c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkModelAuto","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Auto","text_hash":"0286249762f7c94349cdc0ba3bb2255baf9a80036e2193ead1d77696f888582f","tgt_lang":"zh-TW","translated":"自動","updated_at":"2026-07-06T20:20:02.809Z"} +{"cache_key":"3dbc249dff8be5d5f920410cab44fae5d5d02d21a36ceae6d0cc31f0befe9679","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableAction","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Enable","text_hash":"5342e09f2729fbc6514528e727aeb9857afb31719d43568e6b18661ace7d1014","tgt_lang":"zh-TW","translated":"啟用","updated_at":"2026-07-10T04:28:07.910Z"} {"cache_key":"3dbdf3ec391fa277c0209262adb51d0c0d5b282cca134422024a21254df4057a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthReadyUnassigned","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"ready unassigned","text_hash":"1e1a31a02e9da6ffa99a459bfd82e5af723794c2175405a5a0d6a32afa955167","tgt_lang":"zh-TW","translated":"就緒但未指派","updated_at":"2026-06-17T14:13:23.259Z"} {"cache_key":"3dfa037815bf1cf15df3d3d9a38b42abf1ed2ba01aa7e452daf9474d18c2c70f","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.node","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Node","text_hash":"e93372533f323b2f12783aa3a586135cf421486439c2cdcde47411b78f9839ec","tgt_lang":"zh-TW","translated":"節點","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"3e02e5ec54de769bcd1a3093a75945bce7ea115003fe627e4668596b1da69119","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.group","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Group","text_hash":"34ca0e76608842ff3e7d924a455a396a82f471052c15e3f2ed7f090ac702e5c1","tgt_lang":"zh-TW","translated":"群組","updated_at":"2026-07-05T14:39:31.777Z"} {"cache_key":"3f4850349aff134da5f206e9a56ea7e6fd62f12c94fa3994aeb4759c9b7aa724","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByDate","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Date","text_hash":"99c40ab405926cb5ad1def9cff4d7ce624f8f8abfff4e85f655347fcb949d08e","tgt_lang":"zh-TW","translated":"日期","updated_at":"2026-07-05T14:39:31.777Z"} {"cache_key":"3f4fc4d3418459d4b585239906316c50ac2b99bb51fa472c58130efd66e1ba1b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.title","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Pairing QR expired","text_hash":"74e09eafc1d35cad5b62b7a9c321a4d090bb8fefdfa8b33913d6194186eadda6","tgt_lang":"zh-TW","translated":"配對 QR 碼已過期","updated_at":"2026-07-01T10:30:56.042Z"} +{"cache_key":"42289060c1500c1fe18f77d0e004d2840309d5942952903f4f9a5d13658d0077","model":"gpt-5.5","provider":"openai","segment_id":"overview.palette.items.plugins","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"zh-TW","translated":"外掛程式","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"42919eb7d9fd110eb3995722e37426344d0d97d5b4201fc058d9f21702bf4d1f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupMenu","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Group options for {group}","text_hash":"29456bfd0f10cfa1b3b0c005e2202221ff66aafe6b72ee05f7cfc93ce9e79af7","tgt_lang":"zh-TW","translated":"{group} 的群組選項","updated_at":"2026-07-06T23:40:44.295Z"} +{"cache_key":"4300e80798cac5847ae0cb45a6c0c50de166e1abc706077e6545fecc6966fb5c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.defaultRiskWarning","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Review the ClawHub warning before installing this plugin.","text_hash":"3249be096066bd02f155b0f5674fd19abd8e4cbe991d760ee2a9a51ea84012bf","tgt_lang":"zh-TW","translated":"安裝此外掛程式前,請檢閱 ClawHub 警告。","updated_at":"2026-07-10T02:23:00.400Z"} +{"cache_key":"4414b892c53922d2c514fda36284ad512a1367b8397038e75c48a049bbf32013","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.menuLabel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{name} actions","text_hash":"9771138834e3305c7752db5dd51a6f77ec74321d59611ef6020b9da52e97d9cf","tgt_lang":"zh-TW","translated":"{name} 動作","updated_at":"2026-07-10T04:28:07.910Z"} {"cache_key":"44a826dc5184c9c30092cd50f9857a77d10f993559a130d2fd99e4ec8ef2248a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.disconnected","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Reconnect to the gateway to refresh Codex sessions.","text_hash":"e5f80a33fab5ee6ffa4d7e3c58e7deb8e078e04b7a12cb9a007913904cbdb0c5","tgt_lang":"zh-TW","translated":"請重新連線至 Gateway 以重新整理 Codex 工作階段。","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"457ef8af76fc9b210e745440d80148c7ba46f326f37f81b440cef15f2db81c37","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.cwd","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"CWD","text_hash":"0217f1cb7725737f15a6710df3bcfa3bc10a239f0f7801ec3d7168e675f5ebd6","tgt_lang":"zh-TW","translated":"CWD","updated_at":"2026-06-16T14:13:18.599Z"} {"cache_key":"45c7ec6a17cce28a9b280820dad552927692fafe4a16ed31d95430f6793fc874","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.scope.active","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"zh-TW","translated":"進行中","updated_at":"2026-07-06T08:41:46.878Z"} {"cache_key":"464d33ba61fc45f824c7f2a4212b0ae38e59c052bc731411715dbb2f85ce5d5d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailRun","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Run","text_hash":"00d60e31a4e6b8344d4201f25a6a7dee770713107f6d097abb01559d32b17f26","tgt_lang":"zh-TW","translated":"執行","updated_at":"2026-06-16T14:12:59.400Z"} -{"cache_key":"46d78f98f38dfa90fb58dd757747ee97cd4de0c307ca7d16f95a161b190d82da","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.showFiles","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Show session files","text_hash":"88e60963b00018033f164b496f29e784fddfdb400cd19baf3311e04645bab27a","tgt_lang":"zh-TW","translated":"顯示工作階段檔案","updated_at":"2026-07-10T06:07:42.888Z"} {"cache_key":"479059a5686c186486318f6dfb2729ee0dc6fcf0daab08deb4ebeebd3b3978a9","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventOrchestration","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Orchestration","text_hash":"ed4fdd1721677737cffb2862fe34d5b63901c7cc76b8c67c51e92a467b31a5e7","tgt_lang":"zh-TW","translated":"協調流程","updated_at":"2026-05-30T15:38:05.607Z"} +{"cache_key":"481a5559bee9496d768368a5613d13df0f2ba1b4ec0c048fb555f017f7144f35","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterLabel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Filter installed plugins","text_hash":"f349ae2a9963d44d8f99a2995afcfb8704c119ad97c6c409ce7dcf6ac080cb9f","tgt_lang":"zh-TW","translated":"篩選已安裝的外掛","updated_at":"2026-07-10T02:22:48.423Z"} +{"cache_key":"486d76f124823067a4829b6646012d99d310bb0b1eb2c79089da8075a3f81218","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledTitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No optional plugins installed","text_hash":"a81a3fa635d8fd42dda404f4f4dce9231230acfbb87684baab44217ad642a954","tgt_lang":"zh-TW","translated":"未安裝選用外掛","updated_at":"2026-07-10T02:22:48.423Z"} {"cache_key":"48c94ac481b71d7f7ab5c7e8ba53e8df09c3288f4f56b1f0a4b3c954744bff26","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.collapse","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Collapse session workspace","text_hash":"b6174b882c37a98e640339d728652a0c1fa70d28ed53d8ccfb6e99363e86973b","tgt_lang":"zh-TW","translated":"收合工作階段工作區","updated_at":"2026-06-16T14:13:10.175Z"} +{"cache_key":"4997a7a100009454c6ff3e4aca78e33ae25806faf22f5ce4a7a161dd374b7361","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersionHint","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Reported by the active Gateway connection; separate from this Control UI build.","text_hash":"ac7fe39ca027b334b6d369546268f9cf6aeecefd175afe477bdbfcb4c9a4a700","tgt_lang":"zh-TW","translated":"由作用中的 Gateway 連線回報;與此 Control UI 建置分開。","updated_at":"2026-07-10T09:46:45.811Z"} +{"cache_key":"49ae206f317b7666bbebf41cb146966991d03358cecf57495088facef3da36f2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.workspace","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"zh-TW","translated":"工作區","updated_at":"2026-06-16T14:13:10.175Z"} {"cache_key":"49b5d403dd22e439d71ed69a55eb94373eebb7bd5fb7f35b7891f173fb8d5a5f","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.allSessions","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"All sessions","text_hash":"78648d4d66499d8dc19049a4e3bad87b404f99ea7a7f125ced52546e2d92bb79","tgt_lang":"zh-TW","translated":"所有工作階段","updated_at":"2026-07-03T07:35:59.617Z"} {"cache_key":"49bc916fec1700afc3a5efd7ccfa24e5fd32512891cf6e271d9516c04985af21","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkDefault","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Default","text_hash":"21b111cbfe6e8fca2d181c43f53ad548b22e38aca955b9824706a504b0a07a2d","tgt_lang":"zh-TW","translated":"預設","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"4a3c6e26ffc92c60bb0a1317b6eecb038b394e58196f86b990aaf57a3e9170ab","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.cacheTokens","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} cache","text_hash":"9d5f9230d1dea8b0d5b0f0705199920c0be54b3087c4f9d7fb4014284623eb49","tgt_lang":"zh-TW","translated":"{count} 個快取權杖","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"4abbdb553062d3d4824b1a0a1524fa02b0dc9c611e66b9390e8e6c3a260a72be","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlocked","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} blocked","text_hash":"fb39869b0fb3b8933126014e5c3739d7d67a620b8369781ca27e7395c595bde8","tgt_lang":"zh-TW","translated":"{count} 個受阻","updated_at":"2026-06-16T14:13:10.175Z"} +{"cache_key":"4b0e9a2f863f221cf621a7238e7cc609e96ae8a882ea2e149d3bd57beff72619","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorSearch","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Find on ClawHub","text_hash":"3597cbc37666845fa1325acf7ca7e07f7e81087da9289e95f97499073d074b26","tgt_lang":"zh-TW","translated":"在 ClawHub 上尋找","updated_at":"2026-07-10T02:22:48.423Z"} +{"cache_key":"4c3d25a28f0e9e47049837a5fc4109064b0caaae31f005bd013cb13594e911a3","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.bundlePlugin","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Bundle plugin","text_hash":"97ad3ec201bece7f63277c61b7fe08378f7ebe983066787e127b9e720a9cbf4b","tgt_lang":"zh-TW","translated":"打包外掛程式","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"4e1b2773f104a5a4ad192afef4f37a74a8d766a831d7a99e81593d4cfa899408","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewMissingProof","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Missing proof","text_hash":"b46debe888e32eec183dc5936c79d22ea43bec580c410c2b3c1aa24aaa75d677","tgt_lang":"zh-TW","translated":"缺少證明","updated_at":"2026-06-17T14:13:17.815Z"} {"cache_key":"4f177fdbb26337eb2db30ba994ac05b55cfb472f4d830559b3394c11610eb957","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.truncated","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Showing the first matching files. Refine the search to narrow results.","text_hash":"62005877ff0fc1f73ce05ca4c459157c57a8c57a3443245b1df4d3b033df98e9","tgt_lang":"zh-TW","translated":"顯示前幾個符合的檔案。請調整搜尋以縮小結果範圍。","updated_at":"2026-06-16T14:13:16.738Z"} {"cache_key":"501b2bbc7235d896c0dd9c2651034305d435fb6175276866a44f7aeb49e481e8","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinned","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Pinned","text_hash":"f20c879465551f0d1457a13d4390d0f1ece456b115d75463169c5d55341b9b1e","tgt_lang":"zh-TW","translated":"已釘選","updated_at":"2026-07-02T14:29:59.019Z"} {"cache_key":"50be400be8862d08c57270cb9620dbeea1600e27bcbce68e28fa210e8fdbbc38","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh60s","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"60s","text_hash":"f79f071ab5b033ca8fb42c077f39708930d194b18f4608eb26ac1d9665a8836f","tgt_lang":"zh-TW","translated":"60秒","updated_at":"2026-06-17T14:13:23.259Z"} {"cache_key":"511f8bfd51554d8e1821976f9888eec24f0529d3aa2f83851ff750d6845b0ce1","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.emptyRecent","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No recent completed tasks.","text_hash":"71aceaf6accb5308950898b4d2fd7d938fd190cc7cf6314f000466577ed8de24","tgt_lang":"zh-TW","translated":"沒有最近完成的任務。","updated_at":"2026-07-06T08:41:46.878Z"} {"cache_key":"513170b3b7c5805fd2dc37e5a11c97f25b12dadae83b99119ee6d9254a2a98b0","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.subtitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Isolated repository checkouts owned by OpenClaw.","text_hash":"6a3984ca864c9188fa8c05e732f6831b501b4caed6bd61b60e48e9b0cf74bd0c","tgt_lang":"zh-TW","translated":"由 OpenClaw 擁有的隔離儲存庫簽出。","updated_at":"2026-07-05T21:00:31.397Z"} +{"cache_key":"514553a8421fce5ed77a49addf47871cb22f3a451ed882f54640adceec63955a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.loading","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Loading plugins…","text_hash":"5e31c8558019f12d10c234b86f339f9481ce5e81ad4a35a3fde0bebb3fbc251a","tgt_lang":"zh-TW","translated":"正在載入外掛程式…","updated_at":"2026-07-10T02:22:44.740Z"} +{"cache_key":"51e47e984e9db8fca7d0fe91ef27d5451611fedde479e1d94604631b8f7d9067","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpConfigUnavailable","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Configuration is unavailable; refresh and try again.","text_hash":"8aeed92eae4adea791d437ec783fd99e0d81f2bb2933dbbf52232be251308ce1","tgt_lang":"zh-TW","translated":"設定無法使用;請重新整理後再試一次。","updated_at":"2026-07-10T02:22:56.441Z"} +{"cache_key":"5361a43c84ade8a1270595b3178eee3aa0d8f493b0732a81dcba7ea39244a472","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorClawHubNote","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Community plugins on ClawHub","text_hash":"b25a21cec535548e2d8dae1071188e23f10d70e4e7d4b4a846c745b41d88ceff","tgt_lang":"zh-TW","translated":"ClawHub 上的社群外掛","updated_at":"2026-07-10T02:22:48.423Z"} +{"cache_key":"55b90814ab551fde959f12228b90a10b048d5c8531ed4060dcf8e7f75635948f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.pulseLabel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{enabled} enabled, {disabled} disabled, {issues} with issues","text_hash":"29c92e0eb023152afe5df082aaae76ccb89e9f654da516ce6461297fa277b85d","tgt_lang":"zh-TW","translated":"{enabled} 個已啟用,{disabled} 個已停用,{issues} 個有問題","updated_at":"2026-07-10T06:08:28.521Z"} {"cache_key":"55e67b46942869ce5df7ce634a270965886711b8df81a4cde3ea71d42d730450","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.repo","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Repository","text_hash":"13d6ff07b8a5d792ec87d5ec83bff2730ee77fa8f4fcd89ca5f1d688f64b4c73","tgt_lang":"zh-TW","translated":"儲存庫","updated_at":"2026-07-05T21:00:31.397Z"} {"cache_key":"564fcd615407c9dd0b1d6278ebbfad922f73e6acd80e07a2e7fb8ac0e0e3129b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.searchResults","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Search results","text_hash":"e978b00de465a271a13bf2f6b9d74d67fdfaa7d973a37378fa32f988c3280599","tgt_lang":"zh-TW","translated":"搜尋結果","updated_at":"2026-06-16T14:13:16.738Z"} +{"cache_key":"573251950bd6873a0674cbf372f6a46b191176b165aa1c93978fa2b3fed3fcfc","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyCommit","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Copy full commit hash","text_hash":"906aa720c24ddf9e5f24612390512fddf060e0514eb68c1bc9c7ecea35cb4025","tgt_lang":"zh-TW","translated":"複製完整 commit 雜湊","updated_at":"2026-07-10T09:46:45.811Z"} +{"cache_key":"575c7c5958e75a4c3ae768bfc0efc75d328e1aaa699dcdcf548597693d3a384a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.tablistLabel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Plugin catalog","text_hash":"faed00681d7621f8b3a2e59fd57e2ec1b07fc22dd0304d5d7fc93612295980ec","tgt_lang":"zh-TW","translated":"外掛程式目錄","updated_at":"2026-07-10T02:22:44.740Z"} {"cache_key":"57c0ab4300c720949d4268d7d4618c1e24f5e72ac6f5c79cc603bdb0ed78be6b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewDetails","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"zh-TW","translated":"檢視詳細資料","updated_at":"2026-06-16T14:12:59.400Z"} +{"cache_key":"58ab13744af0f2414bf84a13aa4467ce8570acc1506b972a7ecea89178273cb4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledBody","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Discover a featured plugin or search ClawHub to extend OpenClaw.","text_hash":"24742261806d61a9cbf53f0c4e06ddce0e450f61dc57bd480c606809504958d5","tgt_lang":"zh-TW","translated":"探索精選外掛或搜尋 ClawHub,以擴充 OpenClaw。","updated_at":"2026-07-10T02:22:48.423Z"} {"cache_key":"5908515aa8604870d9515a93841699ccd7e7e82b7c03d86c5c63ff91735fb08e","model":"gpt-5.5","provider":"openai","segment_id":"tabs.skillWorkshop","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Skill Workshop","text_hash":"3912c65bdd0a43563438762a43ecbd4b14637844a18decbf9249df73d21152a0","tgt_lang":"zh-TW","translated":"Skill Workshop","updated_at":"2026-05-31T21:48:14.460Z"} +{"cache_key":"59c1e2806fdbc73136b0583c9be040ec384e17a39a0fbae8485345cf862c6cbb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupHome","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Home & media","text_hash":"69a5e0e1ebb60ea9a55eaa00f3a398e4cff4210303e0a98c2c666731bc1e08e8","tgt_lang":"zh-TW","translated":"家庭與媒體","updated_at":"2026-07-10T05:21:53.040Z"} +{"cache_key":"5a80d79d5436deaaaf0c9543f5dce64c756b46f46492e5499c5dba5b53d94546","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableNamed","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Disable {name}","text_hash":"c6629edc747832b81c07ac5556b9381d614444d99545fae9952c61824b7af93c","tgt_lang":"zh-TW","translated":"停用 {name}","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"5af0160814a0540948b587d27afba0a04ad887266104b48f291d139007cc1aa9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Auto-refresh","text_hash":"9ea4d7fd1550f0866089d18b1344546bfed91502b41c0484d6023ceb0fdeb75c","tgt_lang":"zh-TW","translated":"自動重新整理","updated_at":"2026-06-17T14:13:17.815Z"} {"cache_key":"5afb29184638b931fa5ce6ff85ce2fff231728cd0f07067a58ea9633eded9ef9","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.layoutComfortable","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Comfortable card density","text_hash":"bfaaf4553fd254bf24431ebabf62faebfd862685e9e7a52f5e799b11488dc7fe","tgt_lang":"zh-TW","translated":"舒適卡片密度","updated_at":"2026-06-17T14:13:17.815Z"} {"cache_key":"5b11d5e93bc9a41f61e4a73ff57d8d88985b677b4953c24e2989dcbdd409afee","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.runtime.acp","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"ACP","text_hash":"75ad69d7586c3d7e42c1ac14e80c7938dc0e7413f7f6f867c3be14d5304cc66b","tgt_lang":"zh-TW","translated":"ACP","updated_at":"2026-07-06T08:41:48.829Z"} {"cache_key":"5b80708472d328a98783d1b13fb97dfa82a9234dda4bb5fc5611355fef1d4c48","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByChannel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Channel","text_hash":"ce4683e7013a18cdf3d224bfcb4e9594ea8f559e946a837c633defe7d3c32172","tgt_lang":"zh-TW","translated":"頻道","updated_at":"2026-07-05T14:39:31.777Z"} {"cache_key":"5bb920c4b0f21b7a3843a33fd1abfa20f94273d3e8bbe9b77bf05b533798f8e7","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.archived","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No archived sessions on this host.","text_hash":"5de6bb0c0036228e8732a675c33ab05843952419ef985706e349bb761da87c40","tgt_lang":"zh-TW","translated":"此主機上沒有已封存的工作階段。","updated_at":"2026-07-09T10:01:43.713Z"} +{"cache_key":"5ccda9be4cb68bf659255abae9280dcb8af689893cb4c8c4139a61f697107c96","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.gatewayVersion","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Connected Gateway version","text_hash":"9a81688d962408d34ce73a0e2bfab7916c463cd112a960ad20c28dce3ca828b5","tgt_lang":"zh-TW","translated":"已連線的 Gateway 版本","updated_at":"2026-07-10T09:46:45.811Z"} {"cache_key":"5d1e8d597098ba19a9c87ac363c32879aeb18bee837770d06098a0e52ba393df","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.preview","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Preview","text_hash":"324b134f57c70c729ae3dc4d298bb451656717d70523e942c1ce667b8024ea07","tgt_lang":"zh-TW","translated":"預覽","updated_at":"2026-06-16T14:13:18.599Z"} {"cache_key":"5db2ad29c169ca808f893ef99a561bfda2eb24c6021d9b85f91e87b1a3f3e5e6","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkAdvancedSettingsRequiresAdminTitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Advanced Talk settings require operator.admin access.","text_hash":"fa933a90d7dde5f8f1a324bd13a5daceb0ad9e04bd77f3aae07c8348edfe4dd7","tgt_lang":"zh-TW","translated":"進階 Talk 設定需要 operator.admin 權限。","updated_at":"2026-07-06T20:20:02.809Z"} -{"cache_key":"5fde7a38dc1a120a6833d58ee62a3e92d8b885b698ecf0b460afca0986c7305a","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSounds","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Lobster sounds","text_hash":"c6c110c389f3fa1aba4fb53cfca88665c3dcfa42aecd20d360398901f3ed180b","tgt_lang":"zh-TW","translated":"龍蝦音效","updated_at":"2026-07-10T04:49:49.836Z"} +{"cache_key":"5e7d4df6d67278389e0624b09211856ed6797d99d0272db4f56c70beb54bd812","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installing","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Installing…","text_hash":"530bcc355f0a3cd6a75a5216f1648e3dc48da5615ee41f56e033f4732982a3df","tgt_lang":"zh-TW","translated":"正在安裝…","updated_at":"2026-07-10T02:23:00.400Z"} +{"cache_key":"62904734454d4738e891461cf804c21933e92b7bcca15d6b5efa503c319a479c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailOrigin","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Source","text_hash":"0e570ca6fabe24f94e52c1833f3ffd25567022beb826fa16891f3322051bc221","tgt_lang":"zh-TW","translated":"來源","updated_at":"2026-07-10T04:28:07.910Z"} {"cache_key":"63513fe26688720e10895a9dbf7a0a4507be558ab76ae20baa4247ed9ac49735","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.summary","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Session context usage: {used} of {limit} ({pct}%)","text_hash":"a62b97af0e5d02b8722725e2be0a936dd3d317a1f506ea15c766e87413b66a0d","tgt_lang":"zh-TW","translated":"工作階段上下文使用量:{used} / {limit}({pct}%)","updated_at":"2026-07-05T10:15:56.105Z"} {"cache_key":"6416f511d9437e53fd600edcc63b40afebd4cb413d4810a2b9f5ed40d932f23e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.hosts","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"hosts","text_hash":"4f8a2cc398d8664277a96a7843ab4958ab1d0a347cbe7c071fde0fcb58230793","tgt_lang":"zh-TW","translated":"主機","updated_at":"2026-07-09T10:01:43.713Z"} -{"cache_key":"648f6066c91a310b1d6fa79da6e8db97082b25218b55f3983d8448aed875fc1b","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockRight","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Dock to the right","text_hash":"87c5f43da74bf2aa5a575b34361abb7ef9c5eb57a2665369aed6f802eb28c376","tgt_lang":"zh-TW","translated":"停駐到右側","updated_at":"2026-07-10T06:07:42.888Z"} +{"cache_key":"6513672ce57d4e18ee1ebc5fdb3d0952f4517e8b571c4053863687d4143c8c39","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.clawhubSearchPlaceholder","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"zh-TW","translated":"搜尋 ClawHub","updated_at":"2026-07-10T02:22:44.740Z"} {"cache_key":"655062d009be73a12647c5fbe6f0089c58dab87d5175305af8f486e4e7bc7380","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.active","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No active sessions on this host.","text_hash":"27d1aa12b4e3732d0bceff36b848ab16fb1bad91386e509cd2a7eeecbf1551ca","tgt_lang":"zh-TW","translated":"此主機上沒有進行中的工作階段。","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"6557da04c24abbdcd5d701e277864a8e0fa8fb19f36ed8a5e79a1e0ac5fbd7be","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recentSub","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Latest completed, failed, and cancelled tasks.","text_hash":"44280ebc1ef9ff6ae709f96c5d262b1818e8c580d877fb7f9885344e102eba59","tgt_lang":"zh-TW","translated":"最新完成、失敗及已取消的工作。","updated_at":"2026-07-09T21:53:05.220Z"} {"cache_key":"6768d35ca80b4bdf18c6f583484ec2670f96239fa27700a4af47f839bb6db1af","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.costCategories","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Cost categories","text_hash":"cc320c9a0f62d2c1cf4b7214592b89080ffb035c5692463c7c514b2350814382","tgt_lang":"zh-TW","translated":"費用類別","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"682946201d904286c1e8063e9b7672702b9ad7cf461d504fe6ff98397fae5c89","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisits","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Lobster visits","text_hash":"2183e8775ad3fccd8444a132501f24b35dd091741e1c168f24e29bbc57d7b77f","tgt_lang":"zh-TW","translated":"龍蝦造訪","updated_at":"2026-07-09T20:51:21.978Z"} {"cache_key":"68711cfcdcc5e4532e160717eb88fb0da381a469381c4c9cdb2858325ed9d774","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.inputTokens","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} input","text_hash":"f24231cff78fed82d155712973ede6f9369e96b015acc30d5de2b740677edce9","tgt_lang":"zh-TW","translated":"{count} 個輸入權杖","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"68765f39deef64afad7b93fe3ea5a8ac3eaa733d640bd767f6b3deeef55d72b5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpEmpty","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No MCP servers configured yet. Add one here or pick a connector from Discover.","text_hash":"7ab46c2b4a5b1ec66b137d12a68fd0f024cf3582b9ee94bdee781086acd4c54c","tgt_lang":"zh-TW","translated":"尚未設定 MCP 伺服器。在此新增一個,或從 Discover 選擇連接器。","updated_at":"2026-07-10T02:22:53.065Z"} {"cache_key":"68e197e5c60c5c190c1c1910c14549358df6212d61205c104928b20d4fed2d41","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationTenant","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Tenant: {tenant}","text_hash":"e896dc96a6847d7aaa593069e890e7a712fd60d7be60280ee24e1942e10411b0","tgt_lang":"zh-TW","translated":"租戶:{tenant}","updated_at":"2026-06-16T14:12:59.400Z"} {"cache_key":"69651c1b633ce1fcb92d8d1586fd21b6dc26c4b828f4290cb90fbb2707235591","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.empty","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No files touched in this session yet","text_hash":"6b295e4e11bcdd52340c4cc7987565f848cf477a1f0b96c0f47a2b718418298e","tgt_lang":"zh-TW","translated":"此工作階段尚未變更任何檔案","updated_at":"2026-06-16T14:13:10.175Z"} +{"cache_key":"69b9e697956c64acd82e7fe35793d56b4d5b6f4a5905bfd74e9a1af1c8799bdb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineBody","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Connect to browse installed and recommended plugins.","text_hash":"2b1388783fabbbafff7dfe50ac26522326be122f0b002c07fe62ce6c54b5c60f","tgt_lang":"zh-TW","translated":"連線以瀏覽已安裝和推薦的外掛程式。","updated_at":"2026-07-10T02:22:56.441Z"} {"cache_key":"69f08562e3d51c6b402ccefa9cc170217ce3198bf0434b7aa5136d9950658adb","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.status.failed","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Failed","text_hash":"031a8f0f659df890dfd53c92e45295b0f14c997185bae46e168831e403b273f7","tgt_lang":"zh-TW","translated":"失敗","updated_at":"2026-07-06T08:41:48.829Z"} -{"cache_key":"6a45260ed5c410b0e3d83c811e0fc8d7ba1a6e73acdbdb7dcd0c7fc71c7c7bea","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexFirstVisited","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{name} · first visited {date}","text_hash":"706999216844c5af2e53509091e7b30b200b93c5da9fbede9e82f8b7e7526441","tgt_lang":"zh-TW","translated":"{name} · 首次造訪於 {date}","updated_at":"2026-07-10T04:20:23.393Z"} {"cache_key":"6aa33a2b6507f49e34315fe4bb6f5d37f77128ee34ce8eda62a14e5066750e90","model":"gpt-5","provider":"openai","segment_id":"codexSessions.scopeLabel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Session archive filter","text_hash":"9b7ab0c41b678c43f34c5e4d5b27428141588466c5d14b68bd19bcc93d7b6c38","tgt_lang":"zh-TW","translated":"工作階段封存篩選器","updated_at":"2026-07-09T10:01:43.713Z"} +{"cache_key":"6b3d050986744696a6ccc74696fda9dc5a7d5dacab882d78f98860dd7d9c7489","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.officialGroup","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Official plugins","text_hash":"ddafbb5b037b9cdde061e3e0c4a6dadc0c45517048f4bb3aa8101b4ec3367982","tgt_lang":"zh-TW","translated":"官方外掛","updated_at":"2026-07-10T02:22:48.423Z"} {"cache_key":"6bfc3d1999a5f284306240b452a0321c6be71e99c3c0bef22123928adb55bfe4","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePageInactive","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Microphone inputs are unavailable while this page is inactive.","text_hash":"775110f07819e48dc96203ed710c4df3546892e5672d7c469dedeb1e0e163882","tgt_lang":"zh-TW","translated":"此頁面處於非使用中狀態時,麥克風輸入無法使用。","updated_at":"2026-07-06T17:56:07.837Z"} +{"cache_key":"6c973163a869e1a1e3229a365ba1e4120ba9888f5c2f0f89b8f0e18d2eaefb5b","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copyingCommit","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Copying commit hash","text_hash":"e78cce406e4b10bf7b30665cd19954e3fe410ea5b07f16415449a35dd02328dd","tgt_lang":"zh-TW","translated":"正在複製 commit 雜湊","updated_at":"2026-07-10T09:46:45.811Z"} +{"cache_key":"6cad5973fe5e489d468ebfc718b18e784afc2611fed0193ac55fcb1ff871be5f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.cancel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Cancel","text_hash":"19766ed6ccb2f4a32778eed80d1928d2c87a18d7c275ccb163ec6709d3eb2e27","tgt_lang":"zh-TW","translated":"取消","updated_at":"2026-07-10T02:22:56.441Z"} +{"cache_key":"6cf6c6d8342509ceda23ae36c478e982df4ddf03bedfd63b34ff77181057ca89","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disableAction","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Disable","text_hash":"b7e3e4aa4257b9a11a82f59faf34c8450ca10d4116885b0a29fedf60842d81d5","tgt_lang":"zh-TW","translated":"停用","updated_at":"2026-07-10T04:28:07.910Z"} {"cache_key":"6cff0e9728069d9c2a595966e89a949493a8d9af8c9b5e9f6ff35f5355e3487f","model":"gpt-5.5","provider":"openai","segment_id":"codexSessions.status.active","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"zh-TW","translated":"進行中","updated_at":"2026-07-06T08:41:46.878Z"} {"cache_key":"6d0af4c6b2f20d6d314cf905224c8417dd758555747a948e3c7d1585c81c9295","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.search","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No sessions on this host match your search.","text_hash":"53e8e235da1a4490f8514580987af37d3693f5232882f414ce75de09cd4203f9","tgt_lang":"zh-TW","translated":"此主機上沒有符合搜尋條件的工作階段。","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"6d2665398b5ae919883e0965313055d2d1b8de713cb1aa70b0a2b9f6623ad91c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRecentlyDone","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Recently done","text_hash":"46b889592a2f5e79197f62b5f96c76993545626bf207740ea58632ceed9623be","tgt_lang":"zh-TW","translated":"近期完成","updated_at":"2026-06-17T14:13:17.815Z"} +{"cache_key":"6d88f98fdb4e2af85ff7efaf2128d496aba66acef6de27112ed5ea2760f1af69","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.codePlugin","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Code plugin","text_hash":"f1765020c657263e9429231379ba42b2baca07c69512c9c63268e9939d0f9db7","tgt_lang":"zh-TW","translated":"程式碼外掛程式","updated_at":"2026-07-10T02:22:56.441Z"} {"cache_key":"6d984985a7c0e8f18326df65ab87cd871bc60830d881d34d2406da28f8fdd9fc","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewRunning","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"zh-TW","translated":"執行中","updated_at":"2026-06-17T14:13:17.815Z"} {"cache_key":"6db77cbb3c3b33e8fcea05c48648a2d393c9d3e6dbf6239fc823fcf70d09c5d0","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.cancelTask","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Cancel {title}","text_hash":"74513d73b6ce74627b24c7f8a82fc52ffb27f69f27e07ecc6efbb64f25d4180d","tgt_lang":"zh-TW","translated":"取消 {title}","updated_at":"2026-07-06T08:41:46.878Z"} {"cache_key":"6e932b8ddacec2f0bf96a35e8d63b319a02a96c91331bac2350f0dcc103f74cd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdatedValue","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Updated: {time}","text_hash":"5e72d5445f018c9d08aa34ae0178fb9aa49eea6a0afd0c8d379f20b7af3e8aa0","tgt_lang":"zh-TW","translated":"已更新:{time}","updated_at":"2026-06-16T14:12:59.400Z"} {"cache_key":"6f8e95fe408f11283fd035b30042d1d546df363e750033a88cbbc54b230630c2","model":"gpt-5.5","provider":"openai","segment_id":"workboard.dispatch","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Nudge dispatcher","text_hash":"c3d20147447cc75f5e1e8cc895af0bc287a4a720372aec4795c5dfbfa9eeda67","tgt_lang":"zh-TW","translated":"提醒分派器","updated_at":"2026-05-30T15:38:05.607Z"} +{"cache_key":"7012c593e07bc6d7dbf4c7ec312699bcaed42e5bd253c65552e9703689f91890","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.install","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Install","text_hash":"569ca49f4aaf7846e952c1d4aeca72febd0b79fa1c4f9db08fd3127551218572","tgt_lang":"zh-TW","translated":"安裝","updated_at":"2026-07-10T02:23:00.400Z"} +{"cache_key":"709cb374baac5224f41d6bf625c739b15d888fa419a8ea1edccc9f55102c2aaf","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterAll","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"All","text_hash":"a52ace420f2175d08b1577a1bea5445e36801229c074ef9ed6c55a73401fd9c2","tgt_lang":"zh-TW","translated":"全部","updated_at":"2026-07-10T02:22:48.423Z"} {"cache_key":"70e23c83e306a237326d5115e9666ff3795c80f5965583fe450c1d4ca326aec9","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.skillWorkshop","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Review, refine, and apply proposals before they become live skills.","text_hash":"f907c72e9f18a205027257cd6fecdd52b03732227a17dcec0db038e11de3f8cc","tgt_lang":"zh-TW","translated":"在提案成為上線技能之前,先進行審閱、調整並套用。","updated_at":"2026-05-31T21:48:14.460Z"} {"cache_key":"710e16e7c8eaf7982df6f35b3c0b1016adef95effb46903834d48451f9e6dd67","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.invalidResponse","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"The gateway returned an invalid task list.","text_hash":"7aa61df7c36183096eba8284474d80ba8df86966ca8d8eed803e54a9fa938996","tgt_lang":"zh-TW","translated":"Gateway 傳回了無效的任務清單。","updated_at":"2026-07-06T08:41:46.878Z"} {"cache_key":"7151008114b05262863619b0bec92f47c0c9331d88aa2b1d445370fac7e4daec","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmForceDelete","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Snapshot failed: {error}\n\nDelete without a snapshot?","text_hash":"200ce9b8fb04659df79e1d26e69ec1014631ad5a85a92130dbdb9fcb550ba34f","tgt_lang":"zh-TW","translated":"快照失敗:{error}\n\n要在沒有快照的情況下刪除嗎?","updated_at":"2026-07-05T21:00:31.397Z"} {"cache_key":"71d18db5fb40697c2b1d0f0ad0f19f6c1450b88bd3145bd4b615a031e092fc63","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.status.completed","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Completed","text_hash":"22a970d2e5b1cc233e462be7c7b64e135a275bb09d83d87683bf4236c43113a1","tgt_lang":"zh-TW","translated":"已完成","updated_at":"2026-07-06T08:41:48.829Z"} {"cache_key":"71d4a6d99b4f33e29ab279ab7a3e5b853f02c720fe781469ac21cd3f486f149b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefaultHelp","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Cards explicitly assigned to the configured default agent.","text_hash":"9bb80530da1dfd473936d94642b83cc668b7362cb65675a565f17569937af92f","tgt_lang":"zh-TW","translated":"已明確指派給設定的預設代理人的卡片。","updated_at":"2026-06-17T14:13:17.815Z"} +{"cache_key":"72426b7eb34a6ac0d7b13be52d9ac5f94354591b12cbced5d9f10be08302ce35","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactSubtitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Identity embedded when this browser artifact was built.","text_hash":"3c221132e75dafd8c0c14abd79a611bb3392e044f6da5e5e4f54cfd748b2237e","tgt_lang":"zh-TW","translated":"建置此瀏覽器成品時嵌入的身分識別。","updated_at":"2026-07-10T09:46:45.811Z"} {"cache_key":"727ad347ef0ba67b8694ef5e86b0d0a1693fa70499b2e21e8b074b80af01d3a8","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.dailyCost","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Daily provider cost","text_hash":"0d03078a4d1fba12122e32e9abbc929ea64b948445810cf1e0d29cbdfd5cb18d","tgt_lang":"zh-TW","translated":"每日供應商費用","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"72ee0ff2bea013ba6778a8efa1c10b4f30b0ecbf79cd19ae129d1887e1ef2a99","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdd","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Add","text_hash":"9fd728c66c9a256b121472dabf32a34317aed01d8427d70ec830289cf23a7cc8","tgt_lang":"zh-TW","translated":"新增","updated_at":"2026-07-10T02:22:48.423Z"} +{"cache_key":"7322ee72f6b76f02dc9993007877041a898a234ff226ef985dd1f9c90b2d106e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchLabel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"zh-TW","translated":"搜尋外掛程式","updated_at":"2026-07-10T02:22:44.740Z"} +{"cache_key":"734356143436819e7269127a07b854345e68c6b9c706ae487e1fc9760a8e6c22","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.commit","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Commit","text_hash":"82a9c46ffa4789945d9f2359d75891558ef6faa8dee09e4b25e4e0597704f5bd","tgt_lang":"zh-TW","translated":"Commit","updated_at":"2026-07-10T09:46:45.811Z"} {"cache_key":"737a46b33974978d8774585e219cc270151df3bf1d482c87c4ece4b066190fb7","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChat","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Use current chat","text_hash":"fbc1ffd63daa506e927c7a85f6e43acd11e0b8c9f52a3951fc782b236ce9a787","tgt_lang":"zh-TW","translated":"使用目前的對話","updated_at":"2026-06-16T14:12:59.400Z"} {"cache_key":"739aac43b186744757407ea72991fc51af70ff11a1d832bb4922e8fe9c036c8f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Card details","text_hash":"93985f84673405070ffdf7e6f64175caff0f2c489c10e40627718525e79af631","tgt_lang":"zh-TW","translated":"卡片詳細資料","updated_at":"2026-06-16T14:12:59.400Z"} {"cache_key":"742c4b6f2c31f9abac8b493c4c2d559cf1dcce0ba51d72e27177ec1921a9d1df","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphonePermissionBlocked","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Microphone access is blocked. Allow it in browser site settings to list inputs.","text_hash":"707f9594b092cf816d6d7a74381665a74acfecbe32d859d0a4adac9e9c9ff77b","tgt_lang":"zh-TW","translated":"麥克風存取已遭封鎖。請在瀏覽器網站設定中允許,以列出輸入裝置。","updated_at":"2026-07-06T17:56:07.837Z"} -{"cache_key":"772f78e8b985a578f31d947d7c16087c596f61edd75b27dcdb7194a614ba262e","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dragToDock","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Drag to dock right or bottom","text_hash":"3fae26368a3c23df2e4e25691983c2a56efdbf92d5b970101e0aa432db9c48f6","tgt_lang":"zh-TW","translated":"拖曳以停駐到右側或底部","updated_at":"2026-07-10T06:07:42.888Z"} +{"cache_key":"76f19f93a3ee1ea4020af3fd33c01f348bae3c3a2b4dda0abdf77cc04ac94ec2","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.version","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Version","text_hash":"dd167905de0defcaf72de673ee44c07431770d129ccffab286bd2edfdaf62396","tgt_lang":"zh-TW","translated":"版本","updated_at":"2026-07-10T09:46:45.811Z"} {"cache_key":"77b643910aebbeff79bea0230341d18edfc1672dba8ac18f954736304307f71c","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.worktrees","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Isolated agent task checkouts and recovery snapshots.","text_hash":"bc794dc846493e3c5f88964268af19b7dd818eae942c596002ef4067ba5a3d0c","tgt_lang":"zh-TW","translated":"隔離的代理程式任務簽出與復原快照。","updated_at":"2026-07-05T21:00:31.397Z"} {"cache_key":"77bfbea109ae4f5f8a149ed82c688e75b8246edfb0c4566dabb365e66043ac25","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.files","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Workspace","text_hash":"87bb59ba2f92f2a5a9f13e021fd58dd14ae5c065b1046146875e6e68d5ebc8b7","tgt_lang":"zh-TW","translated":"工作區","updated_at":"2026-06-16T14:13:10.175Z"} {"cache_key":"78010c9c0aee2f26ed2a585728f8899df98ca0e0fee7999e7977f5a91343fdd5","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateNoActivity","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No activity","text_hash":"0cf9505f9f97c8359cc143ba3e88bedaba3a4ae92c2794ffd1b097270732ed18","tgt_lang":"zh-TW","translated":"無活動","updated_at":"2026-07-05T14:39:31.777Z"} {"cache_key":"784ef6793169ca9c6c82605c332405119aba6a9994b9e5b213beea930ee0c4dd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewStale","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Stale","text_hash":"40c9e59c5e152b0ae9affc84d8461c29b75a7709e4506307eeedf246b526014e","tgt_lang":"zh-TW","translated":"過期","updated_at":"2026-06-17T14:13:17.815Z"} {"cache_key":"78a644ad5ca40fe198e7b09e78ca44bbcf0cae1cf448a377e793286bb57e2b18","model":"gpt-5.5","provider":"openai","segment_id":"languages.ru","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Русский (Russian)","text_hash":"ea81bf0fd46410b501bddee074ab6f00b0cdf377a6cafe608dcf2c28f7cb2f4e","tgt_lang":"zh-TW","translated":"Русский (Russian)","updated_at":"2026-06-26T21:43:20.866Z"} +{"cache_key":"78f207aeb231cdeb4210a59cc87952c9d1cdc764cb0f60ecc68ae163f3457051","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searching","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Searching ClawHub…","text_hash":"1dc48144c37134cc875133799e40d6766a0306fa220e8fa63139c4dcab0bfd54","tgt_lang":"zh-TW","translated":"正在搜尋 ClawHub…","updated_at":"2026-07-10T02:22:44.740Z"} {"cache_key":"790b2ccccee37f6ae8c5bb0689d4782b3674cabaed6573e272c5167b9fb5d490","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReadyTitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} dependencies are done.","text_hash":"559fe92cd5fe39b4f511a146fc7ce6b51e7f528e1d388bbfde1d85dddb60604d","tgt_lang":"zh-TW","translated":"{count} 個相依項目已完成。","updated_at":"2026-06-16T14:13:10.175Z"} {"cache_key":"7a35c94a57834812f61f441889d2ee3a8c5b0dbd2bcf806af24d68ec49325789","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupConfirm","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Delete group \"{group}\"? Its sessions move to Ungrouped.","text_hash":"8efc8cb301bca2d82627c05eb36558e603c1b1ad0d58a2bd6584aa1c3a01c710","tgt_lang":"zh-TW","translated":"要刪除群組「{group}」嗎?其工作階段將移至未分組。","updated_at":"2026-07-06T23:40:44.295Z"} {"cache_key":"7aa68f9954a1609d0a4ff34f36498fd64aa3d78b8ce2749ebd7bb64121e622c2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.actions","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Workspace file actions","text_hash":"461817d921bc7672e95fe4a3b23f4ac2a4a20e35b3d6eef3f02e8f5ba4201050","tgt_lang":"zh-TW","translated":"工作區檔案操作","updated_at":"2026-06-16T14:13:16.738Z"} +{"cache_key":"7b1fcffcfce80fe92b660ceb4cdcd4e57146a7bae0ea0331f3584c24bcdb67fd","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.filterIssues","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Issues","text_hash":"666067dd376e5d4553b8fd554f855855819ad213ae825022d2a32dfa28431115","tgt_lang":"zh-TW","translated":"問題","updated_at":"2026-07-10T02:22:48.423Z"} +{"cache_key":"7b2b032394a8189ab200e275d5f6229a0b0be48cc65ce0096fb1dd4d1305ad6a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.discoverTab","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Discover","text_hash":"d4a33d5b78bccebe3f16843dc30e6c0f73b4eb6efb4e7114ddfebde7fa2c9954","tgt_lang":"zh-TW","translated":"探索","updated_at":"2026-07-10T02:22:44.740Z"} {"cache_key":"7bf02dd8146f15240036f48e0562270bfbdc827fe428c82094945a740043fb80","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noBrowserFiles","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No files in this folder.","text_hash":"3847020c79b1c74e28aa550f0ae53838b764e87f1daf1480dd6aae45ae0529d6","tgt_lang":"zh-TW","translated":"此資料夾沒有檔案。","updated_at":"2026-06-16T14:13:16.738Z"} +{"cache_key":"7c20944322df2c50d623e3e61c37248dd480fe73ea46203fb8aca5db6bc3062a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabled","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Enabled","text_hash":"92c1cdfdf4cb9cf6fcca962f206de36fd5d60db1178bc9461052f8de703a0e06","tgt_lang":"zh-TW","translated":"已啟用","updated_at":"2026-07-10T02:22:56.441Z"} {"cache_key":"7c3a1ccdce05c71f2e7debb6cf500e221a601706bcfe4030e128e5b23d5f0b0f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailUpdated","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Updated","text_hash":"3a5ecca188c0579c00ee24cf3cab21bd02c15a06f7a70cc8e0a8ff2381dcbbfd","tgt_lang":"zh-TW","translated":"已更新","updated_at":"2026-06-16T14:12:59.400Z"} {"cache_key":"7d04aba9a0d017c59e00efe0c3b798bb4b9bad33fdc6c863c812ea4b75100460","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnly","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Archived only","text_hash":"da7ebd8c482f38dc2a5b693a0ec25aaa04ea7b5fa3713cce9fa41a28f2201a6b","tgt_lang":"zh-TW","translated":"僅已封存","updated_at":"2026-07-02T14:29:59.019Z"} {"cache_key":"7d5637373e8298215396144198e43b0804ec1a8b7bda2483bd25c08f95f37ac6","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.title","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Managed Worktrees","text_hash":"dde32010185098a47e873fb25dd99446b0cb1a75614068587f7cd0bffb5aed18","tgt_lang":"zh-TW","translated":"受管理的 Worktrees","updated_at":"2026-07-05T21:00:31.397Z"} {"cache_key":"7d6da732fa7844908764c04ab695d2d41886031fea93b23089692ce356c625ba","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.title","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No Codex hosts found","text_hash":"aaad17f2d1d59a936c7882613d1eb75ad6e82d0e82ec79837a587a43352ce24e","tgt_lang":"zh-TW","translated":"找不到 Codex 主機","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"7dac50dbdfbf5c96a0b54f4ad4d3e7a6e5dae056e4e9b211fd590b53784036e9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateYesterday","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Yesterday","text_hash":"566181254b293aa66653e43313be9e39c12d44f9ac4fcd3236ef1e9c50a2903f","tgt_lang":"zh-TW","translated":"昨天","updated_at":"2026-07-05T14:39:31.777Z"} +{"cache_key":"7dd1ae3dbd7e2ab6a34d42597b04bf71f7ffdc6ee0276b2f214d2e679f58b3d4","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryOther","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Other","text_hash":"f97e9da0e3b879f0a9df979ae260a5f7e1371edb127c1862d4f861981166cdc1","tgt_lang":"zh-TW","translated":"其他","updated_at":"2026-07-10T02:22:53.065Z"} +{"cache_key":"7eb3c132d39f000267c0d653584e5c825ba109276b4a3ca9888149a7c1ec89b5","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAdded","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Added","text_hash":"6b02e0d363a4af1c95eef50364bb0202c8b250aa05a48a69e68fd7787b4b0632","tgt_lang":"zh-TW","translated":"已新增","updated_at":"2026-07-10T02:22:48.423Z"} {"cache_key":"7edabd9d6f643852a532b979fd0baebdd731016b041c8b595a7238d7edaaf215","model":"gpt-5.5","provider":"openai","segment_id":"tabs.mcp","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"MCP","text_hash":"53f13ae99ed53bd346eb8e1c8cefb7ef8260683b50401caf101360967ea052aa","tgt_lang":"zh-TW","translated":"MCP","updated_at":"2026-05-31T05:36:31.990Z"} +{"cache_key":"805eb38121af840703b47aaa163da9e6b452ddb4801ec31b2c73439b4fd42093","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedTab","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"zh-TW","translated":"已安裝","updated_at":"2026-07-10T02:22:44.740Z"} {"cache_key":"826b48585a8f13512d608fb30b352d6f944f1b0e0673c169d5d41c66af1287e8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.noSearchResults","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No matching files.","text_hash":"6ba2ede6c6019b640f63e7e48c5ee8238e701c6e539ce9abb5a7a9d9c71d8a73","tgt_lang":"zh-TW","translated":"沒有符合的檔案。","updated_at":"2026-06-16T14:13:16.738Z"} +{"cache_key":"82e13229f406f5582ac263d12ee5273477baa6468ff168b7e4de2d7226a68e00","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.about","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Control UI and connected Gateway build identity.","text_hash":"fd2885ca5ec93b2e9ad97b2e33f923d5e4eeb352538b54153e92767c16db3c63","tgt_lang":"zh-TW","translated":"Control UI 與已連線的 Gateway 建置身分識別。","updated_at":"2026-07-10T09:46:45.811Z"} {"cache_key":"8410fae784a09c9294f96c4597791082040559685ad1a99b1ace40492095a138","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.status.queued","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Queued","text_hash":"661ff40a07e037bbd5f7d4ec97a4df1503096ca910e7c9e2d7a4e9abd4e4e1a0","tgt_lang":"zh-TW","translated":"已排入佇列","updated_at":"2026-07-06T08:41:46.878Z"} {"cache_key":"84130e1d8009552c5e9556a925d32d97b60fa242a84364bcc860c09ee8b5ba46","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneAccessFailed","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Unable to access microphone inputs.","text_hash":"5125ca209d6d3c763713490ec0de3a44db42aeab03cb21dcf4b047a1a4970669","tgt_lang":"zh-TW","translated":"無法存取麥克風輸入。","updated_at":"2026-07-06T17:56:07.837Z"} {"cache_key":"84eb7f989a1b603c37cc3c034a3cefadddb7e2e5b4dd2594aacffc2699fbc507","model":"gpt-5.5","provider":"openai","segment_id":"chat.archivedSessionDisabled","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Restore this session to send messages.","text_hash":"c21bd35c2bef2266f419cbb4214cfd7b0af89386aef88ec8b11837844240e0d9","tgt_lang":"zh-TW","translated":"還原此工作階段以傳送訊息。","updated_at":"2026-07-02T14:29:59.020Z"} {"cache_key":"856bd72086b1e942a87d6a300d580f7b7734dcbfa90050856d859c14a2568707","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitWeekly","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Weekly · all models","text_hash":"144f0e5ca031e40c0cba8a53a9dcb4d9534c74edd976587231da2cd14b4944df","tgt_lang":"zh-TW","translated":"每週 · 所有模型","updated_at":"2026-07-09T11:48:50.643Z"} +{"cache_key":"866a4db1f19a687c770eb4dea69dbdb8b688a09fa40b652325928b133349b4bb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.browseClawHub","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Browse ClawHub","text_hash":"e08edbeae2690a558cb6ca2289f847cd6b9e5f5fc8787ac3bd09876afa76f884","tgt_lang":"zh-TW","translated":"瀏覽 ClawHub","updated_at":"2026-07-10T02:22:44.740Z"} +{"cache_key":"86eaa576c458d8fcda43ea0c7372cb1cbc6465ff9da0589f9f116817c20970c0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryChannels","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Channels","text_hash":"4c8906cf76f5740ab8792aef9f0033fe21a92045e90b357816064e9f6860a03e","tgt_lang":"zh-TW","translated":"頻道","updated_at":"2026-07-10T02:22:53.065Z"} {"cache_key":"8703e3f6174426ea308da95b235bace248f3029faaa6959e881257ec66bfca36","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCountOne","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} session","text_hash":"c0975b42c84d7da963f4c962d1e2c1ee78eb18efc7ebec75fb3ce761ce9a40db","tgt_lang":"zh-TW","translated":"{count} 個工作階段","updated_at":"2026-07-05T14:39:31.777Z"} +{"cache_key":"888d680a2983c8efab91cf29ee42fdf4c517381a8011f81d61d1d2c2c854fa94","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.copiedCommit","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Commit hash copied","text_hash":"108fbf104afbc9754956db6b1559d2f26fada05a38d0753e3123a98ada3dd8fb","tgt_lang":"zh-TW","translated":"已複製 commit 雜湊","updated_at":"2026-07-10T09:46:45.811Z"} +{"cache_key":"88ec63c4fd9c9a53bab07480bf22a32842fb02b7df2f534649bdfe9d861a7685","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedRestart","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Installed {name}. A Gateway restart is required to apply the change.","text_hash":"ea49759e197517b85cfac13461dd71799f791784adc013163256b18a75971d06","tgt_lang":"zh-TW","translated":"已安裝 {name}。需要重新啟動 Gateway 才能套用變更。","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"89177c7414a815aba0b43c4f1ba3b90adc797d170acc5724648356551a4a261f","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.runtime.subagent","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Subagent","text_hash":"d6cb4188b8fa57aae3e4ca3a1210c9afe7ca995375c2fb36d90a1fa73529a44e","tgt_lang":"zh-TW","translated":"子代理","updated_at":"2026-07-06T08:41:48.829Z"} {"cache_key":"8929a48a76bc2f5c1738380cf0651e21190889b9117645d7f137682071234be9","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOn","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Drops by occasionally","text_hash":"620c90596deb02d1164d4036d540b11c780b61cb04e4825230efed1cd8a45e6e","tgt_lang":"zh-TW","translated":"偶爾來訪","updated_at":"2026-07-09T20:51:21.978Z"} {"cache_key":"892ea67d82274b90a2a037200cf74c6aafd1ee90ec43db2208517e488500c0c2","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifactCount","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} artifacts","text_hash":"022b6b55a10f1864b7aff7c307e49ab37e11e6999111fb87349f040d100abba3","tgt_lang":"zh-TW","translated":"{count} 個成品","updated_at":"2026-06-16T14:13:16.738Z"} {"cache_key":"893014c3aeacac615b812059f9b3a3bbebfff0ce02fdfddff1d18190d9513827","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.sessions","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"sessions","text_hash":"1225ae6c1ae69dcb4ee4781b703e12206f3b549cd3ca151070a8d8d8f371dd71","tgt_lang":"zh-TW","translated":"工作階段","updated_at":"2026-07-09T10:01:43.713Z"} +{"cache_key":"8b44a31db089b982a721a1f32211321cf0731819fbc0b9b23924112f08e5f9cc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdding","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Adding…","text_hash":"c6de6f45c827f464b161b668ae93192ce4e6585c4029d8dd71795cbd7f922719","tgt_lang":"zh-TW","translated":"正在新增…","updated_at":"2026-07-10T02:22:53.065Z"} {"cache_key":"8b873107c534fa32cb4dbd267226e5658da1f5dc839478ea29156572ba516a70","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.empty","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No managed worktrees.","text_hash":"67f97698da5ed0bb1cc4cadd157e403c0fcd22fc4735d8f39bcf27ea6dd612c8","tgt_lang":"zh-TW","translated":"沒有受管理的 worktrees。","updated_at":"2026-07-05T21:00:31.397Z"} +{"cache_key":"8bb67e64f997c95dfd7fa20a9f3ffcd43cffae04b99308487e3e9559c3c8ba28","model":"gpt-5.5","provider":"openai","segment_id":"tabs.about","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"About","text_hash":"4efca0d10c5feb8e9b35eb1d994f2905bb71714e6a271f511d713b539ea5faa1","tgt_lang":"zh-TW","translated":"關於","updated_at":"2026-07-10T09:46:45.811Z"} +{"cache_key":"8bc39e56815790f4887933f3019ad330090322dd735e440096bf04190db728b8","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubBody","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Enter at least two characters to find code and bundle plugins.","text_hash":"7b88a5efe7893e8013832e739b3569a33f6e61a6e59a3f94389d7205af46702b","tgt_lang":"zh-TW","translated":"輸入至少兩個字元以尋找程式碼和套件外掛程式。","updated_at":"2026-07-10T02:22:44.740Z"} {"cache_key":"8c6b223ab1650b2bb316696ac86fd5392d36db4292face01f91b64335699ddb0","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.name","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"zh-TW","translated":"名稱","updated_at":"2026-07-05T21:00:31.397Z"} {"cache_key":"8ca95d0c071056d1b4e1cb1b29b79c8f53a4c406f09f2d0a5071a20d1b975239","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.systemDefaultMicrophone","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"System default","text_hash":"b0459211f9f76871059135050a2afd9a01e7e41dc32ea58006c51483b9ceab6d","tgt_lang":"zh-TW","translated":"系統預設","updated_at":"2026-07-06T17:33:33.517Z"} {"cache_key":"8e37c07d47eccdd87e9152b0ff74a13e70309bb1eef000a83329caed9303db6a","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.runtime.cron","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Cron","text_hash":"dd9d24965dbedc026915308732b77c1af68dcf52d3c0ca2421b1fdb0d197aca1","tgt_lang":"zh-TW","translated":"Cron","updated_at":"2026-07-06T08:41:48.829Z"} {"cache_key":"8e6ba759b889957935ad5abe826d64d960e01a0c1f945e13bb8501580071b8f0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.composer.talkSensitivity","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Sensitivity","text_hash":"ebb57a260d58207c3cce2e12e8663ecdc0c74147d138655d6714bc577a0768f6","tgt_lang":"zh-TW","translated":"靈敏度","updated_at":"2026-07-06T20:20:02.809Z"} {"cache_key":"8eafdd71c805e6f90f537427ba07bf27a903c96b1a301fc642daea0fe90f4e45","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.pinSession","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Pin session","text_hash":"813273b54d2df112a0fa1903110e9386779f8848ae288142d3f91d7a5891c8ff","tgt_lang":"zh-TW","translated":"釘選工作階段","updated_at":"2026-07-02T14:29:59.020Z"} +{"cache_key":"8eb7c94fbbcd9f7a629e25170d6ddfc0b0b596b7830b9ac3945cc4ec978f8705","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.acknowledgeRisk","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Acknowledge risk and install","text_hash":"22492375100f74cd283f0f80143eb70c1d46d05e2762834bd8563e77a9bf99da","tgt_lang":"zh-TW","translated":"確認風險並安裝","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"8ebabe1cf79cfc52dfdc546172330be58655e3184647dc726c153d5a97fe196d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.runDuration","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Run duration","text_hash":"b5e9698b25697ec71f0947df28e6b08438033fe73b1b87ac7362766d77b45b97","tgt_lang":"zh-TW","translated":"執行時間","updated_at":"2026-07-09T10:13:13.136Z"} +{"cache_key":"8f26f968e8567b94099bb1947b42cbd75e904893aca46f46d4787c5f967558c2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorGroupLife","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Everyday life","text_hash":"6ffcf9be10dcf4ad0f1cb6a4cc66ac839cad453ed842c7a3215f04cd5200cae5","tgt_lang":"zh-TW","translated":"日常生活","updated_at":"2026-07-10T05:21:53.040Z"} +{"cache_key":"8f2cc99b4100d88a8f7ab8f83f7b1baae9368ce744c15292951f34b94cb0c2c9","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpAdd","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Add server","text_hash":"1099b2a9965f4c54b3167cac90b2e35f1e9a0279b3c71b2dc493f9b279150aae","tgt_lang":"zh-TW","translated":"新增伺服器","updated_at":"2026-07-10T02:22:53.065Z"} {"cache_key":"8f41cfbe201ce301cc97060d2458e47d7fb95efd00a59c12ab420a42edb1343c","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.openChat","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Open chat","text_hash":"0600175af8429c3cd44ab859dcdd3cfa5c763d9b352c7b03520196d4ceb59a88","tgt_lang":"zh-TW","translated":"開啟聊天","updated_at":"2026-07-09T08:27:11.330Z"} {"cache_key":"8f747acaf2ebeab7a6f11f77f1b218b9b57bced8c0b3c00b85aec6c78bc609cb","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.branch","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Branch","text_hash":"52656e8104eef3fddd3d4546903fa0de93c0625abf47b3dd8130f7705d6a513e","tgt_lang":"zh-TW","translated":"分支","updated_at":"2026-07-05T21:00:31.397Z"} -{"cache_key":"9040825fbf0485afec6e570a53176878581bf7b4eb2b939e2921c03a53c445a0","model":"gpt-5.5","provider":"openai","segment_id":"nav.search","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Search","text_hash":"49c266baaaa70981ea188fa714d5c40cf13830d786a861c9943ae0d26a7f3fe9","tgt_lang":"zh-TW","translated":"搜尋","updated_at":"2026-07-10T06:07:42.888Z"} +{"cache_key":"904689653c9e3c9b81a6433a56f793d7652ece16f2225720c26b934e306ef408","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noMatchBody","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Try a different search.","text_hash":"2e6d79de50dc4cdb84f6040dcfe0e7453867ed6516d825a70bb625403daa57e8","tgt_lang":"zh-TW","translated":"請嘗試不同的搜尋。","updated_at":"2026-07-10T02:22:48.423Z"} {"cache_key":"90d46ec9ecb0131dcdcf4564b232a72e2e214061536791801a6a045c50b2d978","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.unavailable","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Session catalog unavailable","text_hash":"7214837a3c6e83c01215e8128a4f7ac095be446b09dc0bd464178c9d1f03a039","tgt_lang":"zh-TW","translated":"工作階段目錄無法使用","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"925657f5c27104973a054ec9ac589584058de47dca67f743fc7ad5dc3bc0b27d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.read","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Read","text_hash":"9b9a8d05a7ec353bda84f9c1bb3178c299de3001b5e970508ddc889c487f92ca","tgt_lang":"zh-TW","translated":"已讀取","updated_at":"2026-06-16T14:13:16.738Z"} {"cache_key":"92ab447ae071265b2f6d8682737ce5556fad717d1ff8f95de2db03b52464f862","model":"claude-opus-4-8","provider":"anthropic","segment_id":"cron.jobDetail.command","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Command","text_hash":"713166971d730f81fcf8b757f2ea239d1a0360d9f74e8f5afe60fba97105879c","tgt_lang":"zh-TW","translated":"指令","updated_at":"2026-06-16T14:13:18.599Z"} +{"cache_key":"93a6d0c9c4501842ca3760a55b946d31fd49319385f2414322ee5e408dc45d3f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.changesDisabled","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Browsing only. This gateway does not allow plugin changes.","text_hash":"82793ee1ebd503db74b8b599d8609e1c25986db3ab0eae0eea351c3d8d6e2488","tgt_lang":"zh-TW","translated":"僅供瀏覽。此 Gateway 不允許變更外掛程式。","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"9453b56e509d26313c25cf74cec0e9bcbbbc9c0163f9e933e9eb0d382d81530e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependencies","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Dependencies","text_hash":"2e41b118eb209c139f2bcbf690486f6e1509ab978aa96feb053877a70a1a5a09","tgt_lang":"zh-TW","translated":"相依項目","updated_at":"2026-06-16T14:13:10.175Z"} {"cache_key":"949d22edb0aec22c16ffdc84039184e55b037559a9d316c9f8a33ec3e71b105b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh30s","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"30s","text_hash":"d3382a4f0e03f8b14cf99424376886c236f1503d4b332137667484fc96d58fc4","tgt_lang":"zh-TW","translated":"30秒","updated_at":"2026-06-17T14:13:23.259Z"} +{"cache_key":"950190c1e1c4e884a370d6f8f5e076234c9f0885730474c727d4075aed87fab9","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.unavailable","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Unavailable","text_hash":"ca184496974204a0bd3fd4925e0540bc4b0df6fcc232994d29754272b7183812","tgt_lang":"zh-TW","translated":"無法使用","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"95abc5d183d59c72e7ea7d36560c44180828aa85866bd9602e9600e6e4f6fdde","model":"gpt-5.5","provider":"openai","segment_id":"chat.runControls.newSessionWorktree","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"New chat in worktree","text_hash":"4ce7f69c42b6b0fc700718d8e69101c9f04953b7be65044dc6d40f3975cd3cee","tgt_lang":"zh-TW","translated":"在 worktree 中新增聊天","updated_at":"2026-07-06T04:55:46.191Z"} +{"cache_key":"95ae680d177d0cb1bd0bfbee372bdfa5dc334ecbb251847cbd8e50e1b592fee2","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.artifactDetails","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Control UI build details","text_hash":"80874a1256a7311a43b13990c1ab27b3c993abf90d5699287ce733b79d46ed7e","tgt_lang":"zh-TW","translated":"Control UI 建置詳細資訊","updated_at":"2026-07-10T09:46:45.811Z"} {"cache_key":"96ad0f185af324a32149f91259382d31650fd814bc371788227dfd0f0ad80a38","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.openInline","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Open in Sidebar","text_hash":"ee39dc2999ce3acefff3c4c5440266e6a044feb3fb0a405a754f3ee4f697b201","tgt_lang":"zh-TW","translated":"在側邊欄開啟","updated_at":"2026-07-09T11:02:38.494Z"} {"cache_key":"96c905bd13add9b967968ffb872acaa82316a2ebe6d958a6c606ba67f7c87d83","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.archivedOnlyTooltip","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Show only archived sessions.","text_hash":"de4c6803e169c7f2d3116da6fa5b95417d952edf88f69b0b279d5d17e9e34e87","tgt_lang":"zh-TW","translated":"僅顯示已封存的工作階段。","updated_at":"2026-07-02T14:29:59.019Z"} {"cache_key":"971f9cdf8108eb62348e40417fd50f4b6e10b9a0d2090ca408506693b0f6a66e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.renameSession","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Rename session","text_hash":"2cad0766accc2d3f70f007068524cea983e0d53f54543e9e82a4e73b2a07987f","tgt_lang":"zh-TW","translated":"重新命名工作階段","updated_at":"2026-07-02T14:29:59.020Z"} @@ -194,23 +275,38 @@ {"cache_key":"9979d886403e24df60997801e043da82148173019f9df8141fce453200283ac0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goalNote","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Goal note","text_hash":"1afb7855a394ef7078728de1c804d6b995413db4eafe7d74190076cb9ed2c9f5","tgt_lang":"zh-TW","translated":"目標備註","updated_at":"2026-05-29T20:59:51.845Z"} {"cache_key":"99a41ad86108940067d4f9f76ab79dd780de0f0f6cb751e9e2b3625e79cab983","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSummary","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Summary: {summary}","text_hash":"3a2270b3cd47b523936c13efec489f36112e0a64fe763dbe972d21fef029e814","tgt_lang":"zh-TW","translated":"摘要:{summary}","updated_at":"2026-06-16T14:12:59.400Z"} {"cache_key":"9a391a8e8858d492a3810d7bee370589ad830ef61d2465d4dfa7b01a5c24ad84","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.runtime.cli","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"CLI","text_hash":"e759793341ff3757eaa76e814db0170ec13b6b0a988a742d9a81240c505f48ec","tgt_lang":"zh-TW","translated":"CLI","updated_at":"2026-07-06T08:41:48.829Z"} +{"cache_key":"9a3bdbef9cd085482d53ac771887f56e6695ab58555ebf8ec477bc46cf8f012a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.disabledSuccess","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Disabled {name}.","text_hash":"c79fcac3d65d64e82f59d0bb64cd1975f0847ea9cb50208b56ead551e706e54c","tgt_lang":"zh-TW","translated":"已停用 {name}。","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"9adb88a39cb20b0b01ee80fcb02882249f735a4ffd57077083cfd00c36a71e3d","model":"gpt-5","provider":"openai","segment_id":"codexSessions.subtitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"A read-only view of Codex sessions on this gateway and every connected computer that shares them.","text_hash":"ea7ea85488243bacdbe28edb2fba0617ec90ebcf587f8ecce6f62858ca85aed4","tgt_lang":"zh-TW","translated":"以唯讀方式查看此 Gateway 和所有已連線且啟用工作階段分享的電腦上的 Codex 工作階段。","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"9b598144b59bd4c5544201dafa4170984c21e16e8d0dcea21d5570e44ef7c1ff","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterConfiguredDefault","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{agent} (default)","text_hash":"7e996234f0fa55605720f9dc954a58411795bd882e948c87c739d43bd02137c3","tgt_lang":"zh-TW","translated":"{agent}(預設)","updated_at":"2026-06-17T14:13:17.815Z"} {"cache_key":"9ba9184d9ba805ed7d0a9265b9f36897fc56fc72ec32588ac8d0ae9033bb815f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateOlder","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Older","text_hash":"03281c889c2869e091390f9ad5dd13f0f0e46b42c9c4698f857902451deb3450","tgt_lang":"zh-TW","translated":"較舊","updated_at":"2026-07-05T14:39:31.777Z"} {"cache_key":"9bedafc1dc458e55b71ddc2b7a5d68def02deb9f41ff1743888a2069ae32e355","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.empty","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No background tasks yet.","text_hash":"e920d0a7849ab499c0eb22fe353bad656795e9a48c55e72edc58a04e2dff58b1","tgt_lang":"zh-TW","translated":"尚無背景任務。","updated_at":"2026-07-06T08:41:46.878Z"} +{"cache_key":"9caa72f9db7c610a6ef39b1ebb65a6c4add08ba4f3e2eb8ccd5a1f1bd82e80ac","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedReady","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Added {name}. New agent sessions can use it right away.","text_hash":"6e83577bc322cd89c4cff10d5809e54136075fcb9efce925fb9adc7fc2380695","tgt_lang":"zh-TW","translated":"已新增 {name}。新的代理工作階段可立即使用。","updated_at":"2026-07-10T05:21:53.040Z"} +{"cache_key":"9d073924230e406e445a8c7880e2463422942026fe03d33afa4a61b8610f89bb","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledSuccess","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Enabled {name}.","text_hash":"99ff502e7615921b3404dec6e8d6a213b731ece8cd8765ca618bea7a25994c90","tgt_lang":"zh-TW","translated":"已啟用 {name}。","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"9d07cbff76f703011d27e5f30c92200f51f7e9d2965faf59f2d478a0c0da48cb","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortSessions","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Sort sessions","text_hash":"6680f07d3df817d60180acbbc6e207689d28caaa27ac23749f93261b8111a38d","tgt_lang":"zh-TW","translated":"排序工作階段","updated_at":"2026-07-06T15:07:02.499Z"} +{"cache_key":"9d0ecdc732a3b38446148db31368bfec2a5a44500c88e9e86fc55c1bb03fb4df","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpServersGroup","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"MCP servers","text_hash":"22a7559f09bf8f82c510280f934bf50db4c45cc611fd4dd47d7cbf7c7d4f5b82","tgt_lang":"zh-TW","translated":"MCP 伺服器","updated_at":"2026-07-10T02:22:53.065Z"} +{"cache_key":"9d3abf26ec59f3f3d9e6e27bf45508d9f43b3b3fe5cd5344fe0e03d71758102d","model":"gpt-5.5","provider":"openai","segment_id":"tabs.plugins","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Plugins","text_hash":"9514b7ff4860ead73491768e45cce0ce20e6e3473a7b272e496c43c875d80ac5","tgt_lang":"zh-TW","translated":"外掛程式","updated_at":"2026-07-10T02:22:44.740Z"} {"cache_key":"9e28a47bf132b7ffd017f55a96a9d85f99aff5bc2491849a039e97d7f9a3e448","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.dateToday","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"zh-TW","translated":"今天","updated_at":"2026-07-05T14:39:31.777Z"} +{"cache_key":"9fe23203a70785ce79e515c9822345ef11b2532dbb2efdd15266837dda706076","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.available","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Available","text_hash":"e674447337e83c1346f6122ed69f35bf5526e2a11842b2f2b788f3fb67d714ca","tgt_lang":"zh-TW","translated":"可用","updated_at":"2026-07-10T02:22:56.441Z"} {"cache_key":"9fef17754bf65f1dc47ebe02a1b4ed804fcdfa45de89d9ee7e2b645cc5c7e586","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.badgeHeartbeat","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"heartbeat {age}","text_hash":"000637b3800ae069edbbe207cfad0a3f5037f06e9661ee89d70a1dfe6f404485","tgt_lang":"zh-TW","translated":"心跳 {age}","updated_at":"2026-06-17T14:13:23.259Z"} {"cache_key":"a111f4b4990f470fab42a780c89cd24f606ed4b24326e7f406dd7104845173a8","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomation","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Automation","text_hash":"d909750b1bbb71a39b6330ba8f81f4f8f6e889ed96d7ab366e74857909750c64","tgt_lang":"zh-TW","translated":"自動化","updated_at":"2026-06-16T14:12:59.400Z"} +{"cache_key":"a15d45a51024dacee7d0b4afa589c5bd0a58e641dfc0ba5f39bf70086ea70b7e","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameLabel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Name","text_hash":"dcd1d5223f73b3a965c07e3ff5dbee3eedcfedb806686a05b9b3868a2c3d6d50","tgt_lang":"zh-TW","translated":"名稱","updated_at":"2026-07-05T21:00:31.397Z"} +{"cache_key":"a33627140da60ee78952aed92aa202644bc483c32079f170a035afee2900da49","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchClawHubTitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Search ClawHub","text_hash":"b93a70717669740b783f73404ce9c1bcc4540afbd81959e851b0ac4b8a0fe958","tgt_lang":"zh-TW","translated":"搜尋 ClawHub","updated_at":"2026-07-10T02:22:44.740Z"} +{"cache_key":"a494dcf2d91754265b3ae5b368795b29d56d616526ec5f07f18ae4537689107a","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.plugins","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Install and manage optional capabilities.","text_hash":"61975da9493fce9ed5b684bbf3a300bc7a50b5a5c1866008fa35462f35cada6b","tgt_lang":"zh-TW","translated":"安裝並管理選用功能。","updated_at":"2026-07-10T02:22:44.740Z"} {"cache_key":"a51869c24096afe415b4608bcdb55b4908d163564f906e9a298c74d3de3cec45","model":"gpt-5.5","provider":"openai","segment_id":"tabs.tasks","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Tasks","text_hash":"b3a60e61a5233d0506ac737405a2a45280349683cac68722f18d0b73eb495ef4","tgt_lang":"zh-TW","translated":"任務","updated_at":"2026-07-06T08:41:46.878Z"} {"cache_key":"a61bd515e99db9340d14bb547b496ef99da2c517ec872dfbb6fec0a3d01f93df","model":"gpt-5.5","provider":"openai","segment_id":"nativeLinkMenu.copy","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Copy Link","text_hash":"724e78a3254c899d16ef6324a7abc9a8f5240ffce8bff74976df397c68ce9d78","tgt_lang":"zh-TW","translated":"複製連結","updated_at":"2026-07-09T11:02:38.494Z"} +{"cache_key":"a6bd290879d75464781db888fd6fa0ed65b2d975c51de591d4ec84544699f56d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.searchPlaceholder","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Search plugins","text_hash":"df08b7498d9a1be739b5bec4ec1205e5c9350f66faf66ce0b26784d94031ca73","tgt_lang":"zh-TW","translated":"搜尋外掛程式","updated_at":"2026-07-10T02:22:44.740Z"} {"cache_key":"a70fe70333817727bf583e057b19b3426ee1950056aeb0e5bf410132ea48a5a3","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.taskCountOne","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"1 task","text_hash":"cba293c13f302204af2ae5b202d80ea840fdf1cf7904d59e1a62efbadf1e5256","tgt_lang":"zh-TW","translated":"1 個任務","updated_at":"2026-07-06T08:41:46.878Z"} +{"cache_key":"a80291cff9d0f657538c6abc34d420d6fdf3bb1b0cc72e62dbfe037da147a3ee","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryMemory","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Memory","text_hash":"c3963aedaac6c83c04cf8fb997b479c61e66b3caeecfadd2f2d4bd5b0aef1778","tgt_lang":"zh-TW","translated":"記憶體","updated_at":"2026-07-10T02:22:53.065Z"} {"cache_key":"a82f5cd6a688c601e757b2a30520941a0c2c8f173a224ed6ab3ee881f2a2e3db","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.latestRunTokens","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Latest run tokens","text_hash":"969b6403862b70df744bc747c801663034a7837cd04b55973b7ee6c051e2e5ca","tgt_lang":"zh-TW","translated":"最新執行權杖","updated_at":"2026-07-05T10:15:56.105Z"} +{"cache_key":"a8452351a192a31c7dab544fcc9da064de92854eac11b9120ce0854bdf629b0b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"pluginsPage.menuDetails","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"View details","text_hash":"d1bf045bb524dae5b02c471c230958bcd1bf232d7a49367b1cdf977855a06b41","tgt_lang":"zh-TW","translated":"檢視詳細資料","updated_at":"2026-06-16T14:12:59.400Z"} {"cache_key":"a8f31af41e19ba668eb7707a51e9b607c155a60ff6b5a153057762771d8e2f60","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.cancelling","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Cancelling…","text_hash":"91b104db05da1b2d48c57a5aa60128f660e6572f89835ec858f6eb25b8f4af0f","tgt_lang":"zh-TW","translated":"正在取消…","updated_at":"2026-07-06T08:41:46.878Z"} {"cache_key":"a91a71a2f73b2030bf54d60b4932c6362c4c8e5e34b4859265e224d4ef091a19","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailNoNotes","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No operator notes yet.","text_hash":"497e07f47e33851483b6fb1254e88dc640d9fb25525c51f89934a7d39d7b2b9c","tgt_lang":"zh-TW","translated":"尚無操作員備註。","updated_at":"2026-06-16T14:13:10.175Z"} +{"cache_key":"a93abe3c92cb6226dfd99a0e40f2355500bb1e1a4453cac337a434ede79d4aed","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorMcpNote","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"One-click MCP server","text_hash":"8cde0953b66a21b3ac2a891e4ecc5e75be1442713ee2904457cba789e85fb72a","tgt_lang":"zh-TW","translated":"一鍵式 MCP 伺服器","updated_at":"2026-07-10T02:22:48.423Z"} {"cache_key":"aa556bfe98000ca7518d9332d394802128db838dedb9ac803ef3dbd10b0bad06","model":"claude-opus-4-8","provider":"anthropic","segment_id":"tasksPage.status.running","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Running","text_hash":"f4ccae29e1bb0c20a124570a1b43f4347ea94bba9f84ffdfddd9c7445b126128","tgt_lang":"zh-TW","translated":"執行中","updated_at":"2026-06-17T14:13:17.815Z"} {"cache_key":"aaf3a221ff14ba2addca3cb6c6aad1924822d53c3fadd0b9bcdd9f1bd4718f3e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.empty.subtitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Enable Codex session sharing on the gateway or a paired computer, then refresh this view.","text_hash":"608ae8a39625a0da1b6804480e57835af5a1e566af2095d11cca8bf0a6e421a9","tgt_lang":"zh-TW","translated":"請在 Gateway 或已配對的電腦上啟用 Codex 工作階段分享,然後重新整理此檢視。","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"ab06fbb9d8d974c976c4d5c0da4b57f0f0e4f52e02901f510e2beab725d000b1","model":"gpt-5.5","provider":"openai","segment_id":"workboard.eventProtocolViolation","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Protocol violation","text_hash":"367bb2052963f7d75beb672d3ca0430d7d49ac48a2759d578c7df933178fe564","tgt_lang":"zh-TW","translated":"通訊協定違規","updated_at":"2026-05-30T15:38:05.607Z"} +{"cache_key":"ab92f13e2c8a19849ed5008d32e3654b2b3f7c8b3debccbfdbaa4f032f140b82","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryTools","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Tools","text_hash":"ea93d6a262ecb87a9fa4d09edbd7654c046597936a8e235fc3949eb01775ff99","tgt_lang":"zh-TW","translated":"工具","updated_at":"2026-07-10T02:22:53.065Z"} +{"cache_key":"ac5b397c7307e600f5f3ea409b2a6576be1691b0973f50762064363150dead06","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statIssues","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Needs attention","text_hash":"c1ebc7817870e5be78fceae559ba5fcac2b68d5c5498d8080298004f3f79d62d","tgt_lang":"zh-TW","translated":"需要注意","updated_at":"2026-07-10T02:22:48.423Z"} {"cache_key":"ad05698a523ad41c6ffb3abf128f0c6f3786a58d7a74e5870b66fe48f0681847","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.connected","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Connected","text_hash":"22965568d22a14ee17af055d2870b50afcfe9fd94a83eec3196e266932297bb2","tgt_lang":"zh-TW","translated":"已連線","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"ae59f9b35fc65ecce65f628653789624cc04681992c07e71f3ff1f7c979df5cd","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.deleteGroupMenu","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Delete group…","text_hash":"996ee6f0d878196a0b88da2c0c3dc44c65428e3ffb7097d0ecae054154654675","tgt_lang":"zh-TW","translated":"刪除群組…","updated_at":"2026-07-06T23:40:44.295Z"} {"cache_key":"aefb073f8f38e50d1182670a27540652fdd7a4222ae5d0e100c54a98219b0598","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.activeSub","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Queued and running background work.","text_hash":"c5d1254fdacab64acf0c8203bf2f51758ec1c65fdf6c161d18c4fac92c4516a4","tgt_lang":"zh-TW","translated":"已佇列及執行中的背景工作。","updated_at":"2026-07-09T21:53:05.220Z"} @@ -220,10 +316,11 @@ {"cache_key":"b33dbacc1c8ddc6ae51dae89f65f656f597812be40dd160597bcfe0f48c9d076","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Realtime Talk requires browser microphone access.","text_hash":"e082e85327dc5d2905a34ca4ca60e76836f9b4d7e3b1834b821c81a9c456b39d","tgt_lang":"zh-TW","translated":"Realtime Talk 需要瀏覽器麥克風存取權限。","updated_at":"2026-07-06T17:56:07.837Z"} {"cache_key":"b39fd60c0abac153fcfbc0a09a2074511f958c619922f3f349ff65f79ac29e25","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.pairingQrExpired.reason","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Run /pair qr again to generate a fresh setup code.","text_hash":"876a304827f54ae5996c4e804aa72953f43568d31e8a15dd2a5b5a40d91c13d3","tgt_lang":"zh-TW","translated":"請再次執行 /pair qr 以產生新的設定碼。","updated_at":"2026-07-01T10:30:56.042Z"} {"cache_key":"b3bd5b5cd8c45898a1015723c722a7066b07174bf0da9626058d92eb3c4f1148","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.loadFailed","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Could not load tasks.","text_hash":"a4d24c89cb53e14f67055c1cdc6c0f98bca7e013ad8e533cabef5d276381e106","tgt_lang":"zh-TW","translated":"無法載入任務。","updated_at":"2026-07-06T08:41:46.878Z"} -{"cache_key":"b3e71f54f3e1f48153c02e08a06fa6ffc3570d9d8e739329e75e9c7f7c3463bb","model":"gpt-5.5","provider":"openai","segment_id":"chat.workspaceFiles.dockBottom","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Dock to the bottom","text_hash":"acaf4ae60031ae0f6ae96f17a943cd90dce40cf063154c5a3a42ad08dc47cb24","tgt_lang":"zh-TW","translated":"停駐到底部","updated_at":"2026-07-10T06:07:42.888Z"} {"cache_key":"b4df0e90f6cf93fd830dfb9e04a86d2609f9468da7dd9e6314343f82daade64c","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefresh5s","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"5s","text_hash":"93e3d8c5b10657d2884f177488b689aadf82a83f962237cb602b3314386ab3b7","tgt_lang":"zh-TW","translated":"5秒","updated_at":"2026-06-17T14:13:23.259Z"} +{"cache_key":"b558cc347ee393330e8d42dc34726c9ffe493de146b9dab9e8191962948f101b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removedRestart","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Removed {name}. A Gateway restart is required to apply the change.","text_hash":"7eec4a0f3f0ddc1d8bb7941fcb5d28293ccf49db0ffde037d426fa8c1a15b85f","tgt_lang":"zh-TW","translated":"已移除 {name}。需要重新啟動 Gateway 才能套用變更。","updated_at":"2026-07-10T02:22:56.441Z"} {"cache_key":"b56d8243bb1d796539d140436bce73f58f54c5a1006754acadadccae9777ee4f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.missing","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Missing","text_hash":"6be36ca49ee85210c5d1ad9c377d90a9859c66d889110a2a5b0dccd390d12e20","tgt_lang":"zh-TW","translated":"遺失","updated_at":"2026-06-16T14:13:16.738Z"} {"cache_key":"b5776f713f59ed5df96372f7a0ee861ee07c94efb198e8828513e55e25bdddc1","model":"claude-opus-4-8","provider":"anthropic","segment_id":"codexSessions.status.unknown","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Unknown","text_hash":"b764cdc0eab7137467211272fa539f1260d1bf2e71bcf6ff3bdc960f5c16aa14","tgt_lang":"zh-TW","translated":"未知","updated_at":"2026-06-16T14:13:10.175Z"} +{"cache_key":"b583df400e6fefdaa6f3befd4752ad128130ba06a904e3a6140f61728a4040d1","model":"gpt-5.5","provider":"openai","segment_id":"aboutPage.built","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Built","text_hash":"cfe0e6cbcf5cdd1aab44a39ab4d39713561bafab51fa7ff4654c980d5578ee5f","tgt_lang":"zh-TW","translated":"建置時間","updated_at":"2026-07-10T09:46:45.811Z"} {"cache_key":"b5980fafe5a080fbaaf78fb593803c0b6c9d8c3b1a97987c2f97b88ee75a50f0","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewPresetCount","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} cards","text_hash":"4b3e5442ebd2f839d45fddf95b2c2a18427dbd6ac06c8b57f9d9e996dcb73607","tgt_lang":"zh-TW","translated":"{count} 張卡片","updated_at":"2026-06-17T14:13:17.815Z"} {"cache_key":"b788b9b21f994c5dde870899d241c9d273537d412de24e05ae37b3ab6a7acd58","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesBlockedTitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Waiting on dependencies: {parents}.","text_hash":"50fb8f9b1326b69bd67d25583ddb4f70b9d75ae6e3ff8a9056a9361daa4b7d8b","tgt_lang":"zh-TW","translated":"等待相依項目:{parents}。","updated_at":"2026-06-16T14:13:10.175Z"} {"cache_key":"b7b5cc1656eb8a967089d68d2b5dad1f161597e859d1e6dc8a0cbc5f52da945d","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.readCount","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} read","text_hash":"b3c6c64f1153fb7b2672d2894f532d3f7adea1dd1c473363587fc520be35998e","tgt_lang":"zh-TW","translated":"{count} 個已讀取","updated_at":"2026-06-16T14:13:16.738Z"} @@ -232,6 +329,7 @@ {"cache_key":"b84e72a38aabb2284230a45953bd7538b0e0010a9da6e72c24149484add7e680","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.mcp","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"MCP servers, auth, tools, and diagnostics.","text_hash":"3eb7bf08a81e00ed41da1b60096320c5b90ff4d4e78b3f84ecd9ce45a62eaea1","tgt_lang":"zh-TW","translated":"MCP 伺服器、驗證、工具與診斷。","updated_at":"2026-05-31T05:36:31.990Z"} {"cache_key":"b85956299d75a80be03573d014caefcd79ae5354542c1d7c07a79cc0c07d4736","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.confirmDelete","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Snapshot and delete {name}?","text_hash":"3c3ee9b4dd86ac95d852528c6fd78c214c61cbb434f857051d8f0d73a615bd2f","tgt_lang":"zh-TW","translated":"要建立快照並刪除 {name} 嗎?","updated_at":"2026-07-05T21:00:31.397Z"} {"cache_key":"b9400a3eb48c20dda82c4fdc1debeed4c7605fb04f448e4cbee3556ab238eccf","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.cancelFailed","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Could not cancel the task.","text_hash":"604b3f1a92694f8b8ccf5cd07a47947d3cc1a4b6c0fd5719a36dba2ffbe38b17","tgt_lang":"zh-TW","translated":"無法取消該任務。","updated_at":"2026-07-06T08:41:46.878Z"} +{"cache_key":"b98a8bcf266824d2fed78e36f513593d51ae1c56ac1c809fd57104126f29ba24","model":"gpt-5","provider":"openai","segment_id":"pluginsPage.refresh","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"zh-TW","translated":"重新整理","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"ba01fd3066af4a191f6af7363c762c58a2805f31c408ab6ec0d1cdea433db7ed","model":"gpt-5","provider":"openai","segment_id":"codexSessions.summary.onlineHosts","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"online","text_hash":"f6fc84c9f21c24907d6bee6eec38cabab5fa9a7be8c4a7827fe9e56f245bd2d5","tgt_lang":"zh-TW","translated":"在線","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"bad90f5193fd4085041d69433704d0f0b0b2d9b5bd013504760b1fedc6056c8b","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailOperatorNotes","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Operator notes","text_hash":"7d2a121620cebfb9c4f6c0f82b693b75d65a4210b8232d77ef87e45fce334347","tgt_lang":"zh-TW","translated":"操作員備註","updated_at":"2026-06-16T14:12:59.400Z"} {"cache_key":"bb15588c973ce9ce76273d86e3aa27143842c226d5d0eb1ba165fdde10f8318e","model":"gpt-5","provider":"openai","segment_id":"codexSessions.untitled","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Untitled Codex session","text_hash":"c70b89c47992206d82993f9d295c9d3368a993fbc0899eef1bafb25277e5c88d","tgt_lang":"zh-TW","translated":"未命名的 Codex 工作階段","updated_at":"2026-07-09T10:01:43.713Z"} @@ -242,6 +340,8 @@ {"cache_key":"be6b1590029094dafcfef53b3b27bf4aeabbc26851596ab4ffc91d6415762822","model":"gpt-5.5","provider":"openai","segment_id":"subtitles.tasks","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Background tasks: subagents, cron runs, CLI.","text_hash":"86b1cdd143e0bee775431403456aa967dad1c7f0a952e10200c332d8ba382d35","tgt_lang":"zh-TW","translated":"背景任務:子代理、cron 執行、CLI。","updated_at":"2026-07-06T08:41:46.878Z"} {"cache_key":"bf6cd22d093ceb33e2ce995a234bbb8c2c4a8509c7e889c083a2224033f60a05","model":"gpt-5.5","provider":"openai","segment_id":"terminal.detached","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"detached","text_hash":"88e34e4cdbb5c6066cb1b0d0abe74714bd72f86259433bc8287614e4ae052605","tgt_lang":"zh-TW","translated":"已分離","updated_at":"2026-07-04T21:23:47.359Z"} {"cache_key":"bffed8728f756538e28717df9ac74271da13c0ab1491608221766b3f75061383","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.idle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Idle","text_hash":"ab0171ca0494d441cb6fe96e2efbe1c2a129f1d87cd6c17f03613cfd111149dd","tgt_lang":"zh-TW","translated":"閒置","updated_at":"2026-07-09T10:01:43.713Z"} +{"cache_key":"c0ba1589eb15437d31300901dfcd1ea07a60ae8d38330f8349364b3233078548","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeNamed","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Remove {name}","text_hash":"e6a3c4a1250a6ad3f10faa22333e5e50a6ba78e5b28a3b26f5743d9f8c7ede93","tgt_lang":"zh-TW","translated":"移除 {name}","updated_at":"2026-07-10T02:22:56.441Z"} +{"cache_key":"c0e4927064d6fba2c4bd5a086f9294bfb26776b72863b8a6dc7eae13fecd2d9d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.working","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Working…","text_hash":"5474eef8d0f179c707cf418e2bbb468c77cc24edc5e9f5f4e137e85e06a8eea0","tgt_lang":"zh-TW","translated":"處理中…","updated_at":"2026-07-10T04:28:07.910Z"} {"cache_key":"c1a5246dbc4879565438e3e13a508b5bf5fe7bd6bbb92b5761125e823203c963","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadingMore","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Loading…","text_hash":"ba3bbbe10d8bef66441c88536ce7b8e724e2829b59a3da658654f4961cd61ae5","tgt_lang":"zh-TW","translated":"正在載入…","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"c2b2d7476857ba2c76bf4af5fc6d0bbf8d93921250580da64b5acc9314a8dd23","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.lastDays","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} days","text_hash":"e9f0a85930cc6fa61b7ac01763893020adc4c712d1b8e8897bdd13971637d529","tgt_lang":"zh-TW","translated":"{count} 天","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"c2b674c569aa61cd0608286bf9e7a2cf3582e40f9a59151a99b2e8054f2fcc1f","model":"claude-opus-4-8","provider":"anthropic","segment_id":"skillWorkshop.header.useCurrentChatTooltip","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Send revision requests to the current chat session instead of the proposal's workshop session.","text_hash":"9db782d40e88750d4faed33c8a73c24552070f101483881c60af8cf446c674a6","tgt_lang":"zh-TW","translated":"將修訂請求傳送至目前的對話工作階段,而非提案的工作坊工作階段。","updated_at":"2026-06-16T14:12:59.400Z"} @@ -250,10 +350,15 @@ {"cache_key":"c38e20ce158639649de7b4ea479cc4b1d764fcbefcbe7a2a56d4e591797dd315","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailWorkerProtocol","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Worker protocol","text_hash":"e445d823cfa48c4e8fa1d8854771e9939955e772428be6d7957deec0f7968764","tgt_lang":"zh-TW","translated":"Worker 通訊協定","updated_at":"2026-06-16T14:12:59.400Z"} {"cache_key":"c3e187d9e145c316c81e980cc61c7f3c1c20993690b0b0952b5b44819d0edd79","model":"gpt-5","provider":"openai","segment_id":"codexSessions.refresh","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Refresh","text_hash":"0e91610117029a62a478b7fa7df0b8598bebe3ab1e192d4b1882e310719c9671","tgt_lang":"zh-TW","translated":"重新整理","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"c40752a1bede44892603dced6ccd915360de537f3e3b2ca3e80fd2af2607eed0","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.moveToGroup","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Move session to a group","text_hash":"7db4b663aebb86158b454c49ad05115941c0411cb8ed6182bdc8fd5840f32dff","tgt_lang":"zh-TW","translated":"將工作階段移至群組","updated_at":"2026-07-05T14:39:31.777Z"} +{"cache_key":"c48acf757c4ec75006895d63b6f6cd81996446720ab5724243767a3434a84322","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.official","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Official","text_hash":"c409c66f71f2750e0262d81f0816938f6b8b1ffccb55fc59a4a6c5c8aae81c1e","tgt_lang":"zh-TW","translated":"官方","updated_at":"2026-07-10T02:22:56.441Z"} {"cache_key":"c48c7d799b543a342fa538d5c79ef9aa42fbad99e293a01ce5d5daf907ad8724","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loadMore","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Load more","text_hash":"ac8991ef01019cf55a2426194a05959e0cb886333f1a332ff4f442320d165400","tgt_lang":"zh-TW","translated":"載入更多","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"c4f580e24572d82a2cadd8a21b7ad97605ecb7af6caca59206bdfabe2da273b3","model":"gpt-5.5","provider":"openai","segment_id":"chat.splitView.dropSplit","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Split","text_hash":"32afaa784333648025e24b162bece7474051bcaaa29e98e19922b400b4ceb04b","tgt_lang":"zh-TW","translated":"分割","updated_at":"2026-07-06T22:56:14.610Z"} +{"cache_key":"c5affff7796b12aac9b21f72421e1b21f9e9bfec302723f8355ae5953e640d35","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.offlineTitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Gateway offline","text_hash":"8a6ec210c09d2e1d4ac87b7f3a52f81dc631392f5e51a56b6e3452479e7f87dc","tgt_lang":"zh-TW","translated":"Gateway 離線","updated_at":"2026-07-10T02:22:56.441Z"} +{"cache_key":"c5f1333207a9b2833218fe9d644d31e8fe52c18496cb6b8c71cd4dac0007da67","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noClawHubResultsBody","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"ClawHub has no results for “{query}”.","text_hash":"0b7099e769d1f2e1443eacf05cac27104c6ace1a392c7a5b16f32c50a4ef4d68","tgt_lang":"zh-TW","translated":"ClawHub 沒有「{query}」的結果。","updated_at":"2026-07-10T02:22:44.740Z"} {"cache_key":"c606380bc4dea275475ee0c807ede479a8e24e62f2250ad49397bf9d2d27fc5e","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.ungrouped","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Ungrouped","text_hash":"674b38cae72bb0c8be97cea114f7ce84a6ad4ae3c7f3ceb0c869d62db8e53fa2","tgt_lang":"zh-TW","translated":"未分組","updated_at":"2026-07-05T14:39:31.777Z"} +{"cache_key":"c661833e52d2ef68a254f55f74aa486471e86adc47d18485c26d0811ef568156","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.global","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Global","text_hash":"a258b30f88c30650e73073d5bdde5cfcc6987100ae62d37789e5c46a0d85b7c6","tgt_lang":"zh-TW","translated":"全域","updated_at":"2026-07-10T02:22:56.441Z"} {"cache_key":"c8ce8b5c67380606b4ca689bff8bfeb5a5bc9cc59ea635a7bfadf7e01d50aba2","model":"gpt-5.5","provider":"openai","segment_id":"tabs.worktrees","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Worktrees","text_hash":"aec2f93d67b7c4c5fd9b94042f33299f7a0e55cdcb7e8e35feb9d0f6da697f3d","tgt_lang":"zh-TW","translated":"Worktrees","updated_at":"2026-07-05T21:00:31.397Z"} +{"cache_key":"ca02290a5da85733003f81798ca77e4e4c29ba15aca6494afd10126d64e3f927","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsHint","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"One-click MCP connectors and hand-picked ClawHub searches for popular services.","text_hash":"828377405933c20c7e04ca0de6918f915e81394d435f44618ce8bd23e7ef3f11","tgt_lang":"zh-TW","translated":"一鍵式 MCP 連接器,以及為熱門服務精選的 ClawHub 搜尋。","updated_at":"2026-07-10T02:22:48.423Z"} {"cache_key":"ca7ad66b2d95356baadb06d6ea27654e57cfbb7e5629fbdb229e07b50515f1fc","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneBusy","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Microphone inputs are busy or unavailable to the browser.","text_hash":"9f33c30cb2370916f2edd079ad5cabab6a94dd185a89f4f7db357b4f31d1f3dd","tgt_lang":"zh-TW","translated":"麥克風輸入正忙碌或無法供瀏覽器使用。","updated_at":"2026-07-06T17:56:07.837Z"} {"cache_key":"ca9adde6fc13d0029370766c3bc831523fc1acb907bb574167caba7ffdb0135f","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.restorable","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Restorable","text_hash":"bc97d2ddd2dba3ab2391f21314316556111065c4b870bc05679fadd60a754c01","tgt_lang":"zh-TW","translated":"可還原","updated_at":"2026-07-05T21:00:31.397Z"} {"cache_key":"cc8f904ae107279b6f91f3f1f5bc1f883fbde60ea912cc48a6c06223528e0ceb","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupByAgent","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Agent","text_hash":"11b39c93777e8f1f3983bdba7c72b22fe68cfea20c677e9de53e17cb7dbfb19f","tgt_lang":"zh-TW","translated":"代理程式","updated_at":"2026-07-05T14:39:31.777Z"} @@ -262,10 +367,14 @@ {"cache_key":"ce5214fe23d8002c579e5a7edec36a6951351fbde63a67d029612901b8aee6ba","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.microphoneListUnsupported","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"This browser cannot list microphone inputs.","text_hash":"fa99f66cc346509afe8c5e3437ad299409a60be69d8b2b70138d8c42176052d9","tgt_lang":"zh-TW","translated":"此瀏覽器無法列出麥克風輸入。","updated_at":"2026-07-06T17:56:07.837Z"} {"cache_key":"cf4e3394a5987940d5291fdc17aa2ec16879c7cc092331651b68900552d4ea08","model":"gpt-5.5","provider":"openai","segment_id":"chat.toolCards.toolError","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Tool error","text_hash":"a6c64c286a8795034ac5030b74633d3b476b5375e094485698b982879b0bb617","tgt_lang":"zh-TW","translated":"工具錯誤","updated_at":"2026-05-31T06:43:46.257Z"} {"cache_key":"d082cf53a732e9463630017b5e5b86b179258b9517e2c7b302e97863a918cabd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.refreshError","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Refresh failed","text_hash":"8fa7e6d90bef4e5cb735233347bf6a71b5b30d96e7c1a50b73f10cb441b275c2","tgt_lang":"zh-TW","translated":"重新整理失敗","updated_at":"2026-06-17T14:13:23.259Z"} +{"cache_key":"d0e04edf529af067313e8fb40c99851ebda63776bbb5f2bc87ce5d80ea52e23d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameTaken","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"An MCP server named “{name}” already exists.","text_hash":"32cef939d87970acbaf7a2dbc668f06f2e6f78f3e2f21252f66eb6a4148477cd","tgt_lang":"zh-TW","translated":"名為「{name}」的 MCP 伺服器已存在。","updated_at":"2026-07-10T02:22:53.065Z"} {"cache_key":"d21266b46185b9c51ff6acc9419e27272c57b07b55a6cb720f26756788f20e35","model":"gpt-5","provider":"openai","segment_id":"codexSessions.status.notLoaded","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Stored","text_hash":"91da9626894c82dd4d5ed7ab48ed4ed4b1fc57ff98858cde93945254e36c4198","tgt_lang":"zh-TW","translated":"已儲存","updated_at":"2026-07-09T10:01:43.713Z"} +{"cache_key":"d364f76601f9d45d3eeea92dee9da7f5e39cbe2f420df0eab76aca724df9b140","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enableNamed","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Enable {name}","text_hash":"dd01fc045da3bbf286494b66561c74d4e5e7ea1295a99bbd69dafb34d647928b","tgt_lang":"zh-TW","translated":"啟用 {name}","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"d38bddaa0dad1fb2012ad091012b944d3787c8326c3b9568fa6fbd16bfee55a4","model":"gpt-5.5","provider":"openai","segment_id":"common.colorModeOption","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Color mode: {mode}","text_hash":"d5b61a3af66f845d2ab32795685ca0b37889374de15f66ae3f848abf83169a43","tgt_lang":"zh-TW","translated":"顏色模式:{mode}","updated_at":"2026-07-07T08:47:22.567Z"} +{"cache_key":"d43539078516c26b061dd20f8ad53262398ea1d08b647d6ac63c52f7ab4a931d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.included","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Included","text_hash":"ba829a98b799408899294035fa50f73daa14b204e672049da9697d5b3e8d5757","tgt_lang":"zh-TW","translated":"已包含","updated_at":"2026-07-10T02:22:56.441Z"} {"cache_key":"d4a6c06bfdfedcffd1b6e7ad155ea4138c82ffa07146a06a5747b8b69310a82d","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.goal","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Goal","text_hash":"cdbf6975e8a35b0d03558be6822dfae166482c24fb86b0433f60e8167f5c91e4","tgt_lang":"zh-TW","translated":"目標","updated_at":"2026-05-29T20:59:51.845Z"} {"cache_key":"d4d75b25cc45edbdf0c1553d3da4155766e8382192a68bf06890e4a13a70d3ca","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.contextUsageApprox","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"~{percent}% of context used ({used} / {context} tokens, approximate)","text_hash":"54007077673048ad26ff220971d2598fde53a34c33da9e1eaca0927ce80b2708","tgt_lang":"zh-TW","translated":"已使用約 {percent}% 的上下文({used} / {context} 個 token,約略值)","updated_at":"2026-07-09T07:40:29.417Z"} +{"cache_key":"d51cd71a05b6cce7a7304d27953a1b8ec1c698d28dd6234e7edafbac644b970a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectToChange","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Connect to the gateway to change plugins.","text_hash":"efb27b6789946620b3228c2eebe4f532c570a606d7812ae6f4bb23973ec0c809","tgt_lang":"zh-TW","translated":"連線到 Gateway 以變更外掛程式。","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"d698788abe9c34100cf12047af2dc88415bcd58514e1834b94fdb152a2004059","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.disconnected","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Connect to the gateway to load and manage tasks.","text_hash":"f809605f626a2f8eeff5c864a30e78d538a878ec5de7934f21d60bc01b81f125","tgt_lang":"zh-TW","translated":"連線至 Gateway 以載入並管理任務。","updated_at":"2026-07-06T08:41:46.878Z"} {"cache_key":"d7e37c29f5d68135f382d36dc064472a98fe594ce6a70fc5a3f7c02d94051f8e","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.estimatedCost","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Est. cost","text_hash":"3199f14286736527bfc6ad9165629415a5aa087517acd2c0e9b1ae8bb5d26766","tgt_lang":"zh-TW","translated":"預估費用","updated_at":"2026-07-05T16:00:06.097Z"} {"cache_key":"d850899057ac1e583498793ba5ea9d62fe586c2ba8dc39681dccff2a59db48dd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailProof","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Proof","text_hash":"7fbb3ccf9640651f69af3626de6836fb302a0a088c7cd27721c367b8b530e502","tgt_lang":"zh-TW","translated":"證明","updated_at":"2026-06-16T14:12:59.400Z"} @@ -273,8 +382,10 @@ {"cache_key":"d92258d6c8d1491219a65f844b2fc4e3efc7a714602fc1ceef0bf41662c7e8cf","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.requests","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} requests","text_hash":"1e23ff6956124091cd470f5091cee8108c3766314b69871b3ff792eaf506455f","tgt_lang":"zh-TW","translated":"{count} 個請求","updated_at":"2026-07-06T06:40:15.357Z"} {"cache_key":"d9d3a7b83e5aab70ef62035ba8803d7efeb28755d6e53f88a4e3075ddca8f827","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.status","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Status","text_hash":"920e413c7d411b61ef3e8c63b1cb6ad058d5f95f8b481dbafe60248387d8c355","tgt_lang":"zh-TW","translated":"狀態","updated_at":"2026-07-05T21:00:31.397Z"} {"cache_key":"dad14b4854ecbd2f8afc7bf6c30f20ba0b8f35409d9c6463c1c41be586ef8dc1","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupBy","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Group by","text_hash":"956a51f6b098a41b7c3108015f0790bb24af7693717b07cee39d5df6a5da1826","tgt_lang":"zh-TW","translated":"分組依據","updated_at":"2026-07-05T14:39:31.777Z"} +{"cache_key":"db0fbc5138d256c5e7b5e9d26a2db1f9808970abb50908fc934eae4cc0d2a480","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.adminRequired","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Browsing only. Plugin changes require operator.admin access.","text_hash":"9bdfa8a1a4f69ffcf32f4c383d330b9303a0683772f84e3b749aecdef367c4fc","tgt_lang":"zh-TW","translated":"僅供瀏覽。外掛程式變更需要 operator.admin 存取權。","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"db1226d21f6389282bf00466ab686fc8c8c9db2cd43592526d2b3656c7b8b6ec","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.openUsage","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Open usage dashboard","text_hash":"bae5e40b055c195a780a0dc06042d60353da51ab582610096c5cb0d269484c00","tgt_lang":"zh-TW","translated":"開啟用量儀表板","updated_at":"2026-07-09T11:48:50.643Z"} {"cache_key":"dbcf383778e5ebc132bbd307e5ac1f3f73927d0b969a9d6cdddd14ee4eb0a54a","model":"gpt-5","provider":"openai","segment_id":"codexSessions.host.gateway","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Gateway","text_hash":"41ed52921661c7f0d68d92511589cc9d7aaeab2b5db49fb27f0be336cbfdb7df","tgt_lang":"zh-TW","translated":"Gateway","updated_at":"2026-07-09T10:01:43.713Z"} +{"cache_key":"dcf6901dbd9eba8e6ac311d4dae450ca7f4938ba1e21af66d2bcbf504c0c3516","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpTargetLabel","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"URL or command","text_hash":"4e49fdb8abf994ea306ebecc12b9b95ea244bd6f81b363a1db8e0ec2c0cb57ce","tgt_lang":"zh-TW","translated":"URL 或命令","updated_at":"2026-07-10T02:22:53.065Z"} {"cache_key":"dd6c8b887e21fe8684c4b65597d2f73112d5ce20dc21fd3e8c3b7aec77de67cb","model":"gpt-5.5","provider":"openai","segment_id":"cron.summary.scheduler","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Scheduler","text_hash":"d3a27d96cd0791a2b2161ed5cf5e3b5c0d360d05070e7bf6bf0e45d4e5a8f264","tgt_lang":"zh-TW","translated":"排程器","updated_at":"2026-07-09T21:53:05.220Z"} {"cache_key":"de30a91cd96b0c6054b0d6430b4e87693b5f85f443fcee040ece1fa617582706","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.viewReview","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Review","text_hash":"aff0766a5290e117b8433c351bae7b7b23bed682b2369bd822d88a647cc58512","tgt_lang":"zh-TW","translated":"審查","updated_at":"2026-06-17T14:13:17.815Z"} {"cache_key":"de54436908f6d2fd9df0c009a66b27614fc3f0ea242b416d07b12aabd6700d26","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentCurrentUnconfigured","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{agent} (not configured)","text_hash":"d138ab0079dea760c723d7c947d0c31178252e28e7dd70a40b9d3d85e5549b1d","tgt_lang":"zh-TW","translated":"{agent}(未設定)","updated_at":"2026-06-17T14:13:17.815Z"} @@ -291,35 +402,48 @@ {"cache_key":"e5f6fbe3d35a05fda47d9aa5cacc8e1ce5574d625b5aaa920b85559a43785a83","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterVisitsOff","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Never visits","text_hash":"4892012cb692f089af106c0533e80e3ce3331a7ff839bd2a1416a286cc85c6e8","tgt_lang":"zh-TW","translated":"從不來訪","updated_at":"2026-07-09T20:51:21.978Z"} {"cache_key":"e69bbdd9df33ab895e53778ce3f8f4e1e65fcb08d8527be16d27ed7f01b25f7e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.autoRefreshOff","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Off","text_hash":"ca7981b46ecf2c1787b6d76d81d9fd7fa0ca95842e2fcc2a452869891a9334d1","tgt_lang":"zh-TW","translated":"關閉","updated_at":"2026-06-17T14:13:17.815Z"} {"cache_key":"e6ae7651c8fd279ed69f2c40d56b56b696daf9302431a98290f5f54d683a8ac9","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.unpinSession","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Unpin session","text_hash":"f4c582ee4d7a87bf069d05a49bb0211759d3db8366daab4ba7024425961af5dc","tgt_lang":"zh-TW","translated":"取消釘選工作階段","updated_at":"2026-07-02T14:29:59.020Z"} +{"cache_key":"e6b8753892d7f95147daedf0fbff28dfdc01a4dc0e8e9fe0d4d7b0b8c4bc976d","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.statInstalled","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Installed","text_hash":"f8b32f4e92bd84ce1fcd177bec17d43093de3ee8303bb40c1b9ea521ed6a70f6","tgt_lang":"zh-TW","translated":"已安裝","updated_at":"2026-07-10T02:22:48.423Z"} {"cache_key":"e7586e1763a46aa0c60aba4d2041d7085a725af507ebefd3bc4cbf507a669c24","model":"claude-opus-4-6","provider":"anthropic","segment_id":"chat.composer.realtimeTalkRequiresMicrophone","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Realtime voice input requires browser microphone access.","text_hash":"a70d86265802e30aac70647cde33c62c5386741941d2ea9f54636a0242109dcd","tgt_lang":"zh-TW","translated":"即時語音輸入需要瀏覽器麥克風存取權限。","updated_at":"2026-07-06T22:41:51.388Z"} {"cache_key":"e989b932f7e9fa4b9a2899b262071a4e56f537ef10bb7406025363f78e18fb8b","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.active","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Active","text_hash":"92340695899bd2d86223e4a007620e0d6502fc0e08809773634c7e0743764a9c","tgt_lang":"zh-TW","translated":"進行中","updated_at":"2026-07-06T08:41:46.878Z"} +{"cache_key":"e98c40e596d3c98484a3f4a1db3728fdecbee85aaaacb389d3500e54c22fbd13","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailPackage","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Package","text_hash":"59de121db1b8145e4c974543653fd48e1d6667b41160f5a393270c9c0f7852c3","tgt_lang":"zh-TW","translated":"套件","updated_at":"2026-07-10T04:28:07.910Z"} {"cache_key":"e9988e477c8d4af18134f8cf365500e393e00099c63e0cdcd80b6bcf51e4d55e","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.search","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Search files","text_hash":"179fed85ec50a433bb23932745d18f1ade2f84a6ebe145b0025ed3ce5f89fd5a","tgt_lang":"zh-TW","translated":"搜尋檔案","updated_at":"2026-06-16T14:13:16.738Z"} -{"cache_key":"e9c4d6526957bfbe909d1566ff9dd600781bfa5ea29aae4271e7748fc8c1e439","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterdexSeen","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{seen}/{total} visited","text_hash":"e256f4f2c8acf9532195feecb6268817520de975b7e7e6d02c346126c660f556","tgt_lang":"zh-TW","translated":"已造訪 {seen}/{total}","updated_at":"2026-07-09T23:55:44.406Z"} {"cache_key":"ea19450c08adfe2b3310d66e9570afe87f91399bbe3a0b0a115c3a88be15c413","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.newGroup","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"New group…","text_hash":"ce58c189f2045434c28a50c9875a7362d28c79fb34d4b365c09f59180ca2712a","tgt_lang":"zh-TW","translated":"新增群組…","updated_at":"2026-07-05T14:39:31.777Z"} {"cache_key":"eb1cc6412192b655a08bf7487b10178f19fdf1bb43cdfa8918224bec515f5d40","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.today","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Today","text_hash":"2b065c7c9ce466e5ebcad757987d5d660ee4c9ea708bc62c43444b53334738ba","tgt_lang":"zh-TW","translated":"今天","updated_at":"2026-07-05T14:39:31.777Z"} {"cache_key":"eb2f53c8c7ec2fadd7ff92828d314da255664c15c900ba8f2ce06694630a60be","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAutomationSkills","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Skills: {skills}","text_hash":"4788d5f9db66e1421a762bbd942c64450c73d2145a6ef929ce32a919a0f2e3a1","tgt_lang":"zh-TW","translated":"Skills:{skills}","updated_at":"2026-06-16T14:12:59.400Z"} {"cache_key":"eb5efd0a9c5046ef786387b7aa0cd5cb3f0b8cd872fa1d44dd01df149b109225","model":"gpt-5.5","provider":"openai","segment_id":"usage.providerUsage.topModels","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Top models","text_hash":"79489561d9efe32b89add781323318355ae49e3d71f9c5a45a34c21825778663","tgt_lang":"zh-TW","translated":"熱門模型","updated_at":"2026-07-06T06:40:15.357Z"} +{"cache_key":"eb6311a679d83c30e17fa459b9532957c70e04be3ad057ad5fe8e874d520c431","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.removeConfirm","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Remove this plugin?","text_hash":"f91ee570e954b92163f67bf2b37b20236e213fbee3ee1e0046a9ece5b998c4a8","tgt_lang":"zh-TW","translated":"要移除此外掛程式嗎?","updated_at":"2026-07-10T02:22:56.441Z"} +{"cache_key":"eb7f9c3fec32a1b71ef9c41765303bd527d24cc91c0ce17a081d56c5797698fc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedOauth","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Added {name}. Authenticate with “{command}”, then restart the gateway.","text_hash":"6c4d1b65932fdc0ff9aa0ceb2c8ce7f54dc4a410b5c5499354b44bb7f7dd5a96","tgt_lang":"zh-TW","translated":"已新增 {name}。使用「{command}」進行驗證,然後重新啟動 gateway。","updated_at":"2026-07-10T02:22:48.423Z"} {"cache_key":"eb9fef190cd93a65269f1022faabbf1a43a6266c2110cd5dea2728d0ef99e945","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitFiveHour","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"5-hour limit","text_hash":"26d04fad786b1e3a08fd957ec893b0457b72a2926da0ee63847aea9037951d24","tgt_lang":"zh-TW","translated":"5 小時限制","updated_at":"2026-07-09T11:48:50.643Z"} {"cache_key":"ebc88b7b4ea809cbb95681c81ec701aeb5d72d86526f22e6454329ccefcd90bd","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailTask","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Gateway task","text_hash":"6696e7c592238747dd39d7ba000db600a92f843add73ee90b028c72a2dfd37dd","tgt_lang":"zh-TW","translated":"Gateway 任務","updated_at":"2026-06-16T14:12:59.400Z"} {"cache_key":"eca2bd878e2ec5e890154a50cc31ee958df8db43898e9b6fc4a373740056b4e0","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.open","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Open context usage details","text_hash":"8765adde14aebe600e7c9c69196c5b4a9ccc654802a94626d0391d9eaed725b1","tgt_lang":"zh-TW","translated":"開啟上下文使用詳細資料","updated_at":"2026-07-05T10:15:56.105Z"} {"cache_key":"ed5b13f86ba6754ba9c9320b591b7f4dab51f0a76f3d1b10a90fffac13eb8b10","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassignedHelp","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Cards without an explicit agent.","text_hash":"f716a36252b33511df056fe7d1092be598eca17ea76bedc5d6d3532ec6b0ffea","tgt_lang":"zh-TW","translated":"未明確指派代理人的卡片。","updated_at":"2026-06-17T14:13:17.815Z"} {"cache_key":"eeab87134e31ac0db534306fa8784c3618002e0dff86d9d2c3dd91cf348d5ca4","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.artifacts","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Artifacts","text_hash":"314ae71b8c8dc9c952f0ffc58e35e6d9a41b5cf4756471c7cab0c9476cd5d20b","tgt_lang":"zh-TW","translated":"成品","updated_at":"2026-06-16T14:13:16.738Z"} {"cache_key":"eed32ebc5baa6dfcde013b4bf8110246759661ff9dc0cf2749c0bf6ed08ddf36","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.limitDaily","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Daily limit","text_hash":"1e4ce9cd955f07b1b79cddb1bec9df28d4033d4238c0e54b0b766239133afc8c","tgt_lang":"zh-TW","translated":"每日限制","updated_at":"2026-07-09T11:48:50.643Z"} +{"cache_key":"f04fa6e613355a47c923a87b00162b72139b0f75262aa7bfbff15a2b120b96d1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailCategory","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Category","text_hash":"292c06f0045a45d044be282b132b7055ae224e18e02b523a451d8ea96fadfd24","tgt_lang":"zh-TW","translated":"類別","updated_at":"2026-07-10T04:28:07.910Z"} {"cache_key":"f08ffbf66802ffd513e8dcdc0e9ef73aa9305902441f45c93c28270c02be1708","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.title","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Context usage details","text_hash":"0e04e44654b5a2abf769dcd2f82a32e0501a41689d6635d7f718978c160958f0","tgt_lang":"zh-TW","translated":"上下文使用詳細資料","updated_at":"2026-07-05T10:15:56.105Z"} {"cache_key":"f0a11a5e96a6cd9f0a67c23de6242a71436f69ef1a64dec39dbf0f69704ee2d6","model":"gpt-5","provider":"openai","segment_id":"codexSessions.title","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Sessions across your computers","text_hash":"23b30c777a12daeb3e5471cd51530189b621db9fdec4e6ea976e5a97516fac22","tgt_lang":"zh-TW","translated":"所有電腦上的工作階段","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"f1fc51b55dc6e3f5a6ab83f0bf252d3b941dd99ec72b1d6d3c64c3b272c14d3a","model":"claude-opus-4-8","provider":"anthropic","segment_id":"chat.workspaceFiles.browserCount","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} shown","text_hash":"e57b4adfe868fd74a183650103d820176d4960bd0bdb677d9985db09f9752867","tgt_lang":"zh-TW","translated":"已顯示 {count} 個","updated_at":"2026-06-16T14:13:16.738Z"} +{"cache_key":"f32e2d423669973aba1e26fd3fec6d7e7e994c2a1975da5bc54274040273ddc1","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryContextEngine","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Context engines","text_hash":"88383a5cf96392ee24d5b6d14f93a540b8277099f50a76a6639fc198678dfeb1","tgt_lang":"zh-TW","translated":"情境引擎","updated_at":"2026-07-10T02:22:53.065Z"} +{"cache_key":"f4125818823e5dd6470aab4e21d11265248f40081f619e4b83de3816a66f731b","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.categoryProviders","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Model providers","text_hash":"fbdc457db2188277572ebe37cb288af1d0737e4f61d7180a2c0de75c5ca9e428","tgt_lang":"zh-TW","translated":"模型供應商","updated_at":"2026-07-10T02:22:53.065Z"} +{"cache_key":"f433811b3416b7348b1f1ec86febd5b05e4574bbc7de1f9bd1f61977c7e11006","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.mcpNameInvalid","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Server names use letters, numbers, dots, dashes, or underscores.","text_hash":"4180827391e3dd8f91f9425912850efb413bb14e16ea7d84d69f2ddfc7854f9f","tgt_lang":"zh-TW","translated":"伺服器名稱可使用字母、數字、句點、破折號或底線。","updated_at":"2026-07-10T02:22:53.065Z"} {"cache_key":"f5202fcb93fa9677f6b334efdd05538a9404245381a2bab3a1a9444c9cabd982","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.resets","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Resets {time}","text_hash":"5a0f8c1b2755ee505e02e19fadc7377ad48df63cc7d3399c20228fe3edc37cb1","tgt_lang":"zh-TW","translated":"{time} 重設","updated_at":"2026-07-09T11:48:50.643Z"} {"cache_key":"f5d1f922c846ba4d8cbb864e1a790945e8d13feb67fc8fe60c90bbe02dc285fa","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailAddNote","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Add note","text_hash":"63565c0485fec4f743719849734553a5d7947f5962ec9e831e3bce131b3c47fb","tgt_lang":"zh-TW","translated":"新增備註","updated_at":"2026-06-16T14:13:10.175Z"} {"cache_key":"f5dfebffaf445b574685fda80f52b609123bc67bfe73bc674763c4c71a938497","model":"gpt-5.5","provider":"openai","segment_id":"worktrees.actions","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Actions","text_hash":"ff8059dc6752afdd30d275932b1d5031a2ec854b387a8c57ecc6689915293a43","tgt_lang":"zh-TW","translated":"操作","updated_at":"2026-07-05T21:00:31.397Z"} +{"cache_key":"f69c62bd382779f81450d0cc1088df11b4bc3a099eaa6ee2bfdc6dba6405348a","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.configRefreshFailed","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Could not refresh Control UI configuration: {error}","text_hash":"f891ede32107ed16155caa1b9000babfd85461eadeaf62c6a1fc94baca22d563","tgt_lang":"zh-TW","translated":"無法重新整理 Control UI 設定:{error}","updated_at":"2026-07-10T02:23:00.400Z"} +{"cache_key":"f6feb5dfb88c9a5d701c1da21f403e60b41ed290fb52ffb807e1cbd7e958ac60","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorAddedEndpoint","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Added {name}. Update the endpoint and credentials in MCP settings before use.","text_hash":"d6749b024612bd4b38efcde4caedf40a2e047939dc4a0be5434d4b679ba8354b","tgt_lang":"zh-TW","translated":"已新增 {name}。使用前請在 MCP 設定中更新端點與認證資料。","updated_at":"2026-07-10T02:22:48.423Z"} {"cache_key":"f725cc564ca677916917da2b7c52b1769a1588dfef4e9bb5f26eb3f75fcfbb82","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.agentFilterUnassigned","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Unassigned (uses {agent})","text_hash":"2700af0c4ab5e86726f72a723ecdf50370b87690db35f00b83723d6457879c8e","tgt_lang":"zh-TW","translated":"未指派(使用 {agent})","updated_at":"2026-06-17T14:13:17.814Z"} {"cache_key":"f7572a09c157f969a2b7c81023fbbe3078ec606f3fe951ac483b4dbb8fcc7fa5","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.healthStale","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"stale","text_hash":"a03f2386ae06b21109577020844df367857b72c2fcce384c1896fed98a89c82b","tgt_lang":"zh-TW","translated":"過時","updated_at":"2026-06-17T14:13:23.259Z"} +{"cache_key":"f793fbaf2dc4d6d9307af35c59d34f5c50525774c918a4193fa8be191ee433dc","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.noInstalledMatchTitle","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"No installed plugins match","text_hash":"c5634d2fb49cf8b12f169103dbe1e25853f94cb737402630e538bd0baea36cb1","tgt_lang":"zh-TW","translated":"沒有相符的已安裝外掛","updated_at":"2026-07-10T02:22:48.423Z"} +{"cache_key":"f90fc43a00223f5e88889440c3e5a0e5a4baf3de1059c9c493fec98850b9413c","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.enabledRestart","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Enabled {name}. A Gateway restart is required to apply the change.","text_hash":"083874feeadefa0eb380551b0f3050737c11bd8d667747d7e8ec6a185a35ff01","tgt_lang":"zh-TW","translated":"已啟用 {name}。需要重新啟動 Gateway 才能套用變更。","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"f92d8c5d7be48c8e2ca2faecbddeb1b5207640c9164f842d22750898857f5265","model":"gpt-5.5","provider":"openai","segment_id":"tasksPage.recent","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Recent","text_hash":"690dbe9dc0993c4256683738fc3fd541cfa96f60d299be33343615dd58179d93","tgt_lang":"zh-TW","translated":"最近","updated_at":"2026-07-06T08:41:46.878Z"} {"cache_key":"f9d70c811b055a8d009c8841adde028b717e8f455d6070f1e4fb1ea8f656e85f","model":"gpt-5.5","provider":"openai","segment_id":"sessionsView.groupRowCount","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} sessions","text_hash":"27de9b3be346a2abd2cb67f9f93abfe8100d7ce996e1204b75fc84670c7818e6","tgt_lang":"zh-TW","translated":"{count} 個工作階段","updated_at":"2026-07-05T14:39:31.777Z"} {"cache_key":"fa8bba1879d16d57e83bf973617f7e384f8a4425d3562bbb2d2e366118d4f9bf","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.loadingMicrophones","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Loading microphones…","text_hash":"042a481c407f31b97b0cc8ff4e6c8b8f3f6e85d798cba8549c348d6d33a9945c","tgt_lang":"zh-TW","translated":"正在載入麥克風…","updated_at":"2026-07-06T17:33:33.517Z"} {"cache_key":"fae21f57902d46cec227ed9783d0aca914b2d0354c4081087df4ebe3ce7cf633","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.detailDiagnostics","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Diagnostics","text_hash":"268f14bbfe119c1e92150583af960a086d7db9619a097f8aa72ff6779842f610","tgt_lang":"zh-TW","translated":"診斷","updated_at":"2026-06-16T14:12:59.400Z"} {"cache_key":"faf20e1aa5f83985cdcadceb345bc3616c355ab9dc86aff3cbd4973930dbde0c","model":"gpt-5","provider":"openai","segment_id":"codexSessions.threadId","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Thread","text_hash":"5373c7f8a5a69019e959540ef127be3302afdd5e2313244e6d08cbd5e975d06d","tgt_lang":"zh-TW","translated":"執行緒","updated_at":"2026-07-09T10:01:43.713Z"} +{"cache_key":"fb908769c6fe679fb097979ab68b79017f590b0de29df959d2a32f004fd0172f","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.connectorsGroup","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Connect your world","text_hash":"5936f0296a1716ced3d9a1b8635599b1bbe23743beb51b3f8c0c6cce97456cba","tgt_lang":"zh-TW","translated":"連接你的世界","updated_at":"2026-07-10T02:22:48.423Z"} {"cache_key":"fbab9f22e08085b3fce1b0cc82547c65d206e1f2b402c3e9235e56200e610ebf","model":"gpt-5","provider":"openai","segment_id":"codexSessions.loading","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Loading Codex sessions…","text_hash":"18a71c76786db89f928536e164096422e68e86db86fa3684bc3644f36df70300","tgt_lang":"zh-TW","translated":"正在載入 Codex 工作階段…","updated_at":"2026-07-09T10:01:43.713Z"} {"cache_key":"fc674a3b686d207ed844d070088891a332ddecc90ec837b7b17ab4d776fc8311","model":"gpt-5.5","provider":"openai","segment_id":"chat.sidebar.sortBy","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Sort by","text_hash":"c9129025bd3ff6522a7eeebc1abf1481f36e4ac9d74524a473ac1c3be1c6fc2f","tgt_lang":"zh-TW","translated":"排序依據","updated_at":"2026-07-06T23:40:44.295Z"} {"cache_key":"fc692a69e2adb5a42f774a5adde96dd42dd90a3b96312c263af731c4ed699872","model":"claude-opus-4-8","provider":"anthropic","segment_id":"workboard.dependenciesReady","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{count} ready","text_hash":"f5f5fd424d7c18f19a51ee147857efddc320a0ec6e1eeb4354be129425632f05","tgt_lang":"zh-TW","translated":"{count} 個就緒","updated_at":"2026-06-16T14:13:10.175Z"} +{"cache_key":"fd880748c77384447e93d9b41288fbff4c00c02765d8bea15f1bba39dd4609d0","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.detailClose","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Close","text_hash":"7d9eb7acb13e24625c404401d8e88b2350e32162455885f18276cf802f7701ed","tgt_lang":"zh-TW","translated":"關閉","updated_at":"2026-07-10T04:28:07.910Z"} +{"cache_key":"fdef83783477804f3dd6fd12d3e42c94ebd950614552ffdb24a50113ea12fce2","model":"gpt-5.5","provider":"openai","segment_id":"pluginsPage.installedSuccess","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Installed {name}.","text_hash":"df61aa5dc714024732fb99ff6889ff87115652ec9ebaf8f68ddd9323bc17044e","tgt_lang":"zh-TW","translated":"已安裝 {name}。","updated_at":"2026-07-10T02:23:00.400Z"} {"cache_key":"fe0ef7f21689b09072dc40a097bdc7f6b69f465221a8fa01f3674661fddb1075","model":"gpt-5.5","provider":"openai","segment_id":"chat.composer.contextUsage.budgetValue","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"{used} of {limit}","text_hash":"e191398f92416f35cb6279f7206d2b67cdee04ce46932a1ece17c8c18ca3636e","tgt_lang":"zh-TW","translated":"{used} / {limit}","updated_at":"2026-07-09T11:48:50.643Z"} -{"cache_key":"ff1bb7ee4c7e7149b5d57514c8a291c2a125787143ac153f0074e5a8378e849a","model":"gpt-5.5","provider":"openai","segment_id":"quickSettings.appearance.lobsterSoundsOff","source_path":"ui/src/i18n/locales/zh-TW.ts","src_lang":"en","text":"Silent","text_hash":"ddbcf06726488a43af36838754808ac5041b05ab6434735615979d820725b56f","tgt_lang":"zh-TW","translated":"靜音","updated_at":"2026-07-10T04:49:49.836Z"} diff --git a/ui/src/i18n/locales/ar.ts b/ui/src/i18n/locales/ar.ts index d93d97add757..6612f29a566f 100644 --- a/ui/src/i18n/locales/ar.ts +++ b/ui/src/i18n/locales/ar.ts @@ -536,6 +536,7 @@ export const ar: TranslationMap = { cron: "مهام Cron", tasks: "المهام", skills: "Skills", + plugins: "المكوّنات الإضافية", skillWorkshop: "ورشة Skills", nodes: "العقد", chat: "الدردشة", @@ -566,6 +567,7 @@ export const ar: TranslationMap = { cron: "الإيقاظات والتشغيلات المتكررة.", tasks: "مهام الخلفية: الوكلاء الفرعيون، تشغيلات cron، CLI.", skills: "Skills ومفاتيح API.", + plugins: "ثبّت الإمكانات الاختيارية وأدرها.", skillWorkshop: "راجع المقترحات وحسّنها وطبّقها قبل أن تصبح مهارات نشطة.", nodes: "الأجهزة المقترنة والأوامر.", chat: "دردشة Gateway للتدخلات السريعة.", @@ -576,27 +578,139 @@ export const ar: TranslationMap = { automation: "الأوامر، والخطافات، وcron، والمكونات الإضافية.", mcp: "خوادم MCP، والمصادقة، والأدوات، والتشخيصات.", infrastructure: "إعدادات Gateway، والويب، والمتصفح، والوسائط.", - about: "هوية إصدار Control UI وGateway المتصل.", + about: "هوية بناء Control UI وGateway المتصل.", aiAgents: "الوكلاء، والنماذج، والمهارات، والأدوات، والذاكرة، والجلسة.", debug: "اللقطات، والأحداث، وRPC.", logs: "سجلات Gateway المباشرة.", dreams: "حلم الذاكرة، والدمج، والتأمل.", plugin: "لوحة مقدمة من المكوّن الإضافي.", }, + pluginsPage: { + searchLabel: "البحث في المكوّنات الإضافية", + searchPlaceholder: "البحث في المكوّنات الإضافية", + browseClawHub: "تصفّح ClawHub", + refresh: "تحديث", + tablistLabel: "كتالوج المكوّنات الإضافية", + installedTab: "المثبّتة", + discoverTab: "اكتشاف", + tryAgain: "حاول مرة أخرى", + loading: "جارٍ تحميل المكوّنات الإضافية…", + searching: "جارٍ البحث في ClawHub…", + fromClawHub: "من ClawHub", + noClawHubResultsBody: "لا توجد في ClawHub نتائج عن “{query}”.", + noDiscoverMatchTitle: "لا يوجد ما يطابق في الاكتشاف", + featuredGroup: "مميّزة", + officialGroup: "المكونات الإضافية الرسمية", + connectorsGroup: "اربط عالمك", + connectorsHint: "موصلات MCP بنقرة واحدة وعمليات بحث منتقاة بعناية في ClawHub للخدمات الشائعة.", + connectorGroupWork: "العمل والإنتاجية", + connectorGroupDev: "البرمجة والبنية التحتية", + connectorGroupHome: "المنزل والوسائط", + connectorGroupLife: "الحياة اليومية", + connectorMcpNote: "خادم MCP بنقرة واحدة", + connectorClawHubNote: "مكونات إضافية مجتمعية على ClawHub", + connectorAdd: "إضافة", + connectorSearch: "البحث في ClawHub", + connectorAdded: "تمت الإضافة", + connectorAddedOauth: "تمت إضافة {name}. صادِق باستخدام “{command}”، ثم أعد تشغيل Gateway.", + connectorAddedEndpoint: + "تمت إضافة {name}. حدّث نقطة النهاية وبيانات الاعتماد في إعدادات MCP قبل الاستخدام.", + connectorAddedReady: "تمت إضافة {name}. يمكن لجلسات الوكيل الجديدة استخدامه فورًا.", + noInstalledTitle: "لا توجد مكونات إضافية اختيارية مثبتة", + noInstalledBody: "اكتشف مكونًا إضافيًا مميزًا أو ابحث في ClawHub لتوسيع OpenClaw.", + noInstalledMatchTitle: "لا توجد مكونات إضافية مثبتة مطابقة", + noMatchBody: "جرّب بحثًا مختلفًا.", + filterAll: "الكل", + filterIssues: "المشكلات", + filterLabel: "تصفية المكونات الإضافية المثبتة", + pulseLabel: "{enabled} مفعّل، {disabled} معطّل، {issues} به مشكلات", + categoryChannels: "القنوات", + categoryProviders: "موفرو النماذج", + categoryMemory: "الذاكرة", + categoryContextEngine: "محركات السياق", + categoryTools: "الأدوات", + categoryOther: "أخرى", + mcpServersGroup: "خوادم MCP", + mcpSettingsLink: "إعدادات MCP", + mcpHint: + "اربط خوادم Model Context Protocol لمنح وكيلك أدوات إضافية. تنطبق التغييرات على جلسات الوكيل الجديدة.", + mcpAdd: "إضافة خادم", + mcpAdding: "جارٍ الإضافة…", + mcpEmpty: "لم يتم تكوين أي خوادم MCP بعد. أضف واحدًا هنا أو اختر موصّلًا من Discover.", + mcpNameLabel: "الاسم", + mcpTargetLabel: "عنوان URL أو أمر", + mcpNameInvalid: "تستخدم أسماء الخوادم أحرفًا وأرقامًا ونقاطًا وشرطات أو شرطات سفلية.", + mcpTargetInvalid: "أدخل عنوان URL بنظام http(s) أو سطر أوامر.", + mcpNameTaken: "يوجد بالفعل خادم MCP باسم “{name}”.", + mcpMissing: "لم يتم العثور على خادم MCP “{name}” في التكوين.", + mcpAddedSuccess: "تمت إضافة خادم MCP {name}.", + mcpRemovedSuccess: "تمت إزالة خادم MCP {name}.", + mcpConfigUnavailable: "التكوين غير متاح؛ حدّث الصفحة وحاول مرة أخرى.", + remove: "إزالة", + removing: "جارٍ الإزالة…", + removeNamed: "إزالة {name}", + removeConfirm: "هل تريد إزالة هذا المكوّن الإضافي؟", + cancel: "إلغاء", + removedRestart: "تمت إزالة {name}. يلزم إعادة تشغيل Gateway لتطبيق التغيير.", + verifiedSource: "مصدر موثّق", + menuLabel: "إجراءات {name}", + menuDetails: "عرض التفاصيل", + enableAction: "تمكين", + disableAction: "تعطيل", + working: "جارٍ العمل…", + detailClose: "إغلاق", + detailOrigin: "المصدر", + detailCategory: "الفئة", + detailPackage: "الحزمة", + detailPluginId: "معرّف المكوّن الإضافي", + offlineTitle: "Gateway غير متصل", + offlineBody: "اتصل لتصفّح المكوّنات الإضافية المثبّتة والموصى بها.", + optionalCapability: "إمكانية اختيارية في OpenClaw.", + enabled: "مفعّل", + disabled: "معطّل", + available: "متاح", + needsAttention: "يتطلب الانتباه", + included: "مضمّن", + global: "عام", + workspace: "مساحة العمل", + config: "التكوين", + official: "رسمي", + codePlugin: "مكوّن إضافي برمجي", + bundlePlugin: "حزمة المكوّن الإضافي", + unavailable: "غير متاح", + install: "تثبيت", + installing: "جارٍ التثبيت…", + installNamed: "تثبيت {name}", + enableNamed: "تمكين {name}", + disableNamed: "تعطيل {name}", + acknowledgeRisk: "الإقرار بالمخاطر والتثبيت", + defaultRiskWarning: "راجع تحذير ClawHub قبل تثبيت هذا المكوّن الإضافي.", + connectToChange: "اتصل بـ Gateway لتغيير المكوّنات الإضافية.", + adminRequired: "تصفّح فقط. تتطلب تغييرات المكوّنات الإضافية صلاحية operator.admin.", + changesDisabled: "تصفّح فقط. لا يسمح هذا Gateway بتغييرات المكوّنات الإضافية.", + configRefreshFailed: "تعذّر تحديث تكوين Control UI: {error}", + installedSuccess: "تم تثبيت {name}.", + installedRestart: "تم تثبيت {name}. يلزم إعادة تشغيل Gateway لتطبيق التغيير.", + enabledSuccess: "تم تمكين {name}.", + enabledRestart: "تم تمكين {name}. يلزم إعادة تشغيل Gateway لتطبيق التغيير.", + disabledSuccess: "تم تعطيل {name}.", + disabledRestart: "تم تعطيل {name}. يلزم إعادة تشغيل Gateway لتطبيق التغيير.", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "الهوية المضمّنة عند إنشاء نسخة المتصفح هذه.", - artifactDetails: "تفاصيل إصدار Control UI", + artifactSubtitle: "الهوية المضمّنة عند بناء هذا الأثر للمتصفح.", + artifactDetails: "تفاصيل بناء Control UI", version: "الإصدار", - commit: "الالتزام", - built: "تاريخ البناء", + commit: "Commit", + built: "تم البناء", unavailable: "غير متاح", - copyCommit: "نسخ تجزئة الالتزام الكاملة", - copyingCommit: "جارٍ نسخ تجزئة الالتزام", - copiedCommit: "تم نسخ تجزئة الالتزام", - copyCommitFailed: "تعذّر نسخ تجزئة الالتزام", + copyCommit: "نسخ تجزئة Commit الكاملة", + copyingCommit: "جارٍ نسخ تجزئة Commit", + copiedCommit: "تم نسخ تجزئة Commit", + copyCommitFailed: "تعذّر نسخ تجزئة Commit", gatewayVersion: "إصدار Gateway المتصل", - gatewayVersionHint: "يُبلّغ عنه اتصال Gateway النشط، وهو منفصل عن إصدار Control UI هذا.", + gatewayVersionHint: + "يتم الإبلاغ عنه بواسطة اتصال Gateway النشط؛ وهو منفصل عن بناء Control UI هذا.", }, profilePage: { offline: "اتصل بـ Gateway للقاء وكيلك.", @@ -1167,6 +1281,7 @@ export const ar: TranslationMap = { sessions: "الجلسات", scheduled: "مجدولة", skills: "Skills", + plugins: "المكوّنات الإضافية", settings: "الإعدادات", agents: "الوكلاء", shellCommand: "أمر Shell", diff --git a/ui/src/i18n/locales/de.ts b/ui/src/i18n/locales/de.ts index cec983207397..7013958d8536 100644 --- a/ui/src/i18n/locales/de.ts +++ b/ui/src/i18n/locales/de.ts @@ -541,6 +541,7 @@ export const de: TranslationMap = { cron: "Cron-Aufgaben", tasks: "Aufgaben", skills: "Skills", + plugins: "Plugins", skillWorkshop: "Skill Workshop", nodes: "Geräte", chat: "Chat", @@ -571,6 +572,7 @@ export const de: TranslationMap = { cron: "Aufweckzeiten und wiederkehrende Agent-Läufe planen.", tasks: "Hintergrundaufgaben: Subagents, Cron-Läufe, CLI.", skills: "Skill-Verfügbarkeit und API-Schlüsselinjektion verwalten.", + plugins: "Optionale Funktionen installieren und verwalten.", skillWorkshop: "Vorschläge prüfen, verfeinern und anwenden, bevor sie zu aktiven Skills werden.", nodes: "Gekoppelte Geräte, Fähigkeiten und Befehlsfreigabe.", @@ -582,27 +584,149 @@ export const de: TranslationMap = { automation: "Befehle, Hooks, Cron und Plugins.", mcp: "MCP-Server, Authentifizierung, Tools und Diagnosen.", infrastructure: "Gateway-, Web-, Browser- und Medieneinstellungen.", - about: "Build-Identität der Control UI und des verbundenen Gateways.", + about: "Control UI und verbundene Gateway-Build-Identität.", aiAgents: "Agenten, Modelle, Skills, Tools, Speicher, Sitzung.", debug: "Gateway-Snapshots, Ereignisse und manuelle RPC-Aufrufe.", logs: "Live-Verfolgung der Gateway-Protokolldateien.", dreams: "Speicherkonsolidierung im Schlaf.", plugin: "Vom Plugin bereitgestelltes Panel.", }, + pluginsPage: { + searchLabel: "Plugins suchen", + searchPlaceholder: "Plugins suchen", + browseClawHub: "ClawHub durchsuchen", + refresh: "Aktualisieren", + tablistLabel: "Plugin-Katalog", + installedTab: "Installiert", + discoverTab: "Entdecken", + tryAgain: "Erneut versuchen", + loading: "Plugins werden geladen…", + searching: "ClawHub wird durchsucht…", + fromClawHub: "Von ClawHub", + noClawHubResultsBody: "ClawHub hat keine Ergebnisse für „{query}“.", + noDiscoverMatchTitle: "Keine passenden Entdeckungen", + featuredGroup: "Empfohlen", + officialGroup: "Offizielle Plugins", + connectorsGroup: "Verbinde deine Welt", + connectorsHint: + "MCP-Connectors mit einem Klick und kuratierte ClawHub-Suchen für beliebte Dienste.", + connectorGroupWork: "Arbeit & Produktivität", + connectorGroupDev: "Programmierung & Infrastruktur", + connectorGroupHome: "Zuhause & Medien", + connectorGroupLife: "Alltag", + connectorMcpNote: "MCP-Server mit einem Klick", + connectorClawHubNote: "Community-Plugins auf ClawHub", + connectorAdd: "Hinzufügen", + connectorSearch: "Auf ClawHub suchen", + connectorAdded: "Hinzugefügt", + connectorAddedOauth: + "{name} hinzugefügt. Authentifiziere dich mit „{command}“ und starte anschließend das Gateway neu.", + connectorAddedEndpoint: + "{name} hinzugefügt. Aktualisiere vor der Verwendung den Endpunkt und die Zugangsdaten in den MCP-Einstellungen.", + connectorAddedReady: "{name} hinzugefügt. Neue Agent-Sitzungen können es sofort verwenden.", + noInstalledTitle: "Keine optionalen Plugins installiert", + noInstalledBody: + "Entdecke ein empfohlenes Plugin oder durchsuche ClawHub, um OpenClaw zu erweitern.", + noInstalledMatchTitle: "Keine installierten Plugins gefunden", + noMatchBody: "Versuche es mit einer anderen Suche.", + filterAll: "Alle", + filterIssues: "Probleme", + filterLabel: "Installierte Plugins filtern", + pulseLabel: "{enabled} aktiviert, {disabled} deaktiviert, {issues} mit Problemen", + categoryChannels: "Kanäle", + categoryProviders: "Modellanbieter", + categoryMemory: "Speicher", + categoryContextEngine: "Kontext-Engines", + categoryTools: "Tools", + categoryOther: "Sonstiges", + mcpServersGroup: "MCP-Server", + mcpSettingsLink: "MCP-Einstellungen", + mcpHint: + "Verbinden Sie Model Context Protocol-Server, um Ihrem Agenten zusätzliche Tools bereitzustellen. Änderungen gelten für neue Agentensitzungen.", + mcpAdd: "Server hinzufügen", + mcpAdding: "Wird hinzugefügt…", + mcpEmpty: + "Noch keine MCP-Server konfiguriert. Fügen Sie hier einen hinzu oder wählen Sie einen Connector in Discover aus.", + mcpNameLabel: "Name", + mcpTargetLabel: "URL oder Befehl", + mcpNameInvalid: + "Servernamen dürfen Buchstaben, Zahlen, Punkte, Bindestriche oder Unterstriche enthalten.", + mcpTargetInvalid: "Geben Sie eine http(s)-URL oder eine Befehlszeile ein.", + mcpNameTaken: "Ein MCP-Server mit dem Namen „{name}“ existiert bereits.", + mcpMissing: "MCP-Server „{name}“ wurde in der Konfiguration nicht gefunden.", + mcpAddedSuccess: "MCP-Server {name} hinzugefügt.", + mcpRemovedSuccess: "MCP-Server {name} entfernt.", + mcpConfigUnavailable: + "Konfiguration ist nicht verfügbar; aktualisieren Sie und versuchen Sie es erneut.", + remove: "Entfernen", + removing: "Wird entfernt…", + removeNamed: "{name} entfernen", + removeConfirm: "Dieses Plugin entfernen?", + cancel: "Abbrechen", + removedRestart: + "{name} wurde entfernt. Ein Neustart der Gateway ist erforderlich, um die Änderung anzuwenden.", + verifiedSource: "Verifizierte Quelle", + menuLabel: "{name}-Aktionen", + menuDetails: "Details anzeigen", + enableAction: "Aktivieren", + disableAction: "Deaktivieren", + working: "Wird ausgeführt…", + detailClose: "Schließen", + detailOrigin: "Quelle", + detailCategory: "Kategorie", + detailPackage: "Paket", + detailPluginId: "Plugin-ID", + offlineTitle: "Gateway offline", + offlineBody: "Verbinden Sie sich, um installierte und empfohlene Plugins zu durchsuchen.", + optionalCapability: "Optionale OpenClaw-Funktion.", + enabled: "Aktiviert", + disabled: "Deaktiviert", + available: "Verfügbar", + needsAttention: "Erfordert Aufmerksamkeit", + included: "Enthalten", + global: "Global", + workspace: "Arbeitsbereich", + config: "Konfiguration", + official: "Offiziell", + codePlugin: "Code-Plugin", + bundlePlugin: "Plugin bündeln", + unavailable: "Nicht verfügbar", + install: "Installieren", + installing: "Wird installiert…", + installNamed: "{name} installieren", + enableNamed: "{name} aktivieren", + disableNamed: "{name} deaktivieren", + acknowledgeRisk: "Risiko bestätigen und installieren", + defaultRiskWarning: "Prüfen Sie die ClawHub-Warnung, bevor Sie dieses Plugin installieren.", + connectToChange: "Verbinden Sie sich mit dem Gateway, um Plugins zu ändern.", + adminRequired: "Nur Durchsuchen. Plugin-Änderungen erfordern operator.admin-Zugriff.", + changesDisabled: "Nur Durchsuchen. Dieses Gateway lässt keine Plugin-Änderungen zu.", + configRefreshFailed: "Control UI-Konfiguration konnte nicht aktualisiert werden: {error}", + installedSuccess: "{name} installiert.", + installedRestart: + "{name} installiert. Ein Neustart des Gateway ist erforderlich, um die Änderung anzuwenden.", + enabledSuccess: "{name} aktiviert.", + enabledRestart: + "{name} aktiviert. Ein Neustart des Gateway ist erforderlich, um die Änderung anzuwenden.", + disabledSuccess: "{name} deaktiviert.", + disabledRestart: + "{name} deaktiviert. Ein Neustart des Gateway ist erforderlich, um die Änderung anzuwenden.", + }, aboutPage: { artifactTitle: "Control UI", artifactSubtitle: "Identität, die beim Erstellen dieses Browser-Artefakts eingebettet wurde.", artifactDetails: "Build-Details der Control UI", - version: "Versionsnummer", - commit: "Commit-Hash", + version: "Version", + commit: "Commit", built: "Erstellt", unavailable: "Nicht verfügbar", copyCommit: "Vollständigen Commit-Hash kopieren", copyingCommit: "Commit-Hash wird kopiert", copiedCommit: "Commit-Hash kopiert", copyCommitFailed: "Commit-Hash konnte nicht kopiert werden", - gatewayVersion: "Version des verbundenen Gateways", - gatewayVersionHint: "Vom aktiven Gateway gemeldet; unabhängig von diesem Build der Control UI.", + gatewayVersion: "Version der verbundenen Gateway", + gatewayVersionHint: + "Gemeldet von der aktiven Gateway-Verbindung; getrennt von diesem Control UI-Build.", }, profilePage: { offline: "Verbinde dich mit der Gateway, um deinen Agenten kennenzulernen.", @@ -1186,6 +1310,7 @@ export const de: TranslationMap = { sessions: "Sitzungen", scheduled: "Geplant", skills: "Skills", + plugins: "Plugins", settings: "Einstellungen", agents: "Agenten", shellCommand: "Shell-Befehl", diff --git a/ui/src/i18n/locales/en.ts b/ui/src/i18n/locales/en.ts index 76beb5970a4a..7fc3111ade4b 100644 --- a/ui/src/i18n/locales/en.ts +++ b/ui/src/i18n/locales/en.ts @@ -535,6 +535,7 @@ export const en: TranslationMap = { cron: "Cron Jobs", tasks: "Tasks", skills: "Skills", + plugins: "Plugins", skillWorkshop: "Skill Workshop", nodes: "Nodes", chat: "Chat", @@ -565,6 +566,7 @@ export const en: TranslationMap = { cron: "Wakeups and recurring runs.", tasks: "Background tasks: subagents, cron runs, CLI.", skills: "Skills and API keys.", + plugins: "Install and manage optional capabilities.", skillWorkshop: "Review, refine, and apply proposals before they become live skills.", nodes: "Paired devices and commands.", chat: "Gateway chat for quick interventions.", @@ -582,6 +584,118 @@ export const en: TranslationMap = { dreams: "Memory dreaming, consolidation, and reflection.", plugin: "Plugin-provided panel.", }, + pluginsPage: { + searchLabel: "Search plugins", + searchPlaceholder: "Search plugins and ClawHub", + browseClawHub: "Browse ClawHub", + refresh: "Refresh", + tablistLabel: "Plugin catalog", + installedTab: "Installed", + discoverTab: "Discover", + tryAgain: "Try again", + loading: "Loading plugins…", + searching: "Searching ClawHub…", + fromClawHub: "From ClawHub", + noClawHubResultsBody: "ClawHub has no results for “{query}”.", + noDiscoverMatchTitle: "Nothing to discover matches", + featuredGroup: "Featured", + officialGroup: "Official plugins", + connectorsGroup: "Connect your world", + connectorsHint: + "One-click MCP connectors and hand-picked ClawHub searches for popular services.", + connectorGroupWork: "Work & productivity", + connectorGroupDev: "Coding & infrastructure", + connectorGroupHome: "Home & media", + connectorGroupLife: "Everyday life", + connectorMcpNote: "One-click MCP server", + connectorClawHubNote: "Community plugins on ClawHub", + connectorAdd: "Add", + connectorSearch: "Find on ClawHub", + connectorAdded: "Added", + connectorAddedOauth: "Added {name}. Authenticate with “{command}”, then restart the gateway.", + connectorAddedEndpoint: + "Added {name}. Update the endpoint and credentials in MCP settings before use.", + connectorAddedReady: "Added {name}. New agent sessions can use it right away.", + noInstalledTitle: "No optional plugins installed", + noInstalledBody: "Discover a featured plugin or search ClawHub to extend OpenClaw.", + noInstalledMatchTitle: "No installed plugins match", + noMatchBody: "Try a different search.", + filterAll: "All", + filterIssues: "Issues", + filterLabel: "Filter installed plugins", + pulseLabel: "{enabled} enabled, {disabled} disabled, {issues} with issues", + categoryChannels: "Channels", + categoryProviders: "Model providers", + categoryMemory: "Memory", + categoryContextEngine: "Context engines", + categoryTools: "Tools", + categoryOther: "Other", + mcpServersGroup: "MCP servers", + mcpSettingsLink: "MCP settings", + mcpHint: + "Connect Model Context Protocol servers to give your agent extra tools. Changes apply to new agent sessions.", + mcpAdd: "Add server", + mcpAdding: "Adding…", + mcpEmpty: "No MCP servers configured yet. Add one here or pick a connector from Discover.", + mcpNameLabel: "Name", + mcpTargetLabel: "URL or command", + mcpNameInvalid: "Server names use letters, numbers, dots, dashes, or underscores.", + mcpTargetInvalid: "Enter an http(s) URL or a command line.", + mcpNameTaken: "An MCP server named “{name}” already exists.", + mcpMissing: "MCP server “{name}” was not found in the configuration.", + mcpAddedSuccess: "Added MCP server {name}.", + mcpRemovedSuccess: "Removed MCP server {name}.", + mcpConfigUnavailable: "Configuration is unavailable; refresh and try again.", + remove: "Remove", + removing: "Removing…", + removeNamed: "Remove {name}", + removeConfirm: "Remove this plugin?", + cancel: "Cancel", + removedRestart: "Removed {name}. A Gateway restart is required to apply the change.", + verifiedSource: "Verified source", + menuLabel: "{name} actions", + menuDetails: "View details", + enableAction: "Enable", + disableAction: "Disable", + working: "Working…", + detailClose: "Close", + detailOrigin: "Source", + detailCategory: "Category", + detailPackage: "Package", + detailPluginId: "Plugin ID", + offlineTitle: "Gateway offline", + offlineBody: "Connect to browse installed and recommended plugins.", + optionalCapability: "Optional OpenClaw capability.", + enabled: "Enabled", + disabled: "Disabled", + available: "Available", + needsAttention: "Needs attention", + included: "Included", + global: "Global", + workspace: "Workspace", + config: "Config", + official: "Official", + codePlugin: "Code plugin", + bundlePlugin: "Bundle plugin", + unavailable: "Unavailable", + install: "Install", + installing: "Installing…", + installNamed: "Install {name}", + enableNamed: "Enable {name}", + disableNamed: "Disable {name}", + acknowledgeRisk: "Acknowledge risk and install", + defaultRiskWarning: "Review the ClawHub warning before installing this plugin.", + connectToChange: "Connect to the gateway to change plugins.", + adminRequired: "Browsing only. Plugin changes require operator.admin access.", + changesDisabled: "Browsing only. This gateway does not allow plugin changes.", + configRefreshFailed: "Could not refresh Control UI configuration: {error}", + installedSuccess: "Installed {name}.", + installedRestart: "Installed {name}. A Gateway restart is required to apply the change.", + enabledSuccess: "Enabled {name}.", + enabledRestart: "Enabled {name}. A Gateway restart is required to apply the change.", + disabledSuccess: "Disabled {name}.", + disabledRestart: "Disabled {name}. A Gateway restart is required to apply the change.", + }, aboutPage: { artifactTitle: "Control UI", artifactSubtitle: "Identity embedded when this browser artifact was built.", @@ -1172,6 +1286,7 @@ export const en: TranslationMap = { sessions: "Sessions", scheduled: "Scheduled", skills: "Skills", + plugins: "Plugins", settings: "Settings", agents: "Agents", shellCommand: "Shell Command", diff --git a/ui/src/i18n/locales/es.ts b/ui/src/i18n/locales/es.ts index 5e25ac63f8a4..c85850939789 100644 --- a/ui/src/i18n/locales/es.ts +++ b/ui/src/i18n/locales/es.ts @@ -538,6 +538,7 @@ export const es: TranslationMap = { cron: "Tareas Cron", tasks: "Tareas", skills: "Skills", + plugins: "Plugins", skillWorkshop: "Taller de Skills", nodes: "Nodos", chat: "Chat", @@ -568,6 +569,7 @@ export const es: TranslationMap = { cron: "Programar despertares y ejecuciones recurrentes de agentes.", tasks: "Tareas en segundo plano: subagentes, ejecuciones de cron, CLI.", skills: "Gestionar disponibilidad de habilidades e inyección de claves API.", + plugins: "Instala y gestiona capacidades opcionales.", skillWorkshop: "Revisa, perfecciona y aplica propuestas antes de que se conviertan en Skills activas.", nodes: "Dispositivos emparejados, capacidades y exposición de comandos.", @@ -579,28 +581,145 @@ export const es: TranslationMap = { automation: "Comandos, hooks, cron y plugins.", mcp: "Servidores MCP, autenticación, herramientas y diagnósticos.", infrastructure: "Configuración de Gateway, web, navegador y medios.", - about: "Identidad de compilación de Control UI y del Gateway conectado.", + about: "Identidad de compilación de Control UI y Gateway conectado.", aiAgents: "Agentes, modelos, Skills, herramientas, memoria, sesión.", debug: "Instantáneas de la puerta de enlace, eventos y llamadas RPC manuales.", logs: "Seguimiento en vivo de los registros de la puerta de enlace.", dreams: "Consolidación de la memoria durante el sueño.", plugin: "Panel proporcionado por el plugin.", }, + pluginsPage: { + searchLabel: "Buscar plugins", + searchPlaceholder: "Buscar plugins", + browseClawHub: "Explorar ClawHub", + refresh: "Actualizar", + tablistLabel: "Catálogo de plugins", + installedTab: "Instalados", + discoverTab: "Descubrir", + tryAgain: "Intentar de nuevo", + loading: "Cargando plugins…", + searching: "Buscando en ClawHub…", + fromClawHub: "De ClawHub", + noClawHubResultsBody: "ClawHub no tiene resultados para “{query}”.", + noDiscoverMatchTitle: "No hay coincidencias para descubrir", + featuredGroup: "Destacados", + officialGroup: "Plugins oficiales", + connectorsGroup: "Conecta tu mundo", + connectorsHint: + "Conectores MCP con un clic y búsquedas seleccionadas de ClawHub para servicios populares.", + connectorGroupWork: "Trabajo y productividad", + connectorGroupDev: "Programación e infraestructura", + connectorGroupHome: "Hogar y multimedia", + connectorGroupLife: "Vida cotidiana", + connectorMcpNote: "Servidor MCP con un clic", + connectorClawHubNote: "Plugins de la comunidad en ClawHub", + connectorAdd: "Añadir", + connectorSearch: "Buscar en ClawHub", + connectorAdded: "Añadido", + connectorAddedOauth: + "Se añadió {name}. Autentícate con “{command}” y luego reinicia el gateway.", + connectorAddedEndpoint: + "Se añadió {name}. Actualiza el endpoint y las credenciales en la configuración de MCP antes de usarlo.", + connectorAddedReady: + "{name} añadido. Las nuevas sesiones de agente pueden usarlo de inmediato.", + noInstalledTitle: "No hay plugins opcionales instalados", + noInstalledBody: "Descubre un plugin destacado o busca en ClawHub para ampliar OpenClaw.", + noInstalledMatchTitle: "Ningún plugin instalado coincide", + noMatchBody: "Prueba con una búsqueda diferente.", + filterAll: "Todos", + filterIssues: "Problemas", + filterLabel: "Filtrar plugins instalados", + pulseLabel: "{enabled} habilitados, {disabled} deshabilitados, {issues} con problemas", + categoryChannels: "Canales", + categoryProviders: "Proveedores de modelos", + categoryMemory: "Memoria", + categoryContextEngine: "Motores de contexto", + categoryTools: "Herramientas", + categoryOther: "Otros", + mcpServersGroup: "Servidores MCP", + mcpSettingsLink: "Configuración de MCP", + mcpHint: + "Conecta servidores Model Context Protocol para dar herramientas adicionales a tu agente. Los cambios se aplican a las nuevas sesiones del agente.", + mcpAdd: "Añadir servidor", + mcpAdding: "Añadiendo…", + mcpEmpty: + "Aún no hay servidores MCP configurados. Añade uno aquí o elige un conector en Discover.", + mcpNameLabel: "Nombre", + mcpTargetLabel: "URL o comando", + mcpNameInvalid: + "Los nombres de servidor usan letras, números, puntos, guiones o guiones bajos.", + mcpTargetInvalid: "Introduce una URL http(s) o una línea de comandos.", + mcpNameTaken: "Ya existe un servidor MCP llamado “{name}”.", + mcpMissing: "No se encontró el servidor MCP “{name}” en la configuración.", + mcpAddedSuccess: "Servidor MCP {name} añadido.", + mcpRemovedSuccess: "Servidor MCP {name} eliminado.", + mcpConfigUnavailable: "La configuración no está disponible; actualiza e inténtalo de nuevo.", + remove: "Eliminar", + removing: "Eliminando…", + removeNamed: "Eliminar {name}", + removeConfirm: "¿Eliminar este plugin?", + cancel: "Cancelar", + removedRestart: "Se eliminó {name}. Es necesario reiniciar Gateway para aplicar el cambio.", + verifiedSource: "Fuente verificada", + menuLabel: "Acciones de {name}", + menuDetails: "Ver detalles", + enableAction: "Activar", + disableAction: "Desactivar", + working: "Procesando…", + detailClose: "Cerrar", + detailOrigin: "Origen", + detailCategory: "Categoría", + detailPackage: "Paquete", + detailPluginId: "ID de plugin", + offlineTitle: "Gateway sin conexión", + offlineBody: "Conéctate para explorar plugins instalados y recomendados.", + optionalCapability: "Capacidad opcional de OpenClaw.", + enabled: "Activado", + disabled: "Desactivado", + available: "Disponible", + needsAttention: "Requiere atención", + included: "Incluido", + global: "Global", + workspace: "Espacio de trabajo", + config: "Configuración", + official: "Oficial", + codePlugin: "Plugin de código", + bundlePlugin: "Plugin incluido", + unavailable: "No disponible", + install: "Instalar", + installing: "Instalando…", + installNamed: "Instalar {name}", + enableNamed: "Habilitar {name}", + disableNamed: "Deshabilitar {name}", + acknowledgeRisk: "Reconocer el riesgo e instalar", + defaultRiskWarning: "Revisa la advertencia de ClawHub antes de instalar este plugin.", + connectToChange: "Conéctate al Gateway para cambiar plugins.", + adminRequired: "Solo navegación. Los cambios de plugins requieren acceso operator.admin.", + changesDisabled: "Solo navegación. Este Gateway no permite cambios de plugins.", + configRefreshFailed: "No se pudo actualizar la configuración de Control UI: {error}", + installedSuccess: "{name} instalado.", + installedRestart: "{name} instalado. Se requiere reiniciar el Gateway para aplicar el cambio.", + enabledSuccess: "{name} habilitado.", + enabledRestart: "{name} habilitado. Se requiere reiniciar el Gateway para aplicar el cambio.", + disabledSuccess: "{name} deshabilitado.", + disabledRestart: + "{name} deshabilitado. Se requiere reiniciar el Gateway para aplicar el cambio.", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "Identidad integrada al compilar este artefacto del navegador.", + artifactSubtitle: "Identidad integrada cuando se compiló este artefacto del navegador.", artifactDetails: "Detalles de compilación de Control UI", version: "Versión", commit: "Commit", built: "Compilado", unavailable: "No disponible", - copyCommit: "Copiar el hash completo del commit", - copyingCommit: "Copiando el hash del commit", + copyCommit: "Copiar hash completo del commit", + copyingCommit: "Copiando hash del commit", copiedCommit: "Hash del commit copiado", copyCommitFailed: "No se pudo copiar el hash del commit", gatewayVersion: "Versión del Gateway conectado", gatewayVersionHint: - "Informada por la conexión activa al Gateway; es independiente de esta compilación de Control UI.", + "Informado por la conexión activa de Gateway; independiente de esta compilación de Control UI.", }, profilePage: { offline: "Conéctate al Gateway para conocer a tu agente.", @@ -1181,6 +1300,7 @@ export const es: TranslationMap = { sessions: "Sesiones", scheduled: "Programado", skills: "Skills", + plugins: "Plugins", settings: "Configuración", agents: "Agentes", shellCommand: "Comando de shell", diff --git a/ui/src/i18n/locales/fa.ts b/ui/src/i18n/locales/fa.ts index 509e5f9063e1..35a1dd05d742 100644 --- a/ui/src/i18n/locales/fa.ts +++ b/ui/src/i18n/locales/fa.ts @@ -538,6 +538,7 @@ export const fa: TranslationMap = { cron: "کارهای Cron", tasks: "وظایف", skills: "Skills", + plugins: "افزونه‌ها", skillWorkshop: "کارگاه Skill", nodes: "گره‌ها", chat: "چت", @@ -568,6 +569,7 @@ export const fa: TranslationMap = { cron: "بیدارباش‌ها و اجراهای تکرارشونده.", tasks: "وظایف پس‌زمینه: subagents، cron runs، CLI.", skills: "Skills و کلیدهای API.", + plugins: "قابلیت‌های اختیاری را نصب و مدیریت کنید.", skillWorkshop: "پیشنهادها را پیش از تبدیل‌شدن به مهارت‌های فعال، بررسی، اصلاح و اعمال کنید.", nodes: "دستگاه‌های جفت‌شده و فرمان‌ها.", chat: "چت Gateway برای مداخله‌های سریع.", @@ -578,27 +580,140 @@ export const fa: TranslationMap = { automation: "فرمان‌ها، قلاب‌ها، cron و پلاگین‌ها.", mcp: "سرورهای MCP، احراز هویت، ابزارها و عیب‌یابی.", infrastructure: "تنظیمات Gateway، وب، مرورگر و رسانه.", - about: "شناسهٔ ساخت Control UI و Gateway متصل.", + about: "Control UI و Gateway متصل، هویت ساخت را تشکیل می‌دهند.", aiAgents: "عامل‌ها، مدل‌ها، مهارت‌ها، ابزارها، حافظه، نشست.", debug: "نماهای لحظه‌ای، رویدادها، RPC.", logs: "گزارش‌های زنده Gateway.", dreams: "رؤیاپردازی حافظه، یکپارچه‌سازی و بازتاب.", plugin: "پنل ارائه‌شده توسط افزونه.", }, + pluginsPage: { + searchLabel: "جستجوی افزونه‌ها", + searchPlaceholder: "جستجوی افزونه‌ها", + browseClawHub: "مرور ClawHub", + refresh: "تازه‌سازی", + tablistLabel: "کاتالوگ افزونه‌ها", + installedTab: "نصب‌شده", + discoverTab: "کشف", + tryAgain: "دوباره تلاش کنید", + loading: "در حال بارگذاری افزونه‌ها…", + searching: "در حال جستجوی ClawHub…", + fromClawHub: "از ClawHub", + noClawHubResultsBody: "ClawHub نتیجه‌ای برای «{query}» ندارد.", + noDiscoverMatchTitle: "موردی برای کشف مطابقت ندارد", + featuredGroup: "ویژه", + officialGroup: "افزونه‌های رسمی", + connectorsGroup: "دنیای خود را متصل کنید", + connectorsHint: "کانکتورهای MCP با یک کلیک و جستجوهای دست‌چین‌شده ClawHub برای سرویس‌های محبوب.", + connectorGroupWork: "کار و بهره‌وری", + connectorGroupDev: "کدنویسی و زیرساخت", + connectorGroupHome: "خانه و رسانه", + connectorGroupLife: "زندگی روزمره", + connectorMcpNote: "سرور MCP با یک کلیک", + connectorClawHubNote: "افزونه‌های جامعه در ClawHub", + connectorAdd: "افزودن", + connectorSearch: "یافتن در ClawHub", + connectorAdded: "افزوده شد", + connectorAddedOauth: + "{name} افزوده شد. با «{command}» احراز هویت کنید، سپس gateway را دوباره راه‌اندازی کنید.", + connectorAddedEndpoint: + "{name} افزوده شد. پیش از استفاده، endpoint و credentials را در تنظیمات MCP به‌روزرسانی کنید.", + connectorAddedReady: "{name} اضافه شد. نشست‌های عامل جدید می‌توانند فوراً از آن استفاده کنند.", + noInstalledTitle: "هیچ افزونه اختیاری نصب نشده است", + noInstalledBody: "برای گسترش OpenClaw، یک افزونه ویژه را کشف کنید یا در ClawHub جستجو کنید.", + noInstalledMatchTitle: "هیچ افزونه نصب‌شده‌ای مطابقت ندارد", + noMatchBody: "جستجوی دیگری را امتحان کنید.", + filterAll: "همه", + filterIssues: "مشکلات", + filterLabel: "فیلتر کردن افزونه‌های نصب‌شده", + pulseLabel: "{enabled} فعال، {disabled} غیرفعال، {issues} دارای مشکل", + categoryChannels: "کانال‌ها", + categoryProviders: "ارائه‌دهندگان مدل", + categoryMemory: "حافظه", + categoryContextEngine: "موتورهای زمینه", + categoryTools: "ابزارها", + categoryOther: "سایر", + mcpServersGroup: "سرورهای MCP", + mcpSettingsLink: "تنظیمات MCP", + mcpHint: + "سرورهای Model Context Protocol را متصل کنید تا ابزارهای بیشتری در اختیار عامل شما قرار گیرد. تغییرات برای نشست‌های جدید عامل اعمال می‌شوند.", + mcpAdd: "افزودن سرور", + mcpAdding: "در حال افزودن…", + mcpEmpty: + "هنوز هیچ سرور MCP پیکربندی نشده است. یکی را اینجا اضافه کنید یا از Discover یک اتصال‌دهنده انتخاب کنید.", + mcpNameLabel: "نام", + mcpTargetLabel: "URL یا فرمان", + mcpNameInvalid: "نام سرورها از حروف، اعداد، نقطه، خط تیره یا زیرخط استفاده می‌کنند.", + mcpTargetInvalid: "یک URL با http(s) یا یک خط فرمان وارد کنید.", + mcpNameTaken: "یک سرور MCP با نام «{name}» از قبل وجود دارد.", + mcpMissing: "سرور MCP «{name}» در پیکربندی پیدا نشد.", + mcpAddedSuccess: "سرور MCP {name} اضافه شد.", + mcpRemovedSuccess: "سرور MCP {name} حذف شد.", + mcpConfigUnavailable: "پیکربندی در دسترس نیست؛ بازخوانی کنید و دوباره تلاش کنید.", + remove: "حذف", + removing: "در حال حذف…", + removeNamed: "حذف {name}", + removeConfirm: "این افزونه حذف شود؟", + cancel: "لغو", + removedRestart: "{name} حذف شد. برای اعمال تغییر، راه‌اندازی مجدد Gateway لازم است.", + verifiedSource: "منبع تأییدشده", + menuLabel: "اقدامات {name}", + menuDetails: "مشاهده جزئیات", + enableAction: "فعال کردن", + disableAction: "غیرفعال کردن", + working: "در حال انجام…", + detailClose: "بستن", + detailOrigin: "منبع", + detailCategory: "دسته‌بندی", + detailPackage: "بسته", + detailPluginId: "شناسهٔ افزونه", + offlineTitle: "Gateway آفلاین است", + offlineBody: "برای مرور افزونه‌های نصب‌شده و پیشنهادی متصل شوید.", + optionalCapability: "قابلیت اختیاری OpenClaw.", + enabled: "فعال", + disabled: "غیرفعال", + available: "در دسترس", + needsAttention: "نیازمند توجه", + included: "شامل‌شده", + global: "سراسری", + workspace: "فضای کاری", + config: "پیکربندی", + official: "رسمی", + codePlugin: "افزونه کد", + bundlePlugin: "افزونه بسته‌ای", + unavailable: "در دسترس نیست", + install: "نصب", + installing: "در حال نصب…", + installNamed: "نصب {name}", + enableNamed: "فعال‌سازی {name}", + disableNamed: "غیرفعال‌سازی {name}", + acknowledgeRisk: "پذیرش ریسک و نصب", + defaultRiskWarning: "پیش از نصب این افزونه، هشدار ClawHub را بررسی کنید.", + connectToChange: "برای تغییر افزونه‌ها به Gateway متصل شوید.", + adminRequired: "فقط مرور. تغییرات افزونه به دسترسی operator.admin نیاز دارد.", + changesDisabled: "فقط مرور. این Gateway اجازه تغییر افزونه‌ها را نمی‌دهد.", + configRefreshFailed: "امکان نوسازی پیکربندی Control UI وجود نداشت: {error}", + installedSuccess: "{name} نصب شد.", + installedRestart: "{name} نصب شد. برای اعمال تغییر، راه‌اندازی مجدد Gateway لازم است.", + enabledSuccess: "{name} فعال شد.", + enabledRestart: "{name} فعال شد. برای اعمال تغییر، راه‌اندازی مجدد Gateway لازم است.", + disabledSuccess: "{name} غیرفعال شد.", + disabledRestart: "{name} غیرفعال شد. برای اعمال تغییر، راه‌اندازی مجدد Gateway لازم است.", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "شناسه‌ای که هنگام ساخت این خروجی مرورگر در آن جاسازی شده است.", + artifactSubtitle: "هویتی که هنگام ساخت این آرتیفکت مرورگر در آن تعبیه شده است.", artifactDetails: "جزئیات ساخت Control UI", version: "نسخه", commit: "کامیت", - built: "زمان ساخت", + built: "ساخته‌شده", unavailable: "در دسترس نیست", copyCommit: "کپی هش کامل کامیت", copyingCommit: "در حال کپی هش کامیت", copiedCommit: "هش کامیت کپی شد", - copyCommitFailed: "کپی هش کامیت ممکن نشد", - gatewayVersion: "نسخهٔ Gateway متصل", - gatewayVersionHint: "از اتصال فعال Gateway گزارش شده است و با این ساخت Control UI تفاوت دارد.", + copyCommitFailed: "هش کامیت کپی نشد", + gatewayVersion: "نسخه Gateway متصل", + gatewayVersionHint: "توسط اتصال فعال Gateway گزارش شده است؛ جدا از این ساخت Control UI.", }, profilePage: { offline: "برای دیدن عامل خود به Gateway متصل شوید.", @@ -1178,6 +1293,7 @@ export const fa: TranslationMap = { sessions: "نشست‌ها", scheduled: "زمان‌بندی‌شده", skills: "Skills", + plugins: "افزونه‌ها", settings: "تنظیمات", agents: "عامل‌ها", shellCommand: "فرمان پوسته", diff --git a/ui/src/i18n/locales/fr.ts b/ui/src/i18n/locales/fr.ts index 3119cf2eedfb..aefaaa440596 100644 --- a/ui/src/i18n/locales/fr.ts +++ b/ui/src/i18n/locales/fr.ts @@ -543,6 +543,7 @@ export const fr: TranslationMap = { cron: "Tâches cron", tasks: "Tâches", skills: "Skills", + plugins: "Plugins", skillWorkshop: "Atelier Skills", nodes: "Nœuds", chat: "Chat", @@ -573,6 +574,7 @@ export const fr: TranslationMap = { cron: "Réveils et exécutions récurrentes.", tasks: "Tâches en arrière-plan : sous-agents, exécutions cron, CLI.", skills: "Skills et clés API.", + plugins: "Installez et gérez des fonctionnalités optionnelles.", skillWorkshop: "Examinez, affinez et appliquez les propositions avant qu’elles ne deviennent des skills actives.", nodes: "Appareils appairés et commandes.", @@ -584,28 +586,151 @@ export const fr: TranslationMap = { automation: "Commandes, hooks, cron et plugins.", mcp: "Serveurs MCP, authentification, outils et diagnostics.", infrastructure: "Paramètres Gateway, web, navigateur et médias.", - about: "Identité de compilation de Control UI et du Gateway connecté.", + about: "Le Control UI et le Gateway connecté définissent l’identité de build.", aiAgents: "Agents, modèles, Skills, outils, mémoire, session.", debug: "Captures, événements, RPC.", logs: "Journaux Gateway en direct.", dreams: "Consolidation de la mémoire pendant le sommeil.", plugin: "Panneau fourni par le plugin.", }, + pluginsPage: { + searchLabel: "Rechercher des plugins", + searchPlaceholder: "Rechercher des plugins", + browseClawHub: "Parcourir ClawHub", + refresh: "Actualiser", + tablistLabel: "Catalogue de plugins", + installedTab: "Installés", + discoverTab: "Découvrir", + tryAgain: "Réessayer", + loading: "Chargement des plugins…", + searching: "Recherche dans ClawHub…", + fromClawHub: "Depuis ClawHub", + noClawHubResultsBody: "ClawHub n’a aucun résultat pour « {query} ».", + noDiscoverMatchTitle: "Aucun élément à découvrir ne correspond", + featuredGroup: "Sélection", + officialGroup: "Plugins officiels", + connectorsGroup: "Connectez votre monde", + connectorsHint: + "Connecteurs MCP en un clic et recherches ClawHub soigneusement sélectionnées pour les services populaires.", + connectorGroupWork: "Travail et productivité", + connectorGroupDev: "Codage et infrastructure", + connectorGroupHome: "Maison et médias", + connectorGroupLife: "Vie quotidienne", + connectorMcpNote: "Serveur MCP en un clic", + connectorClawHubNote: "Plugins de la communauté sur ClawHub", + connectorAdd: "Ajouter", + connectorSearch: "Trouver sur ClawHub", + connectorAdded: "Ajouté", + connectorAddedOauth: + "{name} ajouté. Authentifiez-vous avec « {command} », puis redémarrez le gateway.", + connectorAddedEndpoint: + "{name} ajouté. Mettez à jour le point de terminaison et les identifiants dans les paramètres MCP avant utilisation.", + connectorAddedReady: + "{name} ajouté. Les nouvelles sessions d’agent peuvent l’utiliser immédiatement.", + noInstalledTitle: "Aucun plugin facultatif installé", + noInstalledBody: + "Découvrez un plugin mis en avant ou recherchez dans ClawHub pour étendre OpenClaw.", + noInstalledMatchTitle: "Aucun plugin installé ne correspond", + noMatchBody: "Essayez une autre recherche.", + filterAll: "Tous", + filterIssues: "Problèmes", + filterLabel: "Filtrer les plugins installés", + pulseLabel: "{enabled} activés, {disabled} désactivés, {issues} avec des problèmes", + categoryChannels: "Canaux", + categoryProviders: "Fournisseurs de modèles", + categoryMemory: "Mémoire", + categoryContextEngine: "Moteurs de contexte", + categoryTools: "Outils", + categoryOther: "Autre", + mcpServersGroup: "Serveurs MCP", + mcpSettingsLink: "Paramètres MCP", + mcpHint: + "Connectez des serveurs Model Context Protocol pour doter votre agent d’outils supplémentaires. Les modifications s’appliquent aux nouvelles sessions d’agent.", + mcpAdd: "Ajouter un serveur", + mcpAdding: "Ajout…", + mcpEmpty: + "Aucun serveur MCP n’est encore configuré. Ajoutez-en un ici ou choisissez un connecteur depuis Découvrir.", + mcpNameLabel: "Nom", + mcpTargetLabel: "URL ou commande", + mcpNameInvalid: + "Les noms de serveur utilisent des lettres, des chiffres, des points, des tirets ou des traits de soulignement.", + mcpTargetInvalid: "Saisissez une URL http(s) ou une ligne de commande.", + mcpNameTaken: "Un serveur MCP nommé « {name} » existe déjà.", + mcpMissing: "Le serveur MCP « {name} » est introuvable dans la configuration.", + mcpAddedSuccess: "Serveur MCP {name} ajouté.", + mcpRemovedSuccess: "Serveur MCP {name} supprimé.", + mcpConfigUnavailable: "La configuration n’est pas disponible ; actualisez et réessayez.", + remove: "Supprimer", + removing: "Suppression…", + removeNamed: "Supprimer {name}", + removeConfirm: "Supprimer ce plugin ?", + cancel: "Annuler", + removedRestart: + "{name} supprimé. Un redémarrage de Gateway est nécessaire pour appliquer la modification.", + verifiedSource: "Source vérifiée", + menuLabel: "Actions de {name}", + menuDetails: "Voir les détails", + enableAction: "Activer", + disableAction: "Désactiver", + working: "Traitement en cours…", + detailClose: "Fermer", + detailOrigin: "Source", + detailCategory: "Catégorie", + detailPackage: "Package", + detailPluginId: "ID du plugin", + offlineTitle: "Gateway hors ligne", + offlineBody: "Connectez-vous pour parcourir les plugins installés et recommandés.", + optionalCapability: "Fonctionnalité OpenClaw facultative.", + enabled: "Activé", + disabled: "Désactivé", + available: "Disponible", + needsAttention: "Nécessite votre attention", + included: "Inclus", + global: "Global", + workspace: "Espace de travail", + config: "Configuration", + official: "Officiel", + codePlugin: "Plugin de code", + bundlePlugin: "Plugin groupé", + unavailable: "Indisponible", + install: "Installer", + installing: "Installation…", + installNamed: "Installer {name}", + enableNamed: "Activer {name}", + disableNamed: "Désactiver {name}", + acknowledgeRisk: "Reconnaître le risque et installer", + defaultRiskWarning: "Consultez l’avertissement ClawHub avant d’installer ce plugin.", + connectToChange: "Connectez-vous au gateway pour modifier les plugins.", + adminRequired: + "Consultation uniquement. Les modifications de plugins nécessitent l’accès operator.admin.", + changesDisabled: + "Consultation uniquement. Ce gateway n’autorise pas les modifications de plugins.", + configRefreshFailed: "Impossible d’actualiser la configuration de Control UI : {error}", + installedSuccess: "{name} installé.", + installedRestart: + "{name} installé. Un redémarrage de Gateway est nécessaire pour appliquer la modification.", + enabledSuccess: "{name} activé.", + enabledRestart: + "{name} activé. Un redémarrage de Gateway est nécessaire pour appliquer la modification.", + disabledSuccess: "{name} désactivé.", + disabledRestart: + "{name} désactivé. Un redémarrage de Gateway est nécessaire pour appliquer la modification.", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "Identité intégrée lors de la compilation de cet artefact de navigateur.", - artifactDetails: "Détails de compilation de Control UI", + artifactSubtitle: "Identité intégrée lors de la création de cet artefact de navigateur.", + artifactDetails: "Détails de build du Control UI", version: "Version", commit: "Commit", - built: "Compilation", + built: "Build", unavailable: "Indisponible", copyCommit: "Copier le hash complet du commit", - copyingCommit: "Copie du hash du commit en cours", + copyingCommit: "Copie du hash du commit", copiedCommit: "Hash du commit copié", copyCommitFailed: "Impossible de copier le hash du commit", gatewayVersion: "Version du Gateway connecté", gatewayVersionHint: - "Indiquée par la connexion active au Gateway; distincte de cette compilation de Control UI.", + "Signalée par la connexion Gateway active ; distincte de ce build du Control UI.", }, profilePage: { offline: "Connectez-vous au Gateway pour rencontrer votre agent.", @@ -1189,6 +1314,7 @@ export const fr: TranslationMap = { sessions: "Sessions", scheduled: "Planifié", skills: "Skills", + plugins: "Plugins", settings: "Paramètres", agents: "Agents", shellCommand: "Commande shell", diff --git a/ui/src/i18n/locales/hi.ts b/ui/src/i18n/locales/hi.ts index cf4578601f70..5d3915eac2c1 100644 --- a/ui/src/i18n/locales/hi.ts +++ b/ui/src/i18n/locales/hi.ts @@ -537,6 +537,7 @@ export const hi: TranslationMap = { cron: "Cron Jobs", tasks: "कार्य", skills: "कौशल", + plugins: "प्लगइन", skillWorkshop: "कौशल वर्कशॉप", nodes: "नोड्स", chat: "चैट", @@ -567,6 +568,7 @@ export const hi: TranslationMap = { cron: "वेकअप्स और आवर्ती रन।", tasks: "पृष्ठभूमि कार्य: subagents, cron runs, CLI.", skills: "स्किल्स और API कुंजियाँ।", + plugins: "वैकल्पिक क्षमताएँ इंस्टॉल और प्रबंधित करें।", skillWorkshop: "प्रस्तावों के लाइव स्किल्स बनने से पहले उनकी समीक्षा करें, उन्हें परिष्कृत करें और लागू करें।", nodes: "पेयर किए गए डिवाइस और कमांड्स।", chat: "त्वरित हस्तक्षेपों के लिए गेटवे चैट।", @@ -577,27 +579,138 @@ export const hi: TranslationMap = { automation: "कमांड, हुक, cron, और प्लगइन।", mcp: "MCP सर्वर, auth, टूल, और डायग्नोस्टिक्स।", infrastructure: "Gateway, web, browser, और media सेटिंग्स।", - about: "Control UI और कनेक्ट किए गए Gateway की बिल्ड पहचान।", + about: "Control UI और कनेक्टेड Gateway बिल्ड पहचान।", aiAgents: "एजेंट, मॉडल, स्किल, टूल, मेमोरी, सेशन।", debug: "स्नैपशॉट, इवेंट, RPC।", logs: "लाइव gateway लॉग।", dreams: "मेमोरी ड्रीमिंग, कंसॉलिडेशन, और रिफ्लेक्शन।", plugin: "प्लगइन द्वारा उपलब्ध कराया गया पैनल।", }, + pluginsPage: { + searchLabel: "प्लगइन खोजें", + searchPlaceholder: "प्लगइन खोजें", + browseClawHub: "ClawHub ब्राउज़ करें", + refresh: "रिफ्रेश करें", + tablistLabel: "प्लगइन कैटलॉग", + installedTab: "इंस्टॉल किए गए", + discoverTab: "खोजें", + tryAgain: "फिर से प्रयास करें", + loading: "प्लगइन लोड हो रहे हैं…", + searching: "ClawHub में खोजा जा रहा है…", + fromClawHub: "ClawHub से", + noClawHubResultsBody: "ClawHub में “{query}” के लिए कोई परिणाम नहीं है।", + noDiscoverMatchTitle: "खोजने के लिए कोई मेल नहीं मिला", + featuredGroup: "विशेष रुप से प्रदर्शित", + officialGroup: "आधिकारिक प्लगइन्स", + connectorsGroup: "अपनी दुनिया से कनेक्ट करें", + connectorsHint: "लोकप्रिय सेवाओं के लिए वन-क्लिक MCP कनेक्टर्स और चुनी हुई ClawHub खोजें।", + connectorGroupWork: "काम और उत्पादकता", + connectorGroupDev: "कोडिंग और इन्फ्रास्ट्रक्चर", + connectorGroupHome: "घर और मीडिया", + connectorGroupLife: "रोज़मर्रा का जीवन", + connectorMcpNote: "वन-क्लिक MCP सर्वर", + connectorClawHubNote: "ClawHub पर समुदाय प्लगइन्स", + connectorAdd: "जोड़ें", + connectorSearch: "ClawHub पर खोजें", + connectorAdded: "जोड़ा गया", + connectorAddedOauth: "{name} जोड़ा गया। “{command}” से प्रमाणित करें, फिर gateway को रीस्टार्ट करें।", + connectorAddedEndpoint: + "{name} जोड़ा गया। उपयोग से पहले MCP सेटिंग्स में endpoint और credentials अपडेट करें।", + connectorAddedReady: "{name} जोड़ा गया। नए एजेंट सत्र इसे तुरंत उपयोग कर सकते हैं।", + noInstalledTitle: "कोई वैकल्पिक प्लगइन्स इंस्टॉल नहीं हैं", + noInstalledBody: "OpenClaw को विस्तारित करने के लिए कोई विशेष प्लगइन खोजें या ClawHub में खोजें।", + noInstalledMatchTitle: "कोई इंस्टॉल किए गए प्लगइन्स मेल नहीं खाते", + noMatchBody: "कोई अलग खोज आज़माएँ।", + filterAll: "सभी", + filterIssues: "समस्याएँ", + filterLabel: "इंस्टॉल किए गए प्लगइन्स फ़िल्टर करें", + pulseLabel: "{enabled} सक्षम, {disabled} अक्षम, {issues} में समस्याएँ", + categoryChannels: "चैनल", + categoryProviders: "मॉडल प्रदाता", + categoryMemory: "मेमोरी", + categoryContextEngine: "कॉन्टेक्स्ट इंजन", + categoryTools: "टूल्स", + categoryOther: "अन्य", + mcpServersGroup: "MCP सर्वर", + mcpSettingsLink: "MCP सेटिंग्स", + mcpHint: + "अपने एजेंट को अतिरिक्त टूल देने के लिए Model Context Protocol सर्वर कनेक्ट करें। बदलाव नए एजेंट सेशन पर लागू होते हैं।", + mcpAdd: "सर्वर जोड़ें", + mcpAdding: "जोड़ा जा रहा है…", + mcpEmpty: "अभी तक कोई MCP सर्वर कॉन्फ़िगर नहीं किया गया है। यहाँ एक जोड़ें या Discover से कोई कनेक्टर चुनें।", + mcpNameLabel: "नाम", + mcpTargetLabel: "URL या कमांड", + mcpNameInvalid: "सर्वर नामों में अक्षर, संख्याएँ, डॉट, डैश या अंडरस्कोर इस्तेमाल किए जा सकते हैं।", + mcpTargetInvalid: "कोई http(s) URL या कमांड लाइन दर्ज करें।", + mcpNameTaken: "“{name}” नाम का MCP सर्वर पहले से मौजूद है।", + mcpMissing: "MCP सर्वर “{name}” कॉन्फ़िगरेशन में नहीं मिला।", + mcpAddedSuccess: "MCP सर्वर {name} जोड़ा गया।", + mcpRemovedSuccess: "MCP सर्वर {name} हटाया गया।", + mcpConfigUnavailable: "कॉन्फ़िगरेशन उपलब्ध नहीं है; रीफ़्रेश करें और फिर से कोशिश करें।", + remove: "हटाएँ", + removing: "हटाया जा रहा है…", + removeNamed: "{name} हटाएँ", + removeConfirm: "यह प्लगइन हटाएँ?", + cancel: "रद्द करें", + removedRestart: "{name} हटा दिया गया। परिवर्तन लागू करने के लिए Gateway को पुनः प्रारंभ करना आवश्यक है।", + verifiedSource: "सत्यापित स्रोत", + menuLabel: "{name} कार्रवाइयाँ", + menuDetails: "विवरण देखें", + enableAction: "सक्षम करें", + disableAction: "अक्षम करें", + working: "काम हो रहा है…", + detailClose: "बंद करें", + detailOrigin: "स्रोत", + detailCategory: "श्रेणी", + detailPackage: "पैकेज", + detailPluginId: "Plugin ID", + offlineTitle: "Gateway ऑफ़लाइन", + offlineBody: "इंस्टॉल किए गए और अनुशंसित प्लगइन ब्राउज़ करने के लिए कनेक्ट करें।", + optionalCapability: "वैकल्पिक OpenClaw क्षमता।", + enabled: "सक्षम", + disabled: "अक्षम", + available: "उपलब्ध", + needsAttention: "ध्यान देने की आवश्यकता है", + included: "शामिल", + global: "वैश्विक", + workspace: "वर्कस्पेस", + config: "कॉन्फ़िग", + official: "आधिकारिक", + codePlugin: "कोड प्लगइन", + bundlePlugin: "बंडल प्लगइन", + unavailable: "अनुपलब्ध", + install: "इंस्टॉल करें", + installing: "इंस्टॉल हो रहा है…", + installNamed: "{name} इंस्टॉल करें", + enableNamed: "{name} सक्षम करें", + disableNamed: "{name} अक्षम करें", + acknowledgeRisk: "जोखिम स्वीकार करें और इंस्टॉल करें", + defaultRiskWarning: "इस प्लगइन को इंस्टॉल करने से पहले ClawHub चेतावनी की समीक्षा करें।", + connectToChange: "प्लगइन बदलने के लिए Gateway से कनेक्ट करें।", + adminRequired: "केवल ब्राउज़िंग। Plugin बदलावों के लिए operator.admin पहुँच आवश्यक है।", + changesDisabled: "केवल ब्राउज़िंग। यह gateway plugin बदलावों की अनुमति नहीं देता।", + configRefreshFailed: "Control UI कॉन्फ़िगरेशन रीफ़्रेश नहीं किया जा सका: {error}", + installedSuccess: "{name} इंस्टॉल किया गया।", + installedRestart: "{name} इंस्टॉल किया गया। बदलाव लागू करने के लिए Gateway को रीस्टार्ट करना आवश्यक है।", + enabledSuccess: "{name} सक्षम किया गया।", + enabledRestart: "{name} सक्षम किया गया। बदलाव लागू करने के लिए Gateway को रीस्टार्ट करना आवश्यक है।", + disabledSuccess: "{name} अक्षम किया गया।", + disabledRestart: "{name} अक्षम किया गया। बदलाव लागू करने के लिए Gateway को रीस्टार्ट करना आवश्यक है।", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "इस ब्राउज़र आर्टिफ़ैक्ट के बनते समय जोड़ी गई पहचान।", - artifactDetails: "Control UI बिल्ड का विवरण", + artifactSubtitle: "इस ब्राउज़र आर्टिफैक्ट के बिल्ड होने पर एम्बेड की गई पहचान।", + artifactDetails: "Control UI बिल्ड विवरण", version: "संस्करण", - commit: "कमिट", - built: "बिल्ड समय", - unavailable: "उपलब्ध नहीं", - copyCommit: "पूरा कमिट हैश कॉपी करें", - copyingCommit: "कमिट हैश कॉपी हो रहा है", - copiedCommit: "कमिट हैश कॉपी हो गया", - copyCommitFailed: "कमिट हैश कॉपी नहीं हो सका", - gatewayVersion: "कनेक्ट किए गए Gateway का संस्करण", - gatewayVersionHint: "सक्रिय Gateway कनेक्शन से प्राप्त; यह Control UI बिल्ड से अलग है।", + commit: "Commit", + built: "बिल्ड किया गया", + unavailable: "अनुपलब्ध", + copyCommit: "पूरा commit hash कॉपी करें", + copyingCommit: "commit hash कॉपी किया जा रहा है", + copiedCommit: "Commit hash कॉपी किया गया", + copyCommitFailed: "commit hash कॉपी नहीं किया जा सका", + gatewayVersion: "कनेक्टेड Gateway संस्करण", + gatewayVersionHint: "सक्रिय Gateway कनेक्शन द्वारा रिपोर्ट किया गया; इस Control UI बिल्ड से अलग।", }, profilePage: { offline: "अपने एजेंट से मिलने के लिए Gateway से कनेक्ट करें।", @@ -1172,6 +1285,7 @@ export const hi: TranslationMap = { sessions: "सत्र", scheduled: "शेड्यूल किए गए", skills: "कौशल", + plugins: "Plugins", settings: "सेटिंग्स", agents: "एजेंट", shellCommand: "शेल कमांड", diff --git a/ui/src/i18n/locales/id.ts b/ui/src/i18n/locales/id.ts index 1e607de3dc49..eae09a0518fd 100644 --- a/ui/src/i18n/locales/id.ts +++ b/ui/src/i18n/locales/id.ts @@ -538,6 +538,7 @@ export const id: TranslationMap = { cron: "Tugas Cron", tasks: "Tugas", skills: "Skills", + plugins: "Plugin", skillWorkshop: "Skill Workshop", nodes: "Node", chat: "Chat", @@ -568,6 +569,7 @@ export const id: TranslationMap = { cron: "Bangun dan proses berulang.", tasks: "Tugas latar belakang: subagen, eksekusi cron, CLI.", skills: "Skills dan kunci API.", + plugins: "Instal dan kelola kemampuan opsional.", skillWorkshop: "Tinjau, sempurnakan, dan terapkan proposal sebelum menjadi Skills aktif.", nodes: "Perangkat yang dipasangkan dan perintah.", chat: "Chat Gateway untuk intervensi cepat.", @@ -578,13 +580,129 @@ export const id: TranslationMap = { automation: "Perintah, hook, cron, dan plugin.", mcp: "Server MCP, autentikasi, alat, dan diagnostik.", infrastructure: "Pengaturan Gateway, web, browser, dan media.", - about: "Identitas build Control UI dan Gateway yang terhubung.", + about: "Control UI dan Gateway yang terhubung membangun identitas.", aiAgents: "Agen, model, Skills, alat, memori, sesi.", debug: "Snapshot, peristiwa, RPC.", logs: "Log Gateway langsung.", dreams: "Konsolidasi memori saat tidur.", plugin: "Panel yang disediakan plugin.", }, + pluginsPage: { + searchLabel: "Cari plugin", + searchPlaceholder: "Cari plugin", + browseClawHub: "Jelajahi ClawHub", + refresh: "Muat ulang", + tablistLabel: "Katalog plugin", + installedTab: "Terpasang", + discoverTab: "Temukan", + tryAgain: "Coba lagi", + loading: "Memuat plugin…", + searching: "Mencari ClawHub…", + fromClawHub: "Dari ClawHub", + noClawHubResultsBody: "ClawHub tidak memiliki hasil untuk “{query}”.", + noDiscoverMatchTitle: "Tidak ada yang cocok untuk ditemukan", + featuredGroup: "Unggulan", + officialGroup: "Plugin resmi", + connectorsGroup: "Hubungkan dunia Anda", + connectorsHint: "Konektor MCP sekali klik dan pencarian ClawHub pilihan untuk layanan populer.", + connectorGroupWork: "Kerja & produktivitas", + connectorGroupDev: "Pengodean & infrastruktur", + connectorGroupHome: "Rumah & media", + connectorGroupLife: "Kehidupan sehari-hari", + connectorMcpNote: "Server MCP sekali klik", + connectorClawHubNote: "Plugin komunitas di ClawHub", + connectorAdd: "Tambah", + connectorSearch: "Temukan di ClawHub", + connectorAdded: "Ditambahkan", + connectorAddedOauth: + "{name} ditambahkan. Autentikasi dengan “{command}”, lalu mulai ulang gateway.", + connectorAddedEndpoint: + "{name} ditambahkan. Perbarui endpoint dan kredensial di pengaturan MCP sebelum digunakan.", + connectorAddedReady: "{name} ditambahkan. Sesi agen baru dapat langsung menggunakannya.", + noInstalledTitle: "Tidak ada plugin opsional yang terinstal", + noInstalledBody: "Temukan plugin unggulan atau cari ClawHub untuk memperluas OpenClaw.", + noInstalledMatchTitle: "Tidak ada plugin terinstal yang cocok", + noMatchBody: "Coba pencarian lain.", + filterAll: "Semua", + filterIssues: "Masalah", + filterLabel: "Filter plugin terinstal", + pulseLabel: "{enabled} diaktifkan, {disabled} dinonaktifkan, {issues} bermasalah", + categoryChannels: "Saluran", + categoryProviders: "Penyedia model", + categoryMemory: "Memori", + categoryContextEngine: "Mesin konteks", + categoryTools: "Alat", + categoryOther: "Lainnya", + mcpServersGroup: "Server MCP", + mcpSettingsLink: "Pengaturan MCP", + mcpHint: + "Hubungkan server Model Context Protocol untuk memberi agen Anda alat tambahan. Perubahan berlaku untuk sesi agen baru.", + mcpAdd: "Tambahkan server", + mcpAdding: "Menambahkan…", + mcpEmpty: + "Belum ada server MCP yang dikonfigurasi. Tambahkan satu di sini atau pilih konektor dari Discover.", + mcpNameLabel: "Nama", + mcpTargetLabel: "URL atau perintah", + mcpNameInvalid: "Nama server menggunakan huruf, angka, titik, tanda hubung, atau garis bawah.", + mcpTargetInvalid: "Masukkan URL http(s) atau baris perintah.", + mcpNameTaken: "Server MCP bernama “{name}” sudah ada.", + mcpMissing: "Server MCP “{name}” tidak ditemukan dalam konfigurasi.", + mcpAddedSuccess: "Server MCP {name} ditambahkan.", + mcpRemovedSuccess: "Server MCP {name} dihapus.", + mcpConfigUnavailable: "Konfigurasi tidak tersedia; segarkan dan coba lagi.", + remove: "Hapus", + removing: "Menghapus…", + removeNamed: "Hapus {name}", + removeConfirm: "Hapus plugin ini?", + cancel: "Batal", + removedRestart: "{name} dihapus. Gateway perlu dimulai ulang untuk menerapkan perubahan.", + verifiedSource: "Sumber terverifikasi", + menuLabel: "Tindakan {name}", + menuDetails: "Lihat detail", + enableAction: "Aktifkan", + disableAction: "Nonaktifkan", + working: "Memproses…", + detailClose: "Tutup", + detailOrigin: "Sumber", + detailCategory: "Kategori", + detailPackage: "Paket", + detailPluginId: "ID Plugin", + offlineTitle: "Gateway offline", + offlineBody: "Hubungkan untuk menelusuri plugin yang terinstal dan direkomendasikan.", + optionalCapability: "Kapabilitas OpenClaw opsional.", + enabled: "Diaktifkan", + disabled: "Dinonaktifkan", + available: "Tersedia", + needsAttention: "Memerlukan perhatian", + included: "Disertakan", + global: "Global", + workspace: "Workspace", + config: "Konfigurasi", + official: "Resmi", + codePlugin: "Plugin kode", + bundlePlugin: "Plugin bundel", + unavailable: "Tidak tersedia", + install: "Instal", + installing: "Menginstal…", + installNamed: "Instal {name}", + enableNamed: "Aktifkan {name}", + disableNamed: "Nonaktifkan {name}", + acknowledgeRisk: "Akui risiko dan instal", + defaultRiskWarning: "Tinjau peringatan ClawHub sebelum menginstal plugin ini.", + connectToChange: "Hubungkan ke gateway untuk mengubah plugin.", + adminRequired: "Hanya menelusuri. Perubahan plugin memerlukan akses operator.admin.", + changesDisabled: "Hanya menelusuri. Gateway ini tidak mengizinkan perubahan plugin.", + configRefreshFailed: "Tidak dapat menyegarkan konfigurasi Control UI: {error}", + installedSuccess: "{name} telah diinstal.", + installedRestart: + "{name} telah diinstal. Restart Gateway diperlukan untuk menerapkan perubahan.", + enabledSuccess: "{name} telah diaktifkan.", + enabledRestart: + "{name} telah diaktifkan. Restart Gateway diperlukan untuk menerapkan perubahan.", + disabledSuccess: "{name} telah dinonaktifkan.", + disabledRestart: + "{name} telah dinonaktifkan. Restart Gateway diperlukan untuk menerapkan perubahan.", + }, aboutPage: { artifactTitle: "Control UI", artifactSubtitle: "Identitas yang disematkan saat artefak browser ini dibuat.", @@ -596,7 +714,7 @@ export const id: TranslationMap = { copyCommit: "Salin hash commit lengkap", copyingCommit: "Menyalin hash commit", copiedCommit: "Hash commit disalin", - copyCommitFailed: "Hash commit tidak dapat disalin", + copyCommitFailed: "Tidak dapat menyalin hash commit", gatewayVersion: "Versi Gateway yang terhubung", gatewayVersionHint: "Dilaporkan oleh koneksi Gateway aktif; terpisah dari build Control UI ini.", @@ -1178,6 +1296,7 @@ export const id: TranslationMap = { sessions: "Sesi", scheduled: "Terjadwal", skills: "Skills", + plugins: "Plugin", settings: "Pengaturan", agents: "Agen", shellCommand: "Perintah shell", diff --git a/ui/src/i18n/locales/it.ts b/ui/src/i18n/locales/it.ts index cf4ff13d7fa6..aefad1a50d01 100644 --- a/ui/src/i18n/locales/it.ts +++ b/ui/src/i18n/locales/it.ts @@ -543,6 +543,7 @@ export const it: TranslationMap = { cron: "Processi cron", tasks: "Attività", skills: "Skills", + plugins: "Plugin", skillWorkshop: "Workshop delle Skill", nodes: "Nodi", chat: "Chat", @@ -573,6 +574,7 @@ export const it: TranslationMap = { cron: "Risvegli ed esecuzioni ricorrenti.", tasks: "Attività in background: subagenti, esecuzioni cron, CLI.", skills: "Skills e chiavi API.", + plugins: "Installa e gestisci funzionalità opzionali.", skillWorkshop: "Esamina, perfeziona e applica le proposte prima che diventino skill attive.", nodes: "Dispositivi associati e comandi.", chat: "Chat Gateway per interventi rapidi.", @@ -583,28 +585,146 @@ export const it: TranslationMap = { automation: "Comandi, hook, cron e plugin.", mcp: "Server MCP, autenticazione, strumenti e diagnostica.", infrastructure: "Impostazioni Gateway, web, browser e media.", - about: "Identità di build di Control UI e del Gateway connesso.", + about: "Control UI e il Gateway connesso creano l'identità.", aiAgents: "Agenti, modelli, skills, strumenti, memoria, sessione.", debug: "Snapshot, eventi, RPC.", logs: "Log gateway live.", dreams: "Sogni della memoria, consolidamento e riflessione.", plugin: "Pannello fornito dal plugin.", }, + pluginsPage: { + searchLabel: "Cerca plugin", + searchPlaceholder: "Cerca plugin", + browseClawHub: "Sfoglia ClawHub", + refresh: "Aggiorna", + tablistLabel: "Catalogo plugin", + installedTab: "Installati", + discoverTab: "Scopri", + tryAgain: "Riprova", + loading: "Caricamento plugin…", + searching: "Ricerca in ClawHub…", + fromClawHub: "Da ClawHub", + noClawHubResultsBody: "ClawHub non ha risultati per “{query}”.", + noDiscoverMatchTitle: "Nessuna corrispondenza da scoprire", + featuredGroup: "In evidenza", + officialGroup: "Plugin ufficiali", + connectorsGroup: "Connetti il tuo mondo", + connectorsHint: + "Connettori MCP con un clic e ricerche ClawHub selezionate per i servizi più diffusi.", + connectorGroupWork: "Lavoro e produttività", + connectorGroupDev: "Programmazione e infrastruttura", + connectorGroupHome: "Casa e media", + connectorGroupLife: "Vita quotidiana", + connectorMcpNote: "Server MCP con un clic", + connectorClawHubNote: "Plugin della community su ClawHub", + connectorAdd: "Aggiungi", + connectorSearch: "Trova su ClawHub", + connectorAdded: "Aggiunto", + connectorAddedOauth: "Aggiunto {name}. Autenticati con “{command}”, quindi riavvia il gateway.", + connectorAddedEndpoint: + "Aggiunto {name}. Aggiorna endpoint e credenziali nelle impostazioni MCP prima dell'uso.", + connectorAddedReady: "{name} aggiunto. Le nuove sessioni dell'agente possono usarlo subito.", + noInstalledTitle: "Nessun plugin opzionale installato", + noInstalledBody: "Scopri un plugin in evidenza o cerca in ClawHub per estendere OpenClaw.", + noInstalledMatchTitle: "Nessun plugin installato corrispondente", + noMatchBody: "Prova una ricerca diversa.", + filterAll: "Tutti", + filterIssues: "Problemi", + filterLabel: "Filtra i plugin installati", + pulseLabel: "{enabled} abilitati, {disabled} disabilitati, {issues} con problemi", + categoryChannels: "Canali", + categoryProviders: "Provider di modelli", + categoryMemory: "Memoria", + categoryContextEngine: "Motori di contesto", + categoryTools: "Strumenti", + categoryOther: "Altro", + mcpServersGroup: "Server MCP", + mcpSettingsLink: "Impostazioni MCP", + mcpHint: + "Connetti i server Model Context Protocol per fornire strumenti aggiuntivi al tuo agent. Le modifiche si applicano alle nuove sessioni dell'agent.", + mcpAdd: "Aggiungi server", + mcpAdding: "Aggiunta…", + mcpEmpty: + "Non è ancora configurato alcun server MCP. Aggiungine uno qui oppure scegli un connettore da Discover.", + mcpNameLabel: "Nome", + mcpTargetLabel: "URL o comando", + mcpNameInvalid: + "I nomi dei server possono contenere lettere, numeri, punti, trattini o trattini bassi.", + mcpTargetInvalid: "Inserisci un URL http(s) o una riga di comando.", + mcpNameTaken: "Esiste già un server MCP denominato “{name}”.", + mcpMissing: "Il server MCP “{name}” non è stato trovato nella configurazione.", + mcpAddedSuccess: "Server MCP {name} aggiunto.", + mcpRemovedSuccess: "Server MCP {name} rimosso.", + mcpConfigUnavailable: "Configurazione non disponibile; aggiorna e riprova.", + remove: "Rimuovi", + removing: "Rimozione…", + removeNamed: "Rimuovi {name}", + removeConfirm: "Rimuovere questo plugin?", + cancel: "Annulla", + removedRestart: "{name} rimosso. È necessario riavviare il Gateway per applicare la modifica.", + verifiedSource: "Fonte verificata", + menuLabel: "Azioni {name}", + menuDetails: "Visualizza dettagli", + enableAction: "Abilita", + disableAction: "Disabilita", + working: "Elaborazione…", + detailClose: "Chiudi", + detailOrigin: "Origine", + detailCategory: "Categoria", + detailPackage: "Pacchetto", + detailPluginId: "ID plugin", + offlineTitle: "Gateway offline", + offlineBody: "Connettiti per esplorare i plugin installati e consigliati.", + optionalCapability: "Funzionalità OpenClaw facoltativa.", + enabled: "Abilitato", + disabled: "Disabilitato", + available: "Disponibile", + needsAttention: "Richiede attenzione", + included: "Incluso", + global: "Globale", + workspace: "Workspace", + config: "Config", + official: "Ufficiale", + codePlugin: "Plugin di codice", + bundlePlugin: "Bundle plugin", + unavailable: "Non disponibile", + install: "Installa", + installing: "Installazione…", + installNamed: "Installa {name}", + enableNamed: "Abilita {name}", + disableNamed: "Disabilita {name}", + acknowledgeRisk: "Riconosci il rischio e installa", + defaultRiskWarning: "Esamina l'avviso di ClawHub prima di installare questo plugin.", + connectToChange: "Connettiti al gateway per modificare i plugin.", + adminRequired: + "Solo consultazione. Le modifiche ai plugin richiedono l'accesso operator.admin.", + changesDisabled: "Solo consultazione. Questo gateway non consente modifiche ai plugin.", + configRefreshFailed: "Impossibile aggiornare la configurazione di Control UI: {error}", + installedSuccess: "{name} installato.", + installedRestart: + "{name} installato. È necessario riavviare il Gateway per applicare la modifica.", + enabledSuccess: "{name} abilitato.", + enabledRestart: + "{name} abilitato. È necessario riavviare il Gateway per applicare la modifica.", + disabledSuccess: "{name} disabilitato.", + disabledRestart: + "{name} disabilitato. È necessario riavviare il Gateway per applicare la modifica.", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "Identità incorporata durante la build di questo artefatto del browser.", + artifactSubtitle: "Identità incorporata quando questo artefatto del browser è stato creato.", artifactDetails: "Dettagli della build di Control UI", version: "Versione", commit: "Commit", - built: "Compilato", + built: "Creato", unavailable: "Non disponibile", - copyCommit: "Copia l'hash completo del commit", - copyingCommit: "Copia dell'hash del commit in corso", + copyCommit: "Copia hash completo del commit", + copyingCommit: "Copia dell'hash del commit", copiedCommit: "Hash del commit copiato", copyCommitFailed: "Impossibile copiare l'hash del commit", gatewayVersion: "Versione del Gateway connesso", gatewayVersionHint: - "Segnalata dalla connessione Gateway attiva; distinta da questa build di Control UI.", + "Segnalata dalla connessione Gateway attiva; separata da questa build di Control UI.", }, profilePage: { offline: "Connettiti al gateway per incontrare il tuo agente.", @@ -1184,6 +1304,7 @@ export const it: TranslationMap = { sessions: "Sessioni", scheduled: "Pianificati", skills: "Skills", + plugins: "Plugin", settings: "Impostazioni", agents: "Agenti", shellCommand: "Comando shell", diff --git a/ui/src/i18n/locales/ja-JP.ts b/ui/src/i18n/locales/ja-JP.ts index e0a4fcd62305..5646b9953d07 100644 --- a/ui/src/i18n/locales/ja-JP.ts +++ b/ui/src/i18n/locales/ja-JP.ts @@ -543,6 +543,7 @@ export const ja_JP: TranslationMap = { cron: "Cron ジョブ", tasks: "タスク", skills: "Skills", + plugins: "プラグイン", skillWorkshop: "Skill Workshop", nodes: "ノード", chat: "チャット", @@ -573,6 +574,7 @@ export const ja_JP: TranslationMap = { cron: "ウェイクアップと定期実行。", tasks: "バックグラウンドタスク: サブエージェント、cron 実行、CLI。", skills: "Skills と API キー。", + plugins: "任意の機能をインストールして管理します。", skillWorkshop: "提案がライブスキルになる前に、確認、調整、適用します。", nodes: "ペアリング済みデバイスとコマンド。", chat: "すばやく介入するための Gateway チャット。", @@ -583,28 +585,143 @@ export const ja_JP: TranslationMap = { automation: "コマンド、フック、cron、プラグイン。", mcp: "MCP サーバー、認証、ツール、診断。", infrastructure: "Gateway、Web、ブラウザー、メディアの設定。", - about: "Control UI と接続中の Gateway のビルド識別情報。", + about: "Control UI と接続された Gateway のビルド ID。", aiAgents: "エージェント、モデル、Skills、ツール、メモリ、セッション。", debug: "スナップショット、イベント、RPC。", logs: "ライブ Gateway ログ。", dreams: "スリープ中のメモリ統合。", plugin: "プラグインが提供するパネル。", }, + pluginsPage: { + searchLabel: "プラグインを検索", + searchPlaceholder: "プラグインを検索", + browseClawHub: "ClawHubを参照", + refresh: "更新", + tablistLabel: "プラグインカタログ", + installedTab: "インストール済み", + discoverTab: "探す", + tryAgain: "再試行", + loading: "プラグインを読み込み中…", + searching: "ClawHubを検索中…", + fromClawHub: "ClawHub から", + noClawHubResultsBody: "ClawHubには「{query}」の結果がありません。", + noDiscoverMatchTitle: "一致する項目はありません", + featuredGroup: "注目", + officialGroup: "公式プラグイン", + connectorsGroup: "あなたの世界を接続", + connectorsHint: "人気サービス向けのワンクリック MCP コネクタと厳選された ClawHub 検索。", + connectorGroupWork: "仕事と生産性", + connectorGroupDev: "コーディングとインフラストラクチャ", + connectorGroupHome: "ホームとメディア", + connectorGroupLife: "日常生活", + connectorMcpNote: "ワンクリック MCP サーバー", + connectorClawHubNote: "ClawHub のコミュニティプラグイン", + connectorAdd: "追加", + connectorSearch: "ClawHub で検索", + connectorAdded: "追加済み", + connectorAddedOauth: + "{name} を追加しました。“{command}” で認証してから、gateway を再起動してください。", + connectorAddedEndpoint: + "{name} を追加しました。使用する前に MCP 設定でエンドポイントと認証情報を更新してください。", + connectorAddedReady: + "{name} を追加しました。新しいエージェントセッションですぐに使用できます。", + noInstalledTitle: "オプションのプラグインはインストールされていません", + noInstalledBody: "注目のプラグインを見つけるか、ClawHub を検索して OpenClaw を拡張しましょう。", + noInstalledMatchTitle: "一致するインストール済みプラグインはありません", + noMatchBody: "別の検索を試してください。", + filterAll: "すべて", + filterIssues: "問題", + filterLabel: "インストール済みプラグインをフィルター", + pulseLabel: "有効 {enabled} 件、無効 {disabled} 件、問題あり {issues} 件", + categoryChannels: "チャンネル", + categoryProviders: "モデルプロバイダー", + categoryMemory: "メモリ", + categoryContextEngine: "コンテキストエンジン", + categoryTools: "ツール", + categoryOther: "その他", + mcpServersGroup: "MCP サーバー", + mcpSettingsLink: "MCP 設定", + mcpHint: + "Model Context Protocol サーバーに接続して、エージェントに追加のツールを提供します。変更は新しいエージェントセッションに適用されます。", + mcpAdd: "サーバーを追加", + mcpAdding: "追加中…", + mcpEmpty: + "MCP サーバーはまだ設定されていません。ここで追加するか、Discover からコネクタを選択してください。", + mcpNameLabel: "名前", + mcpTargetLabel: "URL またはコマンド", + mcpNameInvalid: "サーバー名には、文字、数字、ドット、ダッシュ、アンダースコアを使用できます。", + mcpTargetInvalid: "http(s) URL またはコマンドラインを入力してください。", + mcpNameTaken: "“{name}” という名前の MCP サーバーはすでに存在します。", + mcpMissing: "MCP サーバー “{name}” が設定内に見つかりませんでした。", + mcpAddedSuccess: "MCP サーバー {name} を追加しました。", + mcpRemovedSuccess: "MCP サーバー {name} を削除しました。", + mcpConfigUnavailable: "設定を利用できません。更新してもう一度お試しください。", + remove: "削除", + removing: "削除中…", + removeNamed: "{name}を削除", + removeConfirm: "このプラグインを削除しますか?", + cancel: "キャンセル", + removedRestart: "{name}を削除しました。変更を適用するにはGatewayの再起動が必要です。", + verifiedSource: "確認済みのソース", + menuLabel: "{name} のアクション", + menuDetails: "詳細を表示", + enableAction: "有効にする", + disableAction: "無効にする", + working: "処理中…", + detailClose: "閉じる", + detailOrigin: "ソース", + detailCategory: "カテゴリ", + detailPackage: "パッケージ", + detailPluginId: "プラグイン ID", + offlineTitle: "Gatewayがオフラインです", + offlineBody: "接続して、インストール済みおよびおすすめのプラグインを閲覧してください。", + optionalCapability: "任意のOpenClaw機能です。", + enabled: "有効", + disabled: "無効", + available: "利用可能", + needsAttention: "対応が必要", + included: "含まれています", + global: "グローバル", + workspace: "ワークスペース", + config: "設定", + official: "公式", + codePlugin: "コードプラグイン", + bundlePlugin: "プラグインをバンドル", + unavailable: "利用不可", + install: "インストール", + installing: "インストール中…", + installNamed: "{name} をインストール", + enableNamed: "{name} を有効化", + disableNamed: "{name} を無効化", + acknowledgeRisk: "リスクを確認してインストール", + defaultRiskWarning: "このプラグインをインストールする前に、ClawHub の警告を確認してください。", + connectToChange: "プラグインを変更するには Gateway に接続してください。", + adminRequired: "閲覧のみ可能です。プラグインの変更には operator.admin アクセスが必要です。", + changesDisabled: "閲覧のみ可能です。この Gateway ではプラグインの変更は許可されていません。", + configRefreshFailed: "Control UI 設定を更新できませんでした: {error}", + installedSuccess: "{name} をインストールしました。", + installedRestart: + "{name} をインストールしました。変更を適用するには Gateway の再起動が必要です。", + enabledSuccess: "{name} を有効化しました。", + enabledRestart: "{name} を有効化しました。変更を適用するには Gateway の再起動が必要です。", + disabledSuccess: "{name} を無効化しました。", + disabledRestart: "{name} を無効化しました。変更を適用するには Gateway の再起動が必要です。", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "このブラウザー向け成果物のビルド時に埋め込まれた識別情報。", + artifactSubtitle: "このブラウザーアーティファクトのビルド時に埋め込まれた ID。", artifactDetails: "Control UI のビルド詳細", version: "バージョン", commit: "コミット", built: "ビルド日時", - unavailable: "利用できません", + unavailable: "利用不可", copyCommit: "完全なコミットハッシュをコピー", copyingCommit: "コミットハッシュをコピー中", copiedCommit: "コミットハッシュをコピーしました", copyCommitFailed: "コミットハッシュをコピーできませんでした", - gatewayVersion: "接続中の Gateway のバージョン", + gatewayVersion: "接続中の Gateway バージョン", gatewayVersionHint: - "アクティブな Gateway 接続から報告された情報です。この Control UI のビルドとは異なります。", + "アクティブな Gateway 接続によって報告されます。この Control UI ビルドとは別です。", }, profilePage: { offline: "Gateway に接続してエージェントに会いましょう。", @@ -1186,6 +1303,7 @@ export const ja_JP: TranslationMap = { sessions: "セッション", scheduled: "スケジュール済み", skills: "Skills", + plugins: "プラグイン", settings: "設定", agents: "エージェント", shellCommand: "シェルコマンド", diff --git a/ui/src/i18n/locales/ko.ts b/ui/src/i18n/locales/ko.ts index 190efb587e23..6b5038b9e425 100644 --- a/ui/src/i18n/locales/ko.ts +++ b/ui/src/i18n/locales/ko.ts @@ -536,6 +536,7 @@ export const ko: TranslationMap = { cron: "Cron 작업", tasks: "작업", skills: "Skills", + plugins: "플러그인", skillWorkshop: "Skill Workshop", nodes: "노드", chat: "채팅", @@ -566,6 +567,7 @@ export const ko: TranslationMap = { cron: "웨이크업 및 반복 실행.", tasks: "백그라운드 작업: 하위 에이전트, cron 실행, CLI.", skills: "Skills 및 API 키.", + plugins: "선택적 기능을 설치하고 관리하세요.", skillWorkshop: "제안이 실제 Skills가 되기 전에 검토하고, 다듬고, 적용하세요.", nodes: "페어링된 디바이스 및 명령.", chat: "빠른 개입을 위한 Gateway 채팅.", @@ -576,27 +578,145 @@ export const ko: TranslationMap = { automation: "명령, hooks, cron, plugins.", mcp: "MCP 서버, 인증, 도구 및 진단.", infrastructure: "Gateway, 웹, 브라우저, 미디어 설정.", - about: "Control UI 및 연결된 Gateway의 빌드 식별 정보입니다.", + about: "Control UI 및 연결된 Gateway 빌드 ID입니다.", aiAgents: "에이전트, 모델, Skills, 도구, 메모리, 세션.", debug: "스냅샷, 이벤트, RPC.", logs: "실시간 Gateway 로그.", dreams: "수면 중 메모리 통합.", plugin: "플러그인이 제공하는 패널입니다.", }, + pluginsPage: { + searchLabel: "플러그인 검색", + searchPlaceholder: "플러그인 검색", + browseClawHub: "ClawHub 둘러보기", + refresh: "새로고침", + tablistLabel: "플러그인 카탈로그", + installedTab: "설치됨", + discoverTab: "탐색", + tryAgain: "다시 시도", + loading: "플러그인 로드 중…", + searching: "ClawHub 검색 중…", + fromClawHub: "ClawHub에서", + noClawHubResultsBody: "ClawHub에 “{query}”에 대한 결과가 없습니다.", + noDiscoverMatchTitle: "탐색할 일치 항목이 없습니다", + featuredGroup: "추천", + officialGroup: "공식 플러그인", + connectorsGroup: "내 세상 연결하기", + connectorsHint: "인기 서비스에 대한 원클릭 MCP 커넥터와 엄선된 ClawHub 검색입니다.", + connectorGroupWork: "업무 및 생산성", + connectorGroupDev: "코딩 및 인프라", + connectorGroupHome: "홈 및 미디어", + connectorGroupLife: "일상생활", + connectorMcpNote: "원클릭 MCP 서버", + connectorClawHubNote: "ClawHub의 커뮤니티 플러그인", + connectorAdd: "추가", + connectorSearch: "ClawHub에서 찾기", + connectorAdded: "추가됨", + connectorAddedOauth: + "{name}을(를) 추가했습니다. “{command}”로 인증한 다음 gateway를 다시 시작하세요.", + connectorAddedEndpoint: + "{name}을(를) 추가했습니다. 사용하기 전에 MCP 설정에서 엔드포인트와 자격 증명을 업데이트하세요.", + connectorAddedReady: + "{name}이(가) 추가되었습니다. 새 에이전트 세션에서 바로 사용할 수 있습니다.", + noInstalledTitle: "설치된 선택적 플러그인이 없습니다", + noInstalledBody: "추천 플러그인을 살펴보거나 ClawHub를 검색해 OpenClaw를 확장하세요.", + noInstalledMatchTitle: "일치하는 설치된 플러그인이 없습니다", + noMatchBody: "다른 검색어를 시도해 보세요.", + filterAll: "전체", + filterIssues: "문제", + filterLabel: "설치된 플러그인 필터링", + pulseLabel: "활성화 {enabled}개, 비활성화 {disabled}개, 문제 있음 {issues}개", + categoryChannels: "채널", + categoryProviders: "모델 제공업체", + categoryMemory: "메모리", + categoryContextEngine: "컨텍스트 엔진", + categoryTools: "도구", + categoryOther: "기타", + mcpServersGroup: "MCP 서버", + mcpSettingsLink: "MCP 설정", + mcpHint: + "에이전트에 추가 도구를 제공하려면 Model Context Protocol 서버를 연결하세요. 변경 사항은 새 에이전트 세션에 적용됩니다.", + mcpAdd: "서버 추가", + mcpAdding: "추가 중…", + mcpEmpty: + "아직 구성된 MCP 서버가 없습니다. 여기에서 추가하거나 Discover에서 커넥터를 선택하세요.", + mcpNameLabel: "이름", + mcpTargetLabel: "URL 또는 명령", + mcpNameInvalid: "서버 이름에는 문자, 숫자, 점, 대시 또는 밑줄을 사용할 수 있습니다.", + mcpTargetInvalid: "http(s) URL 또는 명령줄을 입력하세요.", + mcpNameTaken: "“{name}”이라는 이름의 MCP 서버가 이미 존재합니다.", + mcpMissing: "구성에서 MCP 서버 “{name}”을 찾을 수 없습니다.", + mcpAddedSuccess: "MCP 서버 {name}을(를) 추가했습니다.", + mcpRemovedSuccess: "MCP 서버 {name}을(를) 제거했습니다.", + mcpConfigUnavailable: "구성을 사용할 수 없습니다. 새로고침한 후 다시 시도하세요.", + remove: "제거", + removing: "제거 중…", + removeNamed: "{name} 제거", + removeConfirm: "이 플러그인을 제거하시겠습니까?", + cancel: "취소", + removedRestart: + "{name}이(가) 제거되었습니다. 변경 사항을 적용하려면 Gateway를 다시 시작해야 합니다.", + verifiedSource: "인증된 출처", + menuLabel: "{name} 작업", + menuDetails: "세부 정보 보기", + enableAction: "활성화", + disableAction: "비활성화", + working: "작업 중…", + detailClose: "닫기", + detailOrigin: "소스", + detailCategory: "카테고리", + detailPackage: "패키지", + detailPluginId: "플러그인 ID", + offlineTitle: "Gateway 오프라인", + offlineBody: "설치된 플러그인과 추천 플러그인을 찾아보려면 연결하세요.", + optionalCapability: "선택적 OpenClaw 기능입니다.", + enabled: "사용 설정됨", + disabled: "사용 중지됨", + available: "사용 가능", + needsAttention: "주의 필요", + included: "포함됨", + global: "전역", + workspace: "작업 공간", + config: "구성", + official: "공식", + codePlugin: "코드 플러그인", + bundlePlugin: "플러그인 번들", + unavailable: "사용할 수 없음", + install: "설치", + installing: "설치 중…", + installNamed: "{name} 설치", + enableNamed: "{name} 활성화", + disableNamed: "{name} 비활성화", + acknowledgeRisk: "위험을 확인하고 설치", + defaultRiskWarning: "이 플러그인을 설치하기 전에 ClawHub 경고를 검토하세요.", + connectToChange: "플러그인을 변경하려면 Gateway에 연결하세요.", + adminRequired: "탐색 전용입니다. 플러그인 변경에는 operator.admin 액세스 권한이 필요합니다.", + changesDisabled: "탐색 전용입니다. 이 Gateway에서는 플러그인 변경을 허용하지 않습니다.", + configRefreshFailed: "Control UI 구성을 새로 고칠 수 없습니다: {error}", + installedSuccess: "{name}을(를) 설치했습니다.", + installedRestart: + "{name}을(를) 설치했습니다. 변경 사항을 적용하려면 Gateway를 다시 시작해야 합니다.", + enabledSuccess: "{name}을(를) 활성화했습니다.", + enabledRestart: + "{name}을(를) 활성화했습니다. 변경 사항을 적용하려면 Gateway를 다시 시작해야 합니다.", + disabledSuccess: "{name}을(를) 비활성화했습니다.", + disabledRestart: + "{name}을(를) 비활성화했습니다. 변경 사항을 적용하려면 Gateway를 다시 시작해야 합니다.", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "이 브라우저 아티팩트가 빌드될 때 포함된 식별 정보입니다.", + artifactSubtitle: "이 브라우저 아티팩트가 빌드될 때 포함된 ID입니다.", artifactDetails: "Control UI 빌드 세부 정보", version: "버전", commit: "커밋", - built: "빌드 일시", + built: "빌드됨", unavailable: "사용할 수 없음", copyCommit: "전체 커밋 해시 복사", copyingCommit: "커밋 해시 복사 중", - copiedCommit: "커밋 해시를 복사했습니다", - copyCommitFailed: "커밋 해시를 복사할 수 없습니다", + copiedCommit: "커밋 해시가 복사됨", + copyCommitFailed: "커밋 해시를 복사할 수 없음", gatewayVersion: "연결된 Gateway 버전", - gatewayVersionHint: "활성 Gateway 연결에서 보고한 버전이며, 이 Control UI 빌드와는 별개입니다.", + gatewayVersionHint: "활성 Gateway 연결에서 보고됨; 이 Control UI 빌드와는 별개입니다.", }, profilePage: { offline: "에이전트를 만나려면 Gateway에 연결하세요.", @@ -1174,6 +1294,7 @@ export const ko: TranslationMap = { sessions: "세션", scheduled: "예약됨", skills: "Skills", + plugins: "플러그인", settings: "설정", agents: "에이전트", shellCommand: "셸 명령", diff --git a/ui/src/i18n/locales/nl.ts b/ui/src/i18n/locales/nl.ts index 212618219ecf..deca6f9841b3 100644 --- a/ui/src/i18n/locales/nl.ts +++ b/ui/src/i18n/locales/nl.ts @@ -541,6 +541,7 @@ export const nl: TranslationMap = { cron: "Cronjobs", tasks: "Taken", skills: "Skills", + plugins: "Plugins", skillWorkshop: "Skill Workshop", nodes: "Nodes", chat: "Chat", @@ -571,6 +572,7 @@ export const nl: TranslationMap = { cron: "Wakeups en terugkerende runs.", tasks: "Achtergrondtaken: subagents, cron-runs, CLI.", skills: "Skills en API-sleutels.", + plugins: "Installeer en beheer optionele mogelijkheden.", skillWorkshop: "Bekijk, verfijn en pas voorstellen toe voordat ze live Skills worden.", nodes: "Gekoppelde apparaten en commando's.", chat: "Gateway-chat voor snelle interventies.", @@ -581,28 +583,146 @@ export const nl: TranslationMap = { automation: "Commando's, hooks, cron en plugins.", mcp: "MCP-servers, auth, tools en diagnostiek.", infrastructure: "Gateway-, web-, browser- en media-instellingen.", - about: "Buildidentiteit van de Control UI en de verbonden Gateway.", + about: "Control UI en verbonden Gateway build-identiteit.", aiAgents: "Agents, modellen, skills, tools, geheugen, sessie.", debug: "Momentopnamen, gebeurtenissen, RPC.", logs: "Live Gateway-logs.", dreams: "Geheugendromen, consolidatie en reflectie.", plugin: "Door een plugin geleverd paneel.", }, + pluginsPage: { + searchLabel: "Plugins zoeken", + searchPlaceholder: "Plugins zoeken", + browseClawHub: "Door ClawHub bladeren", + refresh: "Vernieuwen", + tablistLabel: "Plugincatalogus", + installedTab: "Geïnstalleerd", + discoverTab: "Ontdekken", + tryAgain: "Opnieuw proberen", + loading: "Plugins laden…", + searching: "ClawHub zoeken…", + fromClawHub: "Van ClawHub", + noClawHubResultsBody: "ClawHub heeft geen resultaten voor “{query}”.", + noDiscoverMatchTitle: "Geen overeenkomende ontdekkingen", + featuredGroup: "Uitgelicht", + officialGroup: "Officiële plugins", + connectorsGroup: "Verbind je wereld", + connectorsHint: + "MCP-connectors met één klik en zorgvuldig geselecteerde ClawHub-zoekopdrachten voor populaire services.", + connectorGroupWork: "Werk en productiviteit", + connectorGroupDev: "Coderen en infrastructuur", + connectorGroupHome: "Thuis en media", + connectorGroupLife: "Dagelijks leven", + connectorMcpNote: "MCP-server met één klik", + connectorClawHubNote: "Communityplugins op ClawHub", + connectorAdd: "Toevoegen", + connectorSearch: "Zoeken op ClawHub", + connectorAdded: "Toegevoegd", + connectorAddedOauth: + "{name} toegevoegd. Verifieer met “{command}” en start daarna de gateway opnieuw.", + connectorAddedEndpoint: + "{name} toegevoegd. Werk het eindpunt en de inloggegevens bij in de MCP-instellingen vóór gebruik.", + connectorAddedReady: "{name} toegevoegd. Nieuwe agentsessies kunnen het meteen gebruiken.", + noInstalledTitle: "Geen optionele plugins geïnstalleerd", + noInstalledBody: "Ontdek een uitgelichte plugin of zoek in ClawHub om OpenClaw uit te breiden.", + noInstalledMatchTitle: "Geen geïnstalleerde plugins komen overeen", + noMatchBody: "Probeer een andere zoekopdracht.", + filterAll: "Alle", + filterIssues: "Problemen", + filterLabel: "Geïnstalleerde plugins filteren", + pulseLabel: "{enabled} ingeschakeld, {disabled} uitgeschakeld, {issues} met problemen", + categoryChannels: "Kanalen", + categoryProviders: "Modelproviders", + categoryMemory: "Geheugen", + categoryContextEngine: "Context-engines", + categoryTools: "Tools", + categoryOther: "Overig", + mcpServersGroup: "MCP-servers", + mcpSettingsLink: "MCP-instellingen", + mcpHint: + "Verbind Model Context Protocol-servers om je agent extra tools te geven. Wijzigingen gelden voor nieuwe agentsessies.", + mcpAdd: "Server toevoegen", + mcpAdding: "Toevoegen…", + mcpEmpty: + "Er zijn nog geen MCP-servers geconfigureerd. Voeg er hier een toe of kies een connector in Ontdekken.", + mcpNameLabel: "Naam", + mcpTargetLabel: "URL of opdracht", + mcpNameInvalid: "Servernamen gebruiken letters, cijfers, punten, streepjes of underscores.", + mcpTargetInvalid: "Voer een http(s)-URL of een opdrachtregel in.", + mcpNameTaken: "Er bestaat al een MCP-server met de naam “{name}”.", + mcpMissing: "MCP-server “{name}” is niet gevonden in de configuratie.", + mcpAddedSuccess: "MCP-server {name} toegevoegd.", + mcpRemovedSuccess: "MCP-server {name} verwijderd.", + mcpConfigUnavailable: "Configuratie is niet beschikbaar; vernieuw en probeer het opnieuw.", + remove: "Verwijderen", + removing: "Verwijderen…", + removeNamed: "{name} verwijderen", + removeConfirm: "Deze plugin verwijderen?", + cancel: "Annuleren", + removedRestart: + "{name} verwijderd. Een herstart van de Gateway is vereist om de wijziging toe te passen.", + verifiedSource: "Geverifieerde bron", + menuLabel: "{name}-acties", + menuDetails: "Details bekijken", + enableAction: "Inschakelen", + disableAction: "Uitschakelen", + working: "Bezig…", + detailClose: "Sluiten", + detailOrigin: "Bron", + detailCategory: "Categorie", + detailPackage: "Pakket", + detailPluginId: "Plugin-ID", + offlineTitle: "Gateway offline", + offlineBody: "Maak verbinding om geïnstalleerde en aanbevolen plugins te bekijken.", + optionalCapability: "Optionele OpenClaw-mogelijkheid.", + enabled: "Ingeschakeld", + disabled: "Uitgeschakeld", + available: "Beschikbaar", + needsAttention: "Aandacht vereist", + included: "Inbegrepen", + global: "Globaal", + workspace: "Werkruimte", + config: "Config", + official: "Officieel", + codePlugin: "Codeplugin", + bundlePlugin: "Plugin bundelen", + unavailable: "Niet beschikbaar", + install: "Installeren", + installing: "Installeren…", + installNamed: "{name} installeren", + enableNamed: "{name} inschakelen", + disableNamed: "{name} uitschakelen", + acknowledgeRisk: "Risico erkennen en installeren", + defaultRiskWarning: "Lees de ClawHub-waarschuwing voordat u deze plugin installeert.", + connectToChange: "Maak verbinding met de Gateway om plugins te wijzigen.", + adminRequired: "Alleen bekijken. Pluginwijzigingen vereisen operator.admin-toegang.", + changesDisabled: "Alleen bekijken. Deze Gateway staat geen pluginwijzigingen toe.", + configRefreshFailed: "Kan de configuratie van de Control UI niet vernieuwen: {error}", + installedSuccess: "{name} geïnstalleerd.", + installedRestart: + "{name} geïnstalleerd. De Gateway moet opnieuw worden gestart om de wijziging toe te passen.", + enabledSuccess: "{name} ingeschakeld.", + enabledRestart: + "{name} ingeschakeld. De Gateway moet opnieuw worden gestart om de wijziging toe te passen.", + disabledSuccess: "{name} uitgeschakeld.", + disabledRestart: + "{name} uitgeschakeld. De Gateway moet opnieuw worden gestart om de wijziging toe te passen.", + }, aboutPage: { artifactTitle: "Control UI", artifactSubtitle: "Identiteit die is ingesloten toen dit browserartefact werd gebouwd.", - artifactDetails: "Buildgegevens van de Control UI", + artifactDetails: "Buildgegevens van Control UI", version: "Versie", - commit: "Commit-hash", + commit: "Commit", built: "Gebouwd", unavailable: "Niet beschikbaar", copyCommit: "Volledige commit-hash kopiëren", - copyingCommit: "Commit-hash wordt gekopieerd", + copyingCommit: "Commit-hash kopiëren", copiedCommit: "Commit-hash gekopieerd", - copyCommitFailed: "Commit-hash kon niet worden gekopieerd", - gatewayVersion: "Versie van de verbonden Gateway", + copyCommitFailed: "Kon commit-hash niet kopiëren", + gatewayVersion: "Versie van verbonden Gateway", gatewayVersionHint: - "Gerapporteerd door de actieve Gateway-verbinding; staat los van de build van deze Control UI.", + "Gerapporteerd door de actieve Gateway-verbinding; los van deze Control UI-build.", }, profilePage: { offline: "Maak verbinding met de Gateway om je agent te ontmoeten.", @@ -1183,6 +1303,7 @@ export const nl: TranslationMap = { sessions: "Sessies", scheduled: "Gepland", skills: "Skills", + plugins: "Plugins", settings: "Instellingen", agents: "Agents", shellCommand: "Shellcommando", diff --git a/ui/src/i18n/locales/pl.ts b/ui/src/i18n/locales/pl.ts index 008536b6cf29..61bf6a1fec1b 100644 --- a/ui/src/i18n/locales/pl.ts +++ b/ui/src/i18n/locales/pl.ts @@ -539,6 +539,7 @@ export const pl: TranslationMap = { cron: "Zadania Cron", tasks: "Zadania", skills: "Skills", + plugins: "Wtyczki", skillWorkshop: "Warsztat Skills", nodes: "Węzły", chat: "Czat", @@ -549,7 +550,7 @@ export const pl: TranslationMap = { automation: "Automatyzacja", mcp: "MCP", infrastructure: "Infrastruktura", - about: "Informacje", + about: "O aplikacji", aiAgents: "AI i agenci", debug: "Debug", logs: "Logi", @@ -569,6 +570,7 @@ export const pl: TranslationMap = { cron: "Wybudzenia i cykliczne uruchomienia.", tasks: "Zadania w tle: subagenci, uruchomienia cron, CLI.", skills: "Skills i klucze API.", + plugins: "Instaluj i zarządzaj opcjonalnymi funkcjami.", skillWorkshop: "Przeglądaj, dopracowuj i stosuj propozycje, zanim staną się aktywnymi skills.", nodes: "Sparowane urządzenia i polecenia.", chat: "Czat Gateway do szybkich interwencji.", @@ -579,28 +581,147 @@ export const pl: TranslationMap = { automation: "Polecenia, hooki, cron i pluginy.", mcp: "Serwery MCP, uwierzytelnianie, narzędzia i diagnostyka.", infrastructure: "Ustawienia Gateway, web, przeglądarki i multimediów.", - about: "Tożsamość kompilacji Control UI i połączonego Gateway.", + about: "Control UI i połączony Gateway tworzą tożsamość kompilacji.", aiAgents: "Agenci, modele, Skills, narzędzia, pamięć, sesja.", debug: "Migawki, zdarzenia, RPC.", logs: "Logi Gateway na żywo.", dreams: "Konsolidacja pamięci podczas snu.", plugin: "Panel udostępniany przez wtyczkę.", }, + pluginsPage: { + searchLabel: "Szukaj wtyczek", + searchPlaceholder: "Szukaj wtyczek", + browseClawHub: "Przeglądaj ClawHub", + refresh: "Odśwież", + tablistLabel: "Katalog wtyczek", + installedTab: "Zainstalowane", + discoverTab: "Odkryj", + tryAgain: "Spróbuj ponownie", + loading: "Ładowanie wtyczek…", + searching: "Wyszukiwanie w ClawHub…", + fromClawHub: "Z ClawHub", + noClawHubResultsBody: "ClawHub nie ma wyników dla „{query}”.", + noDiscoverMatchTitle: "Brak pasujących elementów do odkrycia", + featuredGroup: "Polecane", + officialGroup: "Oficjalne wtyczki", + connectorsGroup: "Połącz swój świat", + connectorsHint: + "Jednoklikowe konektory MCP i starannie wybrane wyszukiwania w ClawHub dla popularnych usług.", + connectorGroupWork: "Praca i produktywność", + connectorGroupDev: "Programowanie i infrastruktura", + connectorGroupHome: "Dom i multimedia", + connectorGroupLife: "Życie codzienne", + connectorMcpNote: "Jednoklikowy serwer MCP", + connectorClawHubNote: "Wtyczki społeczności w ClawHub", + connectorAdd: "Dodaj", + connectorSearch: "Znajdź w ClawHub", + connectorAdded: "Dodano", + connectorAddedOauth: + "Dodano {name}. Uwierzytelnij za pomocą „{command}”, a następnie uruchom ponownie gateway.", + connectorAddedEndpoint: + "Dodano {name}. Przed użyciem zaktualizuj punkt końcowy i dane logowania w ustawieniach MCP.", + connectorAddedReady: "Dodano {name}. Nowe sesje agentów mogą z niego od razu korzystać.", + noInstalledTitle: "Nie zainstalowano opcjonalnych wtyczek", + noInstalledBody: "Odkryj polecaną wtyczkę lub przeszukaj ClawHub, aby rozszerzyć OpenClaw.", + noInstalledMatchTitle: "Żadne zainstalowane wtyczki nie pasują", + noMatchBody: "Spróbuj innego wyszukiwania.", + filterAll: "Wszystkie", + filterIssues: "Problemy", + filterLabel: "Filtruj zainstalowane wtyczki", + pulseLabel: "{enabled} włączone, {disabled} wyłączone, {issues} z problemami", + categoryChannels: "Kanały", + categoryProviders: "Dostawcy modeli", + categoryMemory: "Pamięć", + categoryContextEngine: "Silniki kontekstu", + categoryTools: "Narzędzia", + categoryOther: "Inne", + mcpServersGroup: "Serwery MCP", + mcpSettingsLink: "Ustawienia MCP", + mcpHint: + "Połącz serwery Model Context Protocol, aby zapewnić agentowi dodatkowe narzędzia. Zmiany mają zastosowanie do nowych sesji agenta.", + mcpAdd: "Dodaj serwer", + mcpAdding: "Dodawanie…", + mcpEmpty: + "Nie skonfigurowano jeszcze żadnych serwerów MCP. Dodaj jeden tutaj lub wybierz łącznik z Discover.", + mcpNameLabel: "Nazwa", + mcpTargetLabel: "URL lub polecenie", + mcpNameInvalid: + "Nazwy serwerów mogą zawierać litery, cyfry, kropki, myślniki lub podkreślenia.", + mcpTargetInvalid: "Wprowadź adres URL http(s) lub wiersz polecenia.", + mcpNameTaken: "Serwer MCP o nazwie „{name}” już istnieje.", + mcpMissing: "Nie znaleziono serwera MCP „{name}” w konfiguracji.", + mcpAddedSuccess: "Dodano serwer MCP {name}.", + mcpRemovedSuccess: "Usunięto serwer MCP {name}.", + mcpConfigUnavailable: "Konfiguracja jest niedostępna; odśwież i spróbuj ponownie.", + remove: "Usuń", + removing: "Usuwanie…", + removeNamed: "Usuń {name}", + removeConfirm: "Usunąć tę wtyczkę?", + cancel: "Anuluj", + removedRestart: + "Usunięto {name}. Aby zastosować zmianę, wymagane jest ponowne uruchomienie Gateway.", + verifiedSource: "Zweryfikowane źródło", + menuLabel: "Działania dla {name}", + menuDetails: "Zobacz szczegóły", + enableAction: "Włącz", + disableAction: "Wyłącz", + working: "Przetwarzanie…", + detailClose: "Zamknij", + detailOrigin: "Źródło", + detailCategory: "Kategoria", + detailPackage: "Pakiet", + detailPluginId: "Identyfikator wtyczki", + offlineTitle: "Gateway offline", + offlineBody: "Połącz, aby przeglądać zainstalowane i polecane wtyczki.", + optionalCapability: "Opcjonalna funkcja OpenClaw.", + enabled: "Włączone", + disabled: "Wyłączone", + available: "Dostępne", + needsAttention: "Wymaga uwagi", + included: "Uwzględnione", + global: "Globalne", + workspace: "Obszar roboczy", + config: "Konfiguracja", + official: "Oficjalne", + codePlugin: "Wtyczka kodu", + bundlePlugin: "Pakiet wtyczki", + unavailable: "Niedostępne", + install: "Zainstaluj", + installing: "Instalowanie…", + installNamed: "Zainstaluj {name}", + enableNamed: "Włącz {name}", + disableNamed: "Wyłącz {name}", + acknowledgeRisk: "Potwierdź ryzyko i zainstaluj", + defaultRiskWarning: "Przejrzyj ostrzeżenie ClawHub przed zainstalowaniem tej wtyczki.", + connectToChange: "Połącz się z gatewayem, aby zmieniać wtyczki.", + adminRequired: "Tylko przeglądanie. Zmiany wtyczek wymagają dostępu operator.admin.", + changesDisabled: "Tylko przeglądanie. Ten gateway nie pozwala na zmiany wtyczek.", + configRefreshFailed: "Nie udało się odświeżyć konfiguracji Control UI: {error}", + installedSuccess: "Zainstalowano {name}.", + installedRestart: + "Zainstalowano {name}. Wymagane jest ponowne uruchomienie Gateway, aby zastosować zmianę.", + enabledSuccess: "Włączono {name}.", + enabledRestart: + "Włączono {name}. Wymagane jest ponowne uruchomienie Gateway, aby zastosować zmianę.", + disabledSuccess: "Wyłączono {name}.", + disabledRestart: + "Wyłączono {name}. Wymagane jest ponowne uruchomienie Gateway, aby zastosować zmianę.", + }, aboutPage: { artifactTitle: "Control UI", artifactSubtitle: "Tożsamość osadzona podczas tworzenia tego artefaktu przeglądarki.", artifactDetails: "Szczegóły kompilacji Control UI", version: "Wersja", - commit: "Hash commita", - built: "Data kompilacji", + commit: "Commit", + built: "Zbudowano", unavailable: "Niedostępne", - copyCommit: "Kopiuj pełny hash commita", - copyingCommit: "Kopiowanie hasha commita", - copiedCommit: "Skopiowano hash commita", - copyCommitFailed: "Nie udało się skopiować hasha commita", + copyCommit: "Kopiuj pełny hash commitu", + copyingCommit: "Kopiowanie hasha commitu", + copiedCommit: "Hash commitu skopiowany", + copyCommitFailed: "Nie udało się skopiować hasha commitu", gatewayVersion: "Wersja połączonego Gateway", gatewayVersionHint: - "Zgłoszona przez aktywne połączenie Gateway; niezależna od tej kompilacji Control UI.", + "Zgłaszana przez aktywne połączenie Gateway; niezależna od tej kompilacji Control UI.", }, profilePage: { offline: "Połącz się z Gateway, aby poznać swojego agenta.", @@ -1181,6 +1302,7 @@ export const pl: TranslationMap = { sessions: "Sesje", scheduled: "Zaplanowane", skills: "Skills", + plugins: "Wtyczki", settings: "Ustawienia", agents: "Agenci", shellCommand: "Polecenie powłoki", diff --git a/ui/src/i18n/locales/pt-BR.ts b/ui/src/i18n/locales/pt-BR.ts index 33c85487c37b..e698671aa6a8 100644 --- a/ui/src/i18n/locales/pt-BR.ts +++ b/ui/src/i18n/locales/pt-BR.ts @@ -537,6 +537,7 @@ export const pt_BR: TranslationMap = { cron: "Tarefas Cron", tasks: "Tarefas", skills: "Skills", + plugins: "Plugins", skillWorkshop: "Oficina de Skills", nodes: "Nós", chat: "Chat", @@ -567,6 +568,7 @@ export const pt_BR: TranslationMap = { cron: "Despertares e execuções.", tasks: "Tarefas em segundo plano: subagentes, execuções de cron, CLI.", skills: "Habilidades e chaves API.", + plugins: "Instale e gerencie recursos opcionais.", skillWorkshop: "Revise, refine e aplique propostas antes que elas se tornem skills ativas.", nodes: "Dispositivos e comandos.", chat: "Chat do gateway para intervenções rápidas.", @@ -577,28 +579,144 @@ export const pt_BR: TranslationMap = { automation: "Configurações de comandos, hooks, cron e plugins.", mcp: "Servidores MCP, autenticação, ferramentas e diagnósticos.", infrastructure: "Configurações de gateway, web, browser e mídia.", - about: "Identidade de compilação do Control UI e do Gateway conectado.", + about: "A Control UI e o Gateway conectado criam a identidade.", aiAgents: "Configurações de agentes, modelos, habilidades, ferramentas, memória e sessão.", debug: "Snapshots, eventos, RPC.", logs: "Logs ao vivo do gateway.", dreams: "Consolidação de memória durante o sono.", plugin: "Painel fornecido pelo plugin.", }, + pluginsPage: { + searchLabel: "Pesquisar plugins", + searchPlaceholder: "Pesquisar plugins", + browseClawHub: "Explorar o ClawHub", + refresh: "Atualizar", + tablistLabel: "Catálogo de plugins", + installedTab: "Instalados", + discoverTab: "Descobrir", + tryAgain: "Tentar novamente", + loading: "Carregando plugins…", + searching: "Pesquisando no ClawHub…", + fromClawHub: "Do ClawHub", + noClawHubResultsBody: "O ClawHub não tem resultados para “{query}”.", + noDiscoverMatchTitle: "Nada para descobrir corresponde", + featuredGroup: "Em destaque", + officialGroup: "Plugins oficiais", + connectorsGroup: "Conecte seu mundo", + connectorsHint: + "Conectores MCP com um clique e buscas selecionadas no ClawHub para serviços populares.", + connectorGroupWork: "Trabalho e produtividade", + connectorGroupDev: "Programação e infraestrutura", + connectorGroupHome: "Casa e mídia", + connectorGroupLife: "Vida cotidiana", + connectorMcpNote: "Servidor MCP com um clique", + connectorClawHubNote: "Plugins da comunidade no ClawHub", + connectorAdd: "Adicionar", + connectorSearch: "Encontrar no ClawHub", + connectorAdded: "Adicionado", + connectorAddedOauth: "{name} adicionado. Autentique com “{command}” e reinicie o gateway.", + connectorAddedEndpoint: + "{name} adicionado. Atualize o endpoint e as credenciais nas configurações do MCP antes de usar.", + connectorAddedReady: "{name} adicionado. Novas sessões de agente podem usá-lo imediatamente.", + noInstalledTitle: "Nenhum plugin opcional instalado", + noInstalledBody: + "Descubra um plugin em destaque ou pesquise no ClawHub para expandir o OpenClaw.", + noInstalledMatchTitle: "Nenhum plugin instalado corresponde", + noMatchBody: "Tente uma busca diferente.", + filterAll: "Todos", + filterIssues: "Problemas", + filterLabel: "Filtrar plugins instalados", + pulseLabel: "{enabled} habilitados, {disabled} desabilitados, {issues} com problemas", + categoryChannels: "Canais", + categoryProviders: "Provedores de modelo", + categoryMemory: "Memória", + categoryContextEngine: "Mecanismos de contexto", + categoryTools: "Ferramentas", + categoryOther: "Outros", + mcpServersGroup: "Servidores MCP", + mcpSettingsLink: "Configurações de MCP", + mcpHint: + "Conecte servidores Model Context Protocol para fornecer ferramentas extras ao seu agente. As alterações se aplicam a novas sessões do agente.", + mcpAdd: "Adicionar servidor", + mcpAdding: "Adicionando…", + mcpEmpty: + "Nenhum servidor MCP configurado ainda. Adicione um aqui ou escolha um conector em Discover.", + mcpNameLabel: "Nome", + mcpTargetLabel: "URL ou comando", + mcpNameInvalid: "Nomes de servidor usam letras, números, pontos, hifens ou sublinhados.", + mcpTargetInvalid: "Insira uma URL http(s) ou uma linha de comando.", + mcpNameTaken: "Um servidor MCP chamado “{name}” já existe.", + mcpMissing: "O servidor MCP “{name}” não foi encontrado na configuração.", + mcpAddedSuccess: "Servidor MCP {name} adicionado.", + mcpRemovedSuccess: "Servidor MCP {name} removido.", + mcpConfigUnavailable: "A configuração não está disponível; atualize e tente novamente.", + remove: "Remover", + removing: "Removendo…", + removeNamed: "Remover {name}", + removeConfirm: "Remover este plugin?", + cancel: "Cancelar", + removedRestart: "{name} removido. É necessário reiniciar o Gateway para aplicar a alteração.", + verifiedSource: "Fonte verificada", + menuLabel: "Ações de {name}", + menuDetails: "Ver detalhes", + enableAction: "Ativar", + disableAction: "Desativar", + working: "Trabalhando…", + detailClose: "Fechar", + detailOrigin: "Origem", + detailCategory: "Categoria", + detailPackage: "Pacote", + detailPluginId: "ID do plugin", + offlineTitle: "Gateway offline", + offlineBody: "Conecte-se para procurar plugins instalados e recomendados.", + optionalCapability: "Recurso opcional do OpenClaw.", + enabled: "Ativado", + disabled: "Desativado", + available: "Disponível", + needsAttention: "Requer atenção", + included: "Incluído", + global: "Global", + workspace: "Espaço de trabalho", + config: "Configuração", + official: "Oficial", + codePlugin: "Plugin de código", + bundlePlugin: "Plugin de pacote", + unavailable: "Indisponível", + install: "Instalar", + installing: "Instalando…", + installNamed: "Instalar {name}", + enableNamed: "Ativar {name}", + disableNamed: "Desativar {name}", + acknowledgeRisk: "Reconhecer o risco e instalar", + defaultRiskWarning: "Revise o aviso do ClawHub antes de instalar este plugin.", + connectToChange: "Conecte-se ao gateway para alterar plugins.", + adminRequired: "Somente navegação. Alterações de plugins exigem acesso operator.admin.", + changesDisabled: "Somente navegação. Este gateway não permite alterações de plugins.", + configRefreshFailed: "Não foi possível atualizar a configuração da Control UI: {error}", + installedSuccess: "{name} instalado.", + installedRestart: + "{name} instalado. É necessário reiniciar o Gateway para aplicar a alteração.", + enabledSuccess: "{name} ativado.", + enabledRestart: "{name} ativado. É necessário reiniciar o Gateway para aplicar a alteração.", + disabledSuccess: "{name} desativado.", + disabledRestart: + "{name} desativado. É necessário reiniciar o Gateway para aplicar a alteração.", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "Identidade incorporada quando este artefato do navegador foi compilado.", - artifactDetails: "Detalhes da build do Control UI", + artifactSubtitle: "Identidade incorporada quando este artefato do navegador foi criado.", + artifactDetails: "Detalhes da build da Control UI", version: "Versão", commit: "Commit", - built: "Compilado", + built: "Criado", unavailable: "Indisponível", - copyCommit: "Copiar o hash completo do commit", - copyingCommit: "Copiando o hash do commit", + copyCommit: "Copiar hash completo do commit", + copyingCommit: "Copiando hash do commit", copiedCommit: "Hash do commit copiado", copyCommitFailed: "Não foi possível copiar o hash do commit", gatewayVersion: "Versão do Gateway conectado", gatewayVersionHint: - "Informada pela conexão ativa ao Gateway; separada desta build do Control UI.", + "Informada pela conexão ativa do Gateway; separada desta build da Control UI.", }, profilePage: { offline: "Conecte-se ao gateway para conhecer seu agente.", @@ -1179,6 +1297,7 @@ export const pt_BR: TranslationMap = { sessions: "Sessões", scheduled: "Agendado", skills: "Skills", + plugins: "Plugins", settings: "Configurações", agents: "Agentes", shellCommand: "Comando de shell", diff --git a/ui/src/i18n/locales/ru.ts b/ui/src/i18n/locales/ru.ts index 815143694058..1b5196cddb11 100644 --- a/ui/src/i18n/locales/ru.ts +++ b/ui/src/i18n/locales/ru.ts @@ -542,6 +542,7 @@ export const ru: TranslationMap = { cron: "Задания Cron", tasks: "Задачи", skills: "Навыки", + plugins: "Плагины", skillWorkshop: "Мастерская навыков", nodes: "Узлы", chat: "Чат", @@ -572,6 +573,7 @@ export const ru: TranslationMap = { cron: "Пробуждения и повторяющиеся запуски.", tasks: "Фоновые задачи: субагенты, запуски cron, CLI.", skills: "Навыки и ключи API.", + plugins: "Устанавливайте дополнительные возможности и управляйте ими.", skillWorkshop: "Проверяйте, уточняйте и применяйте предложения до того, как они станут активными навыками.", nodes: "Сопряженные устройства и команды.", @@ -583,28 +585,143 @@ export const ru: TranslationMap = { automation: "Команды, хуки, cron и плагины.", mcp: "Серверы MCP, аутентификация, инструменты и диагностика.", infrastructure: "Настройки шлюза, веба, браузера и медиа.", - about: "Идентификаторы сборки Control UI и подключённого Gateway.", + about: "Control UI и подключенный Gateway формируют идентичность.", aiAgents: "Агенты, модели, навыки, инструменты, память, сессия.", debug: "Снимки, события, RPC.", logs: "Живые журналы шлюза.", dreams: "Сновидения памяти, консолидация и рефлексия.", plugin: "Панель, предоставленная плагином.", }, + pluginsPage: { + searchLabel: "Поиск плагинов", + searchPlaceholder: "Поиск плагинов", + browseClawHub: "Открыть ClawHub", + refresh: "Обновить", + tablistLabel: "Каталог плагинов", + installedTab: "Установленные", + discoverTab: "Обзор", + tryAgain: "Повторить попытку", + loading: "Загрузка плагинов…", + searching: "Поиск в ClawHub…", + fromClawHub: "Из ClawHub", + noClawHubResultsBody: "В ClawHub нет результатов для «{query}».", + noDiscoverMatchTitle: "Нет совпадений для обзора", + featuredGroup: "Рекомендуемые", + officialGroup: "Официальные плагины", + connectorsGroup: "Подключите свой мир", + connectorsHint: + "MCP-коннекторы в один клик и подобранные поисковые запросы ClawHub для популярных сервисов.", + connectorGroupWork: "Работа и продуктивность", + connectorGroupDev: "Программирование и инфраструктура", + connectorGroupHome: "Дом и медиа", + connectorGroupLife: "Повседневная жизнь", + connectorMcpNote: "MCP-сервер в один клик", + connectorClawHubNote: "Плагины сообщества на ClawHub", + connectorAdd: "Добавить", + connectorSearch: "Найти на ClawHub", + connectorAdded: "Добавлено", + connectorAddedOauth: + "Добавлен {name}. Выполните аутентификацию с помощью «{command}», затем перезапустите gateway.", + connectorAddedEndpoint: + "Добавлен {name}. Перед использованием обновите конечную точку и учетные данные в настройках MCP.", + connectorAddedReady: "{name} добавлен. Новые сеансы агента могут использовать его сразу.", + noInstalledTitle: "Не установлены дополнительные плагины", + noInstalledBody: + "Откройте для себя рекомендуемый плагин или выполните поиск в ClawHub, чтобы расширить OpenClaw.", + noInstalledMatchTitle: "Нет подходящих установленных плагинов", + noMatchBody: "Попробуйте другой поисковый запрос.", + filterAll: "Все", + filterIssues: "Проблемы", + filterLabel: "Фильтр установленных плагинов", + pulseLabel: "{enabled} включено, {disabled} отключено, {issues} с проблемами", + categoryChannels: "Каналы", + categoryProviders: "Поставщики моделей", + categoryMemory: "Память", + categoryContextEngine: "Контекстные движки", + categoryTools: "Инструменты", + categoryOther: "Другое", + mcpServersGroup: "MCP-серверы", + mcpSettingsLink: "Настройки MCP", + mcpHint: + "Подключите серверы Model Context Protocol, чтобы предоставить вашему агенту дополнительные инструменты. Изменения применяются к новым сеансам агента.", + mcpAdd: "Добавить сервер", + mcpAdding: "Добавление…", + mcpEmpty: + "Серверы MCP еще не настроены. Добавьте сервер здесь или выберите коннектор в Discover.", + mcpNameLabel: "Имя", + mcpTargetLabel: "URL или команда", + mcpNameInvalid: "Имена серверов могут содержать буквы, цифры, точки, дефисы или подчеркивания.", + mcpTargetInvalid: "Введите URL http(s) или командную строку.", + mcpNameTaken: "MCP-сервер с именем «{name}» уже существует.", + mcpMissing: "MCP-сервер «{name}» не найден в конфигурации.", + mcpAddedSuccess: "MCP-сервер {name} добавлен.", + mcpRemovedSuccess: "MCP-сервер {name} удален.", + mcpConfigUnavailable: "Конфигурация недоступна; обновите страницу и повторите попытку.", + remove: "Удалить", + removing: "Удаление…", + removeNamed: "Удалить {name}", + removeConfirm: "Удалить этот плагин?", + cancel: "Отмена", + removedRestart: "{name} удален. Для применения изменения требуется перезапуск Gateway.", + verifiedSource: "Проверенный источник", + menuLabel: "Действия для {name}", + menuDetails: "Просмотреть сведения", + enableAction: "Включить", + disableAction: "Отключить", + working: "Выполняется…", + detailClose: "Закрыть", + detailOrigin: "Источник", + detailCategory: "Категория", + detailPackage: "Пакет", + detailPluginId: "ID плагина", + offlineTitle: "Gateway не в сети", + offlineBody: "Подключитесь, чтобы просмотреть установленные и рекомендуемые плагины.", + optionalCapability: "Необязательная возможность OpenClaw.", + enabled: "Включено", + disabled: "Отключено", + available: "Доступно", + needsAttention: "Требует внимания", + included: "Включено", + global: "Глобально", + workspace: "Рабочая область", + config: "Конфигурация", + official: "Официальный", + codePlugin: "Плагин кода", + bundlePlugin: "Плагин-пакет", + unavailable: "Недоступно", + install: "Установить", + installing: "Установка…", + installNamed: "Установить {name}", + enableNamed: "Включить {name}", + disableNamed: "Отключить {name}", + acknowledgeRisk: "Принять риск и установить", + defaultRiskWarning: "Ознакомьтесь с предупреждением ClawHub перед установкой этого плагина.", + connectToChange: "Подключитесь к Gateway, чтобы изменить плагины.", + adminRequired: "Только просмотр. Для изменения плагинов требуется доступ operator.admin.", + changesDisabled: "Только просмотр. Этот Gateway не разрешает изменения плагинов.", + configRefreshFailed: "Не удалось обновить конфигурацию Control UI: {error}", + installedSuccess: "Установлен {name}.", + installedRestart: "Установлен {name}. Для применения изменения требуется перезапуск Gateway.", + enabledSuccess: "Включен {name}.", + enabledRestart: "Включен {name}. Для применения изменения требуется перезапуск Gateway.", + disabledSuccess: "Отключен {name}.", + disabledRestart: "Отключен {name}. Для применения изменения требуется перезапуск Gateway.", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "Идентификатор, встроенный при сборке этого браузерного артефакта.", + artifactSubtitle: "Идентичность, встроенная при сборке этого браузерного артефакта.", artifactDetails: "Сведения о сборке Control UI", version: "Версия", commit: "Коммит", - built: "Собрано", + built: "Сборка", unavailable: "Недоступно", copyCommit: "Скопировать полный хеш коммита", copyingCommit: "Копирование хеша коммита", copiedCommit: "Хеш коммита скопирован", copyCommitFailed: "Не удалось скопировать хеш коммита", - gatewayVersion: "Версия подключённого Gateway", + gatewayVersion: "Версия подключенного Gateway", gatewayVersionHint: - "Эту версию сообщает активное подключение к Gateway; она не относится к сборке Control UI.", + "Сообщается активным подключением Gateway; отдельно от этой сборки Control UI.", }, profilePage: { offline: "Подключитесь к Gateway, чтобы встретить своего агента.", @@ -1186,6 +1303,7 @@ export const ru: TranslationMap = { sessions: "Сеансы", scheduled: "Запланировано", skills: "Навыки", + plugins: "Плагины", settings: "Настройки", agents: "Агенты", shellCommand: "Shell Command", diff --git a/ui/src/i18n/locales/th.ts b/ui/src/i18n/locales/th.ts index ef73ad5f0a7c..42d05245c73d 100644 --- a/ui/src/i18n/locales/th.ts +++ b/ui/src/i18n/locales/th.ts @@ -535,6 +535,7 @@ export const th: TranslationMap = { cron: "งาน Cron", tasks: "งาน", skills: "ทักษะ", + plugins: "ปลั๊กอิน", skillWorkshop: "Skill Workshop", nodes: "โหนด", chat: "แชต", @@ -565,6 +566,7 @@ export const th: TranslationMap = { cron: "การปลุกและการทำงานตามรอบ", tasks: "งานเบื้องหลัง: subagents, การรัน cron, CLI.", skills: "ทักษะและคีย์ API", + plugins: "ติดตั้งและจัดการความสามารถเสริม", skillWorkshop: "ตรวจสอบ ปรับแต่ง และนำข้อเสนอไปใช้ก่อนที่จะกลายเป็น Skills ที่ใช้งานจริง", nodes: "อุปกรณ์ที่จับคู่และคำสั่ง", chat: "แชตเกตเวย์สำหรับการดำเนินการอย่างรวดเร็ว", @@ -575,27 +577,137 @@ export const th: TranslationMap = { automation: "คำสั่ง hooks cron และ plugins", mcp: "เซิร์ฟเวอร์ MCP, การยืนยันตัวตน, เครื่องมือ และการวินิจฉัย", infrastructure: "การตั้งค่าเกตเวย์ เว็บ เบราว์เซอร์ และสื่อ", - about: "ข้อมูลระบุบิลด์ของ Control UI และ Gateway ที่เชื่อมต่ออยู่", + about: "ข้อมูลระบุตัวตนของบิลด์ Control UI และ Gateway ที่เชื่อมต่อ", aiAgents: "เอเจนต์ โมเดล ทักษะ เครื่องมือ หน่วยความจำ เซสชัน", debug: "สแนปช็อต เหตุการณ์ และ RPC", logs: "บันทึกเกตเวย์แบบสด", dreams: "การฝันของหน่วยความจำ การรวมข้อมูล และการสะท้อนคิด", plugin: "แผงที่ปลั๊กอินจัดเตรียมไว้", }, + pluginsPage: { + searchLabel: "ค้นหาปลั๊กอิน", + searchPlaceholder: "ค้นหาปลั๊กอิน", + browseClawHub: "เรียกดู ClawHub", + refresh: "รีเฟรช", + tablistLabel: "แค็ตตาล็อกปลั๊กอิน", + installedTab: "ติดตั้งแล้ว", + discoverTab: "ค้นพบ", + tryAgain: "ลองอีกครั้ง", + loading: "กำลังโหลดปลั๊กอิน…", + searching: "กำลังค้นหา ClawHub…", + fromClawHub: "จาก ClawHub", + noClawHubResultsBody: "ClawHub ไม่มีผลลัพธ์สำหรับ “{query}”", + noDiscoverMatchTitle: "ไม่มีสิ่งใดที่ค้นพบตรงกัน", + featuredGroup: "แนะนำ", + officialGroup: "ปลั๊กอินทางการ", + connectorsGroup: "เชื่อมต่อโลกของคุณ", + connectorsHint: "ตัวเชื่อมต่อ MCP แบบคลิกเดียว และการค้นหา ClawHub ที่คัดสรรสำหรับบริการยอดนิยม", + connectorGroupWork: "งานและประสิทธิภาพการทำงาน", + connectorGroupDev: "การเขียนโค้ดและโครงสร้างพื้นฐาน", + connectorGroupHome: "บ้านและสื่อ", + connectorGroupLife: "ชีวิตประจำวัน", + connectorMcpNote: "เซิร์ฟเวอร์ MCP แบบคลิกเดียว", + connectorClawHubNote: "ปลั๊กอินชุมชนบน ClawHub", + connectorAdd: "เพิ่ม", + connectorSearch: "ค้นหาบน ClawHub", + connectorAdded: "เพิ่มแล้ว", + connectorAddedOauth: "เพิ่ม {name} แล้ว ยืนยันตัวตนด้วย “{command}” จากนั้นรีสตาร์ท gateway", + connectorAddedEndpoint: "เพิ่ม {name} แล้ว อัปเดต endpoint และ credentials ในการตั้งค่า MCP ก่อนใช้งาน", + connectorAddedReady: "เพิ่ม {name} แล้ว เซสชันเอเจนต์ใหม่สามารถใช้งานได้ทันที", + noInstalledTitle: "ไม่ได้ติดตั้งปลั๊กอินเสริม", + noInstalledBody: "ค้นพบปลั๊กอินแนะนำหรือค้นหา ClawHub เพื่อขยาย OpenClaw", + noInstalledMatchTitle: "ไม่มีปลั๊กอินที่ติดตั้งตรงกัน", + noMatchBody: "ลองค้นหาด้วยคำอื่น", + filterAll: "ทั้งหมด", + filterIssues: "ปัญหา", + filterLabel: "กรองปลั๊กอินที่ติดตั้ง", + pulseLabel: "เปิดใช้งาน {enabled} รายการ, ปิดใช้งาน {disabled} รายการ, มีปัญหา {issues} รายการ", + categoryChannels: "ช่องทาง", + categoryProviders: "ผู้ให้บริการโมเดล", + categoryMemory: "หน่วยความจำ", + categoryContextEngine: "เอนจินบริบท", + categoryTools: "เครื่องมือ", + categoryOther: "อื่น ๆ", + mcpServersGroup: "เซิร์ฟเวอร์ MCP", + mcpSettingsLink: "การตั้งค่า MCP", + mcpHint: + "เชื่อมต่อเซิร์ฟเวอร์ Model Context Protocol เพื่อมอบเครื่องมือเพิ่มเติมให้เอเจนต์ของคุณ การเปลี่ยนแปลงจะมีผลกับเซสชันเอเจนต์ใหม่", + mcpAdd: "เพิ่มเซิร์ฟเวอร์", + mcpAdding: "กำลังเพิ่ม…", + mcpEmpty: "ยังไม่ได้กำหนดค่าเซิร์ฟเวอร์ MCP เพิ่มที่นี่หรือเลือกตัวเชื่อมต่อจาก Discover", + mcpNameLabel: "ชื่อ", + mcpTargetLabel: "URL หรือคำสั่ง", + mcpNameInvalid: "ชื่อเซิร์ฟเวอร์ใช้ตัวอักษร ตัวเลข จุด ขีดกลาง หรือขีดล่างได้", + mcpTargetInvalid: "ป้อน URL http(s) หรือบรรทัดคำสั่ง", + mcpNameTaken: "มีเซิร์ฟเวอร์ MCP ชื่อ “{name}” อยู่แล้ว", + mcpMissing: "ไม่พบเซิร์ฟเวอร์ MCP “{name}” ในการกำหนดค่า", + mcpAddedSuccess: "เพิ่มเซิร์ฟเวอร์ MCP {name} แล้ว", + mcpRemovedSuccess: "นำเซิร์ฟเวอร์ MCP {name} ออกแล้ว", + mcpConfigUnavailable: "ไม่สามารถใช้งานการกำหนดค่าได้ รีเฟรชแล้วลองอีกครั้ง", + remove: "ลบ", + removing: "กำลังลบ…", + removeNamed: "ลบ {name}", + removeConfirm: "ลบปลั๊กอินนี้หรือไม่?", + cancel: "ยกเลิก", + removedRestart: "ลบ {name} แล้ว ต้องรีสตาร์ท Gateway เพื่อใช้การเปลี่ยนแปลง", + verifiedSource: "แหล่งที่มายืนยันแล้ว", + menuLabel: "การดำเนินการของ {name}", + menuDetails: "ดูรายละเอียด", + enableAction: "เปิดใช้งาน", + disableAction: "ปิดใช้งาน", + working: "กำลังดำเนินการ…", + detailClose: "ปิด", + detailOrigin: "แหล่งที่มา", + detailCategory: "หมวดหมู่", + detailPackage: "แพ็กเกจ", + detailPluginId: "รหัสปลั๊กอิน", + offlineTitle: "Gateway ออฟไลน์", + offlineBody: "เชื่อมต่อเพื่อเรียกดูปลั๊กอินที่ติดตั้งและแนะนำ", + optionalCapability: "ความสามารถเสริมของ OpenClaw", + enabled: "เปิดใช้งานแล้ว", + disabled: "ปิดใช้งานแล้ว", + available: "พร้อมใช้งาน", + needsAttention: "ต้องตรวจสอบ", + included: "รวมอยู่แล้ว", + global: "ส่วนกลาง", + workspace: "พื้นที่ทำงาน", + config: "การกำหนดค่า", + official: "ทางการ", + codePlugin: "ปลั๊กอินโค้ด", + bundlePlugin: "ปลั๊กอินแบบ Bundle", + unavailable: "ไม่พร้อมใช้งาน", + install: "ติดตั้ง", + installing: "กำลังติดตั้ง…", + installNamed: "ติดตั้ง {name}", + enableNamed: "เปิดใช้งาน {name}", + disableNamed: "ปิดใช้งาน {name}", + acknowledgeRisk: "รับทราบความเสี่ยงและติดตั้ง", + defaultRiskWarning: "โปรดตรวจสอบคำเตือนของ ClawHub ก่อนติดตั้งปลั๊กอินนี้", + connectToChange: "เชื่อมต่อกับ gateway เพื่อเปลี่ยนแปลงปลั๊กอิน", + adminRequired: "เรียกดูได้เท่านั้น การเปลี่ยนแปลงปลั๊กอินต้องมีสิทธิ์ operator.admin", + changesDisabled: "เรียกดูได้เท่านั้น gateway นี้ไม่อนุญาตให้เปลี่ยนแปลงปลั๊กอิน", + configRefreshFailed: "ไม่สามารถรีเฟรชการกำหนดค่า Control UI ได้: {error}", + installedSuccess: "ติดตั้ง {name} แล้ว", + installedRestart: "ติดตั้ง {name} แล้ว ต้องรีสตาร์ท Gateway เพื่อใช้การเปลี่ยนแปลง", + enabledSuccess: "เปิดใช้งาน {name} แล้ว", + enabledRestart: "เปิดใช้งาน {name} แล้ว ต้องรีสตาร์ท Gateway เพื่อใช้การเปลี่ยนแปลง", + disabledSuccess: "ปิดใช้งาน {name} แล้ว", + disabledRestart: "ปิดใช้งาน {name} แล้ว ต้องรีสตาร์ท Gateway เพื่อใช้การเปลี่ยนแปลง", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "ข้อมูลระบุที่ฝังไว้ขณะบิลด์อาร์ติแฟกต์ของเบราว์เซอร์นี้", + artifactSubtitle: "ข้อมูลระบุตัวตนที่ฝังไว้เมื่อสร้างอาร์ติแฟกต์เบราว์เซอร์นี้", artifactDetails: "รายละเอียดบิลด์ Control UI", version: "เวอร์ชัน", commit: "คอมมิต", - built: "บิลด์เมื่อ", + built: "สร้างเมื่อ", unavailable: "ไม่พร้อมใช้งาน", copyCommit: "คัดลอกแฮชคอมมิตแบบเต็ม", copyingCommit: "กำลังคัดลอกแฮชคอมมิต", copiedCommit: "คัดลอกแฮชคอมมิตแล้ว", copyCommitFailed: "ไม่สามารถคัดลอกแฮชคอมมิตได้", - gatewayVersion: "เวอร์ชัน Gateway ที่เชื่อมต่ออยู่", - gatewayVersionHint: "รายงานโดยการเชื่อมต่อ Gateway ที่ใช้งานอยู่ และแยกจากบิลด์ Control UI นี้", + gatewayVersion: "เวอร์ชัน Gateway ที่เชื่อมต่อ", + gatewayVersionHint: "รายงานโดยการเชื่อมต่อ Gateway ที่ใช้งานอยู่ ซึ่งแยกจากบิลด์ Control UI นี้", }, profilePage: { offline: "เชื่อมต่อกับ Gateway เพื่อพบเอเจนต์ของคุณ", @@ -1164,6 +1276,7 @@ export const th: TranslationMap = { sessions: "เซสชัน", scheduled: "กำหนดเวลาแล้ว", skills: "ทักษะ", + plugins: "ปลั๊กอิน", settings: "การตั้งค่า", agents: "เอเจนต์", shellCommand: "คำสั่งเชลล์", diff --git a/ui/src/i18n/locales/tr.ts b/ui/src/i18n/locales/tr.ts index 1e36fbb2125e..4e3b37e62f47 100644 --- a/ui/src/i18n/locales/tr.ts +++ b/ui/src/i18n/locales/tr.ts @@ -541,6 +541,7 @@ export const tr: TranslationMap = { cron: "Cron İşleri", tasks: "Görevler", skills: "Skills", + plugins: "Eklentiler", skillWorkshop: "Skill Atölyesi", nodes: "Düğümler", chat: "Sohbet", @@ -571,6 +572,7 @@ export const tr: TranslationMap = { cron: "Uyandırmalar ve yinelenen çalıştırmalar.", tasks: "Arka plan görevleri: alt ajanlar, cron çalıştırmaları, CLI.", skills: "Skills ve API anahtarları.", + plugins: "İsteğe bağlı yetenekleri yükleyin ve yönetin.", skillWorkshop: "Teklifleri canlı becerilere dönüşmeden önce gözden geçirin, iyileştirin ve uygulayın.", nodes: "Eşleştirilmiş cihazlar ve komutlar.", @@ -582,28 +584,148 @@ export const tr: TranslationMap = { automation: "Komutlar, kancalar, cron ve eklentiler.", mcp: "MCP sunucuları, kimlik doğrulama, araçlar ve tanılama.", infrastructure: "Gateway, web, tarayıcı ve medya ayarları.", - about: "Control UI ile bağlı Gateway'in derleme kimliği.", + about: "Control UI ve bağlı Gateway derleme kimliği.", aiAgents: "Aracılar, modeller, Skills, araçlar, bellek, oturum.", debug: "Anlık görüntüler, olaylar, RPC.", logs: "Canlı Gateway günlükleri.", dreams: "Uyku sırasında bellek birleştirme.", plugin: "Eklenti tarafından sağlanan panel.", }, + pluginsPage: { + searchLabel: "Eklentileri ara", + searchPlaceholder: "Eklentileri ara", + browseClawHub: "ClawHub'a göz at", + refresh: "Yenile", + tablistLabel: "Eklenti kataloğu", + installedTab: "Yüklü", + discoverTab: "Keşfet", + tryAgain: "Tekrar deneyin", + loading: "Eklentiler yükleniyor…", + searching: "ClawHub'da aranıyor…", + fromClawHub: "ClawHub'dan", + noClawHubResultsBody: "ClawHub'da “{query}” için sonuç yok.", + noDiscoverMatchTitle: "Keşfedilecek eşleşme yok", + featuredGroup: "Öne çıkanlar", + officialGroup: "Resmi eklentiler", + connectorsGroup: "Dünyanızı bağlayın", + connectorsHint: + "Popüler hizmetler için tek tıkla MCP bağlayıcıları ve özenle seçilmiş ClawHub aramaları.", + connectorGroupWork: "İş ve üretkenlik", + connectorGroupDev: "Kodlama ve altyapı", + connectorGroupHome: "Ev ve medya", + connectorGroupLife: "Günlük yaşam", + connectorMcpNote: "Tek tıkla MCP sunucusu", + connectorClawHubNote: "ClawHub'daki topluluk eklentileri", + connectorAdd: "Ekle", + connectorSearch: "ClawHub'da bul", + connectorAdded: "Eklendi", + connectorAddedOauth: + "{name} eklendi. “{command}” ile kimlik doğrulaması yapın, ardından gateway'i yeniden başlatın.", + connectorAddedEndpoint: + "{name} eklendi. Kullanmadan önce MCP ayarlarında endpoint'i ve kimlik bilgilerini güncelleyin.", + connectorAddedReady: "{name} eklendi. Yeni ajan oturumları bunu hemen kullanabilir.", + noInstalledTitle: "İsteğe bağlı eklenti yüklü değil", + noInstalledBody: + "OpenClaw'ı genişletmek için öne çıkan bir eklenti keşfedin veya ClawHub'da arama yapın.", + noInstalledMatchTitle: "Yüklü eklentilerle eşleşme yok", + noMatchBody: "Farklı bir arama deneyin.", + filterAll: "Tümü", + filterIssues: "Sorunlar", + filterLabel: "Yüklü eklentileri filtrele", + pulseLabel: "{enabled} etkin, {disabled} devre dışı, {issues} sorunlu", + categoryChannels: "Kanallar", + categoryProviders: "Model sağlayıcıları", + categoryMemory: "Bellek", + categoryContextEngine: "Bağlam motorları", + categoryTools: "Araçlar", + categoryOther: "Diğer", + mcpServersGroup: "MCP sunucuları", + mcpSettingsLink: "MCP ayarları", + mcpHint: + "Aracınıza ek araçlar sağlamak için Model Context Protocol sunucularını bağlayın. Değişiklikler yeni aracı oturumlarına uygulanır.", + mcpAdd: "Sunucu ekle", + mcpAdding: "Ekleniyor…", + mcpEmpty: + "Henüz yapılandırılmış MCP sunucusu yok. Buradan bir tane ekleyin veya Keşfet’ten bir bağlayıcı seçin.", + mcpNameLabel: "Ad", + mcpTargetLabel: "URL veya komut", + mcpNameInvalid: + "Sunucu adlarında harfler, sayılar, noktalar, tireler veya alt çizgiler kullanılır.", + mcpTargetInvalid: "Bir http(s) URL'si veya komut satırı girin.", + mcpNameTaken: "“{name}” adlı bir MCP sunucusu zaten var.", + mcpMissing: "“{name}” MCP sunucusu yapılandırmada bulunamadı.", + mcpAddedSuccess: "{name} MCP sunucusu eklendi.", + mcpRemovedSuccess: "{name} MCP sunucusu kaldırıldı.", + mcpConfigUnavailable: "Yapılandırma kullanılamıyor; yenileyin ve tekrar deneyin.", + remove: "Kaldır", + removing: "Kaldırılıyor…", + removeNamed: "{name} öğesini kaldır", + removeConfirm: "Bu eklenti kaldırılsın mı?", + cancel: "İptal", + removedRestart: + "{name} kaldırıldı. Değişikliği uygulamak için Gateway yeniden başlatılmalıdır.", + verifiedSource: "Doğrulanmış kaynak", + menuLabel: "{name} eylemleri", + menuDetails: "Ayrıntıları görüntüle", + enableAction: "Etkinleştir", + disableAction: "Devre dışı bırak", + working: "Çalışıyor…", + detailClose: "Kapat", + detailOrigin: "Kaynak", + detailCategory: "Kategori", + detailPackage: "Paket", + detailPluginId: "Eklenti Kimliği", + offlineTitle: "Gateway çevrimdışı", + offlineBody: "Yüklü ve önerilen eklentilere göz atmak için bağlanın.", + optionalCapability: "İsteğe bağlı OpenClaw özelliği.", + enabled: "Etkin", + disabled: "Devre dışı", + available: "Kullanılabilir", + needsAttention: "Dikkat gerekiyor", + included: "Dahil", + global: "Genel", + workspace: "Çalışma alanı", + config: "Yapılandırma", + official: "Resmi", + codePlugin: "Kod eklentisi", + bundlePlugin: "Eklentiyi paketle", + unavailable: "Kullanılamıyor", + install: "Yükle", + installing: "Yükleniyor…", + installNamed: "{name} yükle", + enableNamed: "{name} etkinleştir", + disableNamed: "{name} devre dışı bırak", + acknowledgeRisk: "Riski kabul et ve yükle", + defaultRiskWarning: "Bu eklentiyi yüklemeden önce ClawHub uyarısını inceleyin.", + connectToChange: "Eklentileri değiştirmek için gateway'e bağlanın.", + adminRequired: "Yalnızca göz atma. Eklenti değişiklikleri operator.admin erişimi gerektirir.", + changesDisabled: "Yalnızca göz atma. Bu gateway eklenti değişikliklerine izin vermiyor.", + configRefreshFailed: "Control UI yapılandırması yenilenemedi: {error}", + installedSuccess: "{name} yüklendi.", + installedRestart: + "{name} yüklendi. Değişikliği uygulamak için Gateway yeniden başlatılmalıdır.", + enabledSuccess: "{name} etkinleştirildi.", + enabledRestart: + "{name} etkinleştirildi. Değişikliği uygulamak için Gateway yeniden başlatılmalıdır.", + disabledSuccess: "{name} devre dışı bırakıldı.", + disabledRestart: + "{name} devre dışı bırakıldı. Değişikliği uygulamak için Gateway yeniden başlatılmalıdır.", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "Bu tarayıcı paketi derlenirken içine yerleştirilen kimlik.", + artifactSubtitle: "Bu tarayıcı yapıtı derlendiğinde gömülen kimlik.", artifactDetails: "Control UI derleme ayrıntıları", version: "Sürüm", - commit: "Commit kimliği", - built: "Derlenme tarihi", + commit: "Commit", + built: "Derlendi", unavailable: "Kullanılamıyor", - copyCommit: "Tam commit hash'ini kopyala", - copyingCommit: "Commit hash'i kopyalanıyor", - copiedCommit: "Commit hash'i kopyalandı", - copyCommitFailed: "Commit hash'i kopyalanamadı", + copyCommit: "Tam commit hash’ini kopyala", + copyingCommit: "Commit hash’i kopyalanıyor", + copiedCommit: "Commit hash’i kopyalandı", + copyCommitFailed: "Commit hash’i kopyalanamadı", gatewayVersion: "Bağlı Gateway sürümü", gatewayVersionHint: - "Etkin Gateway bağlantısı tarafından bildirilir; bu Control UI derlemesinden ayrıdır.", + "Etkin Gateway bağlantısı tarafından bildirildi; bu Control UI derlemesinden ayrıdır.", }, profilePage: { offline: "Ajanınızla tanışmak için gateway'e bağlanın.", @@ -1186,6 +1308,7 @@ export const tr: TranslationMap = { sessions: "Oturumlar", scheduled: "Zamanlanmış", skills: "Skills", + plugins: "Eklentiler", settings: "Ayarlar", agents: "Aracılar", shellCommand: "Shell Komutu", diff --git a/ui/src/i18n/locales/uk.ts b/ui/src/i18n/locales/uk.ts index e01d980c9516..4d0a33d3ff59 100644 --- a/ui/src/i18n/locales/uk.ts +++ b/ui/src/i18n/locales/uk.ts @@ -538,6 +538,7 @@ export const uk: TranslationMap = { cron: "Завдання Cron", tasks: "Завдання", skills: "Навички", + plugins: "Плагіни", skillWorkshop: "Майстерня Skills", nodes: "Вузли", chat: "Чат", @@ -548,7 +549,7 @@ export const uk: TranslationMap = { automation: "Автоматизація", mcp: "MCP", infrastructure: "Інфраструктура", - about: "Про програму", + about: "Про застосунок", aiAgents: "AI та агенти", debug: "Налагодження", logs: "Журнали", @@ -568,6 +569,7 @@ export const uk: TranslationMap = { cron: "Пробудження та повторювані запуски.", tasks: "Фонові завдання: субагенти, запуски cron, CLI.", skills: "Навички та API-ключі.", + plugins: "Установлюйте й керуйте додатковими можливостями.", skillWorkshop: "Переглядайте, уточнюйте й застосовуйте пропозиції, перш ніж вони стануть активними Skills.", nodes: "Спарені пристрої та команди.", @@ -579,16 +581,129 @@ export const uk: TranslationMap = { automation: "Команди, хуки, cron і плагіни.", mcp: "MCP-сервери, автентифікація, інструменти та діагностика.", infrastructure: "Налаштування шлюзу, вебу, браузера та медіа.", - about: "Ідентифікація збірки Control UI та підключеного Gateway.", + about: "Ідентифікаційні дані збірок Control UI і підключеного Gateway.", aiAgents: "Агенти, моделі, навички, інструменти, пам’ять, сеанс.", debug: "Знімки, події, RPC.", logs: "Журнали шлюзу в реальному часі.", dreams: "Консолідація пам’яті під час сну.", plugin: "Панель, надана плагіном.", }, + pluginsPage: { + searchLabel: "Пошук плагінів", + searchPlaceholder: "Пошук плагінів", + browseClawHub: "Переглянути ClawHub", + refresh: "Оновити", + tablistLabel: "Каталог плагінів", + installedTab: "Установлені", + discoverTab: "Огляд", + tryAgain: "Спробувати ще раз", + loading: "Завантаження плагінів…", + searching: "Пошук у ClawHub…", + fromClawHub: "З ClawHub", + noClawHubResultsBody: "У ClawHub немає результатів для “{query}”.", + noDiscoverMatchTitle: "Немає відповідників для огляду", + featuredGroup: "Рекомендовані", + officialGroup: "Офіційні плагіни", + connectorsGroup: "Підключіть свій світ", + connectorsHint: "MCP-конектори в один клік і добірні пошуки ClawHub для популярних сервісів.", + connectorGroupWork: "Робота й продуктивність", + connectorGroupDev: "Кодування й інфраструктура", + connectorGroupHome: "Дім і медіа", + connectorGroupLife: "Повсякденне життя", + connectorMcpNote: "MCP-сервер в один клік", + connectorClawHubNote: "Плагіни спільноти на ClawHub", + connectorAdd: "Додати", + connectorSearch: "Знайти на ClawHub", + connectorAdded: "Додано", + connectorAddedOauth: + "Додано {name}. Автентифікуйтеся за допомогою “{command}”, а потім перезапустіть gateway.", + connectorAddedEndpoint: + "Додано {name}. Перед використанням оновіть endpoint і облікові дані в налаштуваннях MCP.", + connectorAddedReady: "Додано {name}. Нові сеанси агента можуть використовувати його відразу.", + noInstalledTitle: "Не встановлено жодних додаткових плагінів", + noInstalledBody: + "Відкрийте для себе рекомендований плагін або шукайте в ClawHub, щоб розширити OpenClaw.", + noInstalledMatchTitle: "Немає збігів серед установлених плагінів", + noMatchBody: "Спробуйте інший пошук.", + filterAll: "Усі", + filterIssues: "Проблеми", + filterLabel: "Фільтрувати встановлені плагіни", + pulseLabel: "{enabled} увімкнено, {disabled} вимкнено, {issues} з проблемами", + categoryChannels: "Канали", + categoryProviders: "Постачальники моделей", + categoryMemory: "Пам’ять", + categoryContextEngine: "Рушії контексту", + categoryTools: "Інструменти", + categoryOther: "Інше", + mcpServersGroup: "MCP-сервери", + mcpSettingsLink: "Налаштування MCP", + mcpHint: + "Підключіть сервери Model Context Protocol, щоб надати вашому агенту додаткові інструменти. Зміни застосовуються до нових сеансів агента.", + mcpAdd: "Додати сервер", + mcpAdding: "Додавання…", + mcpEmpty: "Сервери MCP ще не налаштовано. Додайте один тут або виберіть конектор у Discover.", + mcpNameLabel: "Назва", + mcpTargetLabel: "URL або команда", + mcpNameInvalid: "Імена серверів можуть містити літери, цифри, крапки, дефіси або підкреслення.", + mcpTargetInvalid: "Введіть http(s) URL або командний рядок.", + mcpNameTaken: "MCP-сервер із назвою «{name}» уже існує.", + mcpMissing: "MCP-сервер «{name}» не знайдено в конфігурації.", + mcpAddedSuccess: "Додано MCP-сервер {name}.", + mcpRemovedSuccess: "Видалено MCP-сервер {name}.", + mcpConfigUnavailable: "Конфігурація недоступна; оновіть сторінку й повторіть спробу.", + remove: "Видалити", + removing: "Видалення…", + removeNamed: "Видалити {name}", + removeConfirm: "Видалити цей плагін?", + cancel: "Скасувати", + removedRestart: "Видалено {name}. Щоб застосувати зміну, потрібен перезапуск Gateway.", + verifiedSource: "Перевірене джерело", + menuLabel: "Дії для {name}", + menuDetails: "Переглянути деталі", + enableAction: "Увімкнути", + disableAction: "Вимкнути", + working: "Обробка…", + detailClose: "Закрити", + detailOrigin: "Джерело", + detailCategory: "Категорія", + detailPackage: "Пакет", + detailPluginId: "ID плагіна", + offlineTitle: "Gateway офлайн", + offlineBody: "Підключіться, щоб переглянути встановлені й рекомендовані плагіни.", + optionalCapability: "Необов’язкова можливість OpenClaw.", + enabled: "Увімкнено", + disabled: "Вимкнено", + available: "Доступно", + needsAttention: "Потребує уваги", + included: "Включено", + global: "Глобально", + workspace: "Робоча область", + config: "Конфігурація", + official: "Офіційний", + codePlugin: "Плагін коду", + bundlePlugin: "Плагін у пакеті", + unavailable: "Недоступно", + install: "Установити", + installing: "Установлення…", + installNamed: "Установити {name}", + enableNamed: "Увімкнути {name}", + disableNamed: "Вимкнути {name}", + acknowledgeRisk: "Підтвердити ризик і встановити", + defaultRiskWarning: "Ознайомтеся з попередженням ClawHub перед установленням цього плагіна.", + connectToChange: "Підключіться до Gateway, щоб змінювати плагіни.", + adminRequired: "Лише перегляд. Для змін плагінів потрібен доступ operator.admin.", + changesDisabled: "Лише перегляд. Цей Gateway не дозволяє змінювати плагіни.", + configRefreshFailed: "Не вдалося оновити конфігурацію Control UI: {error}", + installedSuccess: "Установлено {name}.", + installedRestart: "Установлено {name}. Щоб застосувати зміну, потрібно перезапустити Gateway.", + enabledSuccess: "Увімкнено {name}.", + enabledRestart: "Увімкнено {name}. Щоб застосувати зміну, потрібно перезапустити Gateway.", + disabledSuccess: "Вимкнено {name}.", + disabledRestart: "Вимкнено {name}. Щоб застосувати зміну, потрібно перезапустити Gateway.", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "Ідентифікаційні дані, вбудовані під час створення цієї браузерної збірки.", + artifactSubtitle: "Ідентифікаційні дані, вбудовані під час збірки цього браузерного артефакту.", artifactDetails: "Відомості про збірку Control UI", version: "Версія", commit: "Коміт", @@ -599,7 +714,8 @@ export const uk: TranslationMap = { copiedCommit: "Хеш коміту скопійовано", copyCommitFailed: "Не вдалося скопіювати хеш коміту", gatewayVersion: "Версія підключеного Gateway", - gatewayVersionHint: "Надано активним підключенням Gateway; окремо від цієї збірки Control UI.", + gatewayVersionHint: + "Повідомляється активним підключенням Gateway; окремо від цієї збірки Control UI.", }, profilePage: { offline: "Підключіться до gateway, щоб познайомитися зі своїм агентом.", @@ -1181,6 +1297,7 @@ export const uk: TranslationMap = { sessions: "Сеанси", scheduled: "Заплановано", skills: "Навички", + plugins: "Плагіни", settings: "Налаштування", agents: "Агенти", shellCommand: "Команда оболонки", diff --git a/ui/src/i18n/locales/vi.ts b/ui/src/i18n/locales/vi.ts index 8dd19309fae2..931cd2f32328 100644 --- a/ui/src/i18n/locales/vi.ts +++ b/ui/src/i18n/locales/vi.ts @@ -537,6 +537,7 @@ export const vi: TranslationMap = { cron: "Tác vụ Cron", tasks: "Tác vụ", skills: "Skills", + plugins: "Plugin", skillWorkshop: "Xưởng kỹ năng", nodes: "Nút", chat: "Trò chuyện", @@ -567,6 +568,7 @@ export const vi: TranslationMap = { cron: "Đánh thức và chạy định kỳ.", tasks: "Tác vụ nền: subagent, cron run, CLI.", skills: "Skills và khóa API.", + plugins: "Cài đặt và quản lý các khả năng tùy chọn.", skillWorkshop: "Xem xét, tinh chỉnh và áp dụng các đề xuất trước khi chúng trở thành kỹ năng đang hoạt động.", nodes: "Thiết bị đã ghép nối và lệnh.", @@ -578,28 +580,141 @@ export const vi: TranslationMap = { automation: "Lệnh, hook, cron và plugin.", mcp: "Máy chủ MCP, xác thực, công cụ và chẩn đoán.", infrastructure: "Cài đặt Gateway, web, trình duyệt và phương tiện.", - about: "Thông tin nhận dạng bản dựng của Control UI và Gateway đã kết nối.", + about: "Control UI và Gateway đã kết nối tạo danh tính bản dựng.", aiAgents: "Agent, mô hình, skills, công cụ, bộ nhớ, phiên.", debug: "Ảnh chụp, sự kiện, RPC.", logs: "Nhật ký gateway trực tiếp.", dreams: "Mơ bộ nhớ, hợp nhất và phản chiếu.", plugin: "Bảng điều khiển do plugin cung cấp.", }, + pluginsPage: { + searchLabel: "Tìm kiếm plugin", + searchPlaceholder: "Tìm kiếm plugin", + browseClawHub: "Duyệt ClawHub", + refresh: "Làm mới", + tablistLabel: "Danh mục plugin", + installedTab: "Đã cài đặt", + discoverTab: "Khám phá", + tryAgain: "Thử lại", + loading: "Đang tải plugin…", + searching: "Đang tìm kiếm ClawHub…", + fromClawHub: "Từ ClawHub", + noClawHubResultsBody: "ClawHub không có kết quả nào cho “{query}”.", + noDiscoverMatchTitle: "Không có mục khám phá nào khớp", + featuredGroup: "Nổi bật", + officialGroup: "Plugin chính thức", + connectorsGroup: "Kết nối thế giới của bạn", + connectorsHint: + "Trình kết nối MCP một cú nhấp chuột và các tìm kiếm ClawHub được tuyển chọn cho các dịch vụ phổ biến.", + connectorGroupWork: "Công việc & năng suất", + connectorGroupDev: "Lập trình & hạ tầng", + connectorGroupHome: "Nhà cửa & phương tiện", + connectorGroupLife: "Cuộc sống hằng ngày", + connectorMcpNote: "Máy chủ MCP một cú nhấp chuột", + connectorClawHubNote: "Plugin cộng đồng trên ClawHub", + connectorAdd: "Thêm", + connectorSearch: "Tìm trên ClawHub", + connectorAdded: "Đã thêm", + connectorAddedOauth: "Đã thêm {name}. Xác thực bằng “{command}”, sau đó khởi động lại gateway.", + connectorAddedEndpoint: + "Đã thêm {name}. Cập nhật endpoint và thông tin xác thực trong cài đặt MCP trước khi sử dụng.", + connectorAddedReady: "Đã thêm {name}. Các phiên agent mới có thể sử dụng ngay.", + noInstalledTitle: "Chưa cài đặt plugin tùy chọn nào", + noInstalledBody: "Khám phá một plugin nổi bật hoặc tìm kiếm trên ClawHub để mở rộng OpenClaw.", + noInstalledMatchTitle: "Không có plugin đã cài đặt nào khớp", + noMatchBody: "Thử tìm kiếm khác.", + filterAll: "Tất cả", + filterIssues: "Sự cố", + filterLabel: "Lọc plugin đã cài đặt", + pulseLabel: "{enabled} đã bật, {disabled} đã tắt, {issues} có sự cố", + categoryChannels: "Kênh", + categoryProviders: "Nhà cung cấp mô hình", + categoryMemory: "Bộ nhớ", + categoryContextEngine: "Công cụ ngữ cảnh", + categoryTools: "Công cụ", + categoryOther: "Khác", + mcpServersGroup: "Máy chủ MCP", + mcpSettingsLink: "Cài đặt MCP", + mcpHint: + "Kết nối các máy chủ Model Context Protocol để cung cấp thêm công cụ cho agent của bạn. Các thay đổi áp dụng cho phiên agent mới.", + mcpAdd: "Thêm máy chủ", + mcpAdding: "Đang thêm…", + mcpEmpty: + "Chưa có máy chủ MCP nào được cấu hình. Thêm một máy chủ tại đây hoặc chọn một connector từ Discover.", + mcpNameLabel: "Tên", + mcpTargetLabel: "URL hoặc lệnh", + mcpNameInvalid: "Tên máy chủ sử dụng chữ cái, số, dấu chấm, dấu gạch nối hoặc dấu gạch dưới.", + mcpTargetInvalid: "Nhập URL http(s) hoặc dòng lệnh.", + mcpNameTaken: "Máy chủ MCP có tên “{name}” đã tồn tại.", + mcpMissing: "Không tìm thấy máy chủ MCP “{name}” trong cấu hình.", + mcpAddedSuccess: "Đã thêm máy chủ MCP {name}.", + mcpRemovedSuccess: "Đã xóa máy chủ MCP {name}.", + mcpConfigUnavailable: "Cấu hình không khả dụng; hãy làm mới và thử lại.", + remove: "Gỡ bỏ", + removing: "Đang gỡ bỏ…", + removeNamed: "Gỡ bỏ {name}", + removeConfirm: "Gỡ bỏ plugin này?", + cancel: "Hủy", + removedRestart: "Đã gỡ bỏ {name}. Cần khởi động lại Gateway để áp dụng thay đổi.", + verifiedSource: "Nguồn đã xác minh", + menuLabel: "Thao tác {name}", + menuDetails: "Xem chi tiết", + enableAction: "Bật", + disableAction: "Tắt", + working: "Đang xử lý…", + detailClose: "Đóng", + detailOrigin: "Nguồn", + detailCategory: "Danh mục", + detailPackage: "Gói", + detailPluginId: "ID plugin", + offlineTitle: "Gateway ngoại tuyến", + offlineBody: "Kết nối để duyệt các plugin đã cài đặt và được đề xuất.", + optionalCapability: "Khả năng OpenClaw tùy chọn.", + enabled: "Đã bật", + disabled: "Đã tắt", + available: "Có sẵn", + needsAttention: "Cần chú ý", + included: "Đã bao gồm", + global: "Toàn cục", + workspace: "Không gian làm việc", + config: "Cấu hình", + official: "Chính thức", + codePlugin: "Plugin mã", + bundlePlugin: "Plugin gói", + unavailable: "Không khả dụng", + install: "Cài đặt", + installing: "Đang cài đặt…", + installNamed: "Cài đặt {name}", + enableNamed: "Bật {name}", + disableNamed: "Tắt {name}", + acknowledgeRisk: "Xác nhận rủi ro và cài đặt", + defaultRiskWarning: "Xem lại cảnh báo ClawHub trước khi cài đặt plugin này.", + connectToChange: "Kết nối với gateway để thay đổi plugin.", + adminRequired: "Chỉ duyệt. Thay đổi plugin yêu cầu quyền truy cập operator.admin.", + changesDisabled: "Chỉ duyệt. Gateway này không cho phép thay đổi plugin.", + configRefreshFailed: "Không thể làm mới cấu hình Control UI: {error}", + installedSuccess: "Đã cài đặt {name}.", + installedRestart: "Đã cài đặt {name}. Cần khởi động lại Gateway để áp dụng thay đổi.", + enabledSuccess: "Đã bật {name}.", + enabledRestart: "Đã bật {name}. Cần khởi động lại Gateway để áp dụng thay đổi.", + disabledSuccess: "Đã tắt {name}.", + disabledRestart: "Đã tắt {name}. Cần khởi động lại Gateway để áp dụng thay đổi.", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "Thông tin nhận dạng được nhúng khi tạo bản dựng cho trình duyệt này.", + artifactSubtitle: "Danh tính được nhúng khi artifact trình duyệt này được xây dựng.", artifactDetails: "Chi tiết bản dựng Control UI", version: "Phiên bản", - commit: "Mã commit", - built: "Ngày dựng", - unavailable: "Không có", - copyCommit: "Sao chép đầy đủ mã băm commit", - copyingCommit: "Đang sao chép mã băm commit", - copiedCommit: "Đã sao chép mã băm commit", - copyCommitFailed: "Không thể sao chép mã băm commit", + commit: "Commit", + built: "Đã xây dựng", + unavailable: "Không khả dụng", + copyCommit: "Sao chép đầy đủ hash commit", + copyingCommit: "Đang sao chép hash commit", + copiedCommit: "Đã sao chép hash commit", + copyCommitFailed: "Không thể sao chép hash commit", gatewayVersion: "Phiên bản Gateway đã kết nối", gatewayVersionHint: - "Được báo cáo bởi kết nối Gateway đang hoạt động; tách biệt với bản dựng Control UI này.", + "Do kết nối Gateway đang hoạt động báo cáo; tách biệt với bản dựng Control UI này.", }, profilePage: { offline: "Kết nối với gateway để gặp agent của bạn.", @@ -1176,6 +1291,7 @@ export const vi: TranslationMap = { sessions: "Phiên", scheduled: "Đã lên lịch", skills: "Skills", + plugins: "Plugin", settings: "Cài đặt", agents: "Agent", shellCommand: "Lệnh shell", diff --git a/ui/src/i18n/locales/zh-CN.ts b/ui/src/i18n/locales/zh-CN.ts index 5dc89400a702..876611cfff4e 100644 --- a/ui/src/i18n/locales/zh-CN.ts +++ b/ui/src/i18n/locales/zh-CN.ts @@ -534,6 +534,7 @@ export const zh_CN: TranslationMap = { cron: "定时任务", tasks: "任务", skills: "技能", + plugins: "插件", skillWorkshop: "技能工坊", nodes: "节点", chat: "聊天", @@ -564,6 +565,7 @@ export const zh_CN: TranslationMap = { cron: "唤醒和重复运行。", tasks: "后台任务:子代理、cron 运行、CLI。", skills: "技能和 API 密钥。", + plugins: "安装和管理可选功能。", skillWorkshop: "在提案成为上线技能之前,进行审查、优化并应用。", nodes: "配对设备和命令。", chat: "网关聊天,快速干预。", @@ -574,27 +576,137 @@ export const zh_CN: TranslationMap = { automation: "命令、钩子、定时任务和插件设置。", mcp: "MCP 服务器、身份验证、工具和诊断。", infrastructure: "网关、Web、浏览器和媒体设置。", - about: "Control UI 和已连接 Gateway 的构建标识。", + about: "Control UI 和已连接的 Gateway 构建标识。", aiAgents: "代理、模型、技能、工具、记忆和会话设置。", debug: "快照、事件、RPC。", logs: "实时网关日志。", dreams: "睡眠时进行记忆巩固。", plugin: "插件提供的面板。", }, + pluginsPage: { + searchLabel: "搜索插件", + searchPlaceholder: "搜索插件", + browseClawHub: "浏览 ClawHub", + refresh: "刷新", + tablistLabel: "插件目录", + installedTab: "已安装", + discoverTab: "发现", + tryAgain: "重试", + loading: "正在加载插件…", + searching: "正在搜索 ClawHub…", + fromClawHub: "来自 ClawHub", + noClawHubResultsBody: "ClawHub 中没有“{query}”的结果。", + noDiscoverMatchTitle: "没有匹配的发现内容", + featuredGroup: "精选", + officialGroup: "官方插件", + connectorsGroup: "连接你的世界", + connectorsHint: "一键式 MCP 连接器,以及为热门服务精选的 ClawHub 搜索。", + connectorGroupWork: "工作与效率", + connectorGroupDev: "编码与基础设施", + connectorGroupHome: "家庭与媒体", + connectorGroupLife: "日常生活", + connectorMcpNote: "一键式 MCP 服务器", + connectorClawHubNote: "ClawHub 上的社区插件", + connectorAdd: "添加", + connectorSearch: "在 ClawHub 上查找", + connectorAdded: "已添加", + connectorAddedOauth: "已添加 {name}。使用“{command}”进行身份验证,然后重启 gateway。", + connectorAddedEndpoint: "已添加 {name}。使用前请在 MCP 设置中更新端点和凭据。", + connectorAddedReady: "已添加 {name}。新的代理会话可以立即使用它。", + noInstalledTitle: "未安装可选插件", + noInstalledBody: "发现精选插件或搜索 ClawHub,以扩展 OpenClaw。", + noInstalledMatchTitle: "没有匹配的已安装插件", + noMatchBody: "请尝试其他搜索。", + filterAll: "全部", + filterIssues: "问题", + filterLabel: "筛选已安装插件", + pulseLabel: "{enabled} 个已启用,{disabled} 个已禁用,{issues} 个存在问题", + categoryChannels: "渠道", + categoryProviders: "模型提供商", + categoryMemory: "记忆", + categoryContextEngine: "上下文引擎", + categoryTools: "工具", + categoryOther: "其他", + mcpServersGroup: "MCP 服务器", + mcpSettingsLink: "MCP 设置", + mcpHint: + "连接 Model Context Protocol 服务器,为你的智能体提供额外工具。更改将应用于新的智能体会话。", + mcpAdd: "添加服务器", + mcpAdding: "正在添加…", + mcpEmpty: "尚未配置 MCP 服务器。在此添加一个,或从 Discover 中选择一个连接器。", + mcpNameLabel: "名称", + mcpTargetLabel: "URL 或命令", + mcpNameInvalid: "服务器名称可使用字母、数字、点、短横线或下划线。", + mcpTargetInvalid: "请输入 http(s) URL 或命令行。", + mcpNameTaken: "名为“{name}”的 MCP 服务器已存在。", + mcpMissing: "在配置中未找到 MCP 服务器“{name}”。", + mcpAddedSuccess: "已添加 MCP 服务器 {name}。", + mcpRemovedSuccess: "已移除 MCP 服务器 {name}。", + mcpConfigUnavailable: "配置不可用;请刷新后重试。", + remove: "移除", + removing: "正在移除…", + removeNamed: "移除 {name}", + removeConfirm: "要移除此插件吗?", + cancel: "取消", + removedRestart: "已移除 {name}。需要重启 Gateway 才能应用更改。", + verifiedSource: "已验证来源", + menuLabel: "{name} 操作", + menuDetails: "查看详情", + enableAction: "启用", + disableAction: "禁用", + working: "处理中…", + detailClose: "关闭", + detailOrigin: "来源", + detailCategory: "类别", + detailPackage: "包", + detailPluginId: "插件 ID", + offlineTitle: "Gateway 离线", + offlineBody: "连接后可浏览已安装和推荐的插件。", + optionalCapability: "可选 OpenClaw 功能。", + enabled: "已启用", + disabled: "已禁用", + available: "可用", + needsAttention: "需要注意", + included: "已包含", + global: "全局", + workspace: "工作区", + config: "配置", + official: "官方", + codePlugin: "代码插件", + bundlePlugin: "捆绑插件", + unavailable: "不可用", + install: "安装", + installing: "正在安装…", + installNamed: "安装 {name}", + enableNamed: "启用 {name}", + disableNamed: "停用 {name}", + acknowledgeRisk: "确认风险并安装", + defaultRiskWarning: "安装此插件前,请查看 ClawHub 警告。", + connectToChange: "连接到 Gateway 以更改插件。", + adminRequired: "仅可浏览。更改插件需要 operator.admin 访问权限。", + changesDisabled: "仅可浏览。此 Gateway 不允许更改插件。", + configRefreshFailed: "无法刷新 Control UI 配置:{error}", + installedSuccess: "已安装 {name}。", + installedRestart: "已安装 {name}。需要重启 Gateway 才能应用更改。", + enabledSuccess: "已启用 {name}。", + enabledRestart: "已启用 {name}。需要重启 Gateway 才能应用更改。", + disabledSuccess: "已停用 {name}。", + disabledRestart: "已停用 {name}。需要重启 Gateway 才能应用更改。", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "构建此浏览器产物时嵌入的标识信息。", - artifactDetails: "Control UI 构建详情", + artifactSubtitle: "构建此浏览器产物时嵌入的标识。", + artifactDetails: "Control UI 构建详细信息", version: "版本", commit: "提交", built: "构建时间", unavailable: "不可用", - copyCommit: "复制完整提交哈希值", - copyingCommit: "正在复制提交哈希值", - copiedCommit: "已复制提交哈希值", - copyCommitFailed: "无法复制提交哈希值", - gatewayVersion: "已连接 Gateway 的版本", - gatewayVersionHint: "由当前 Gateway 连接报告;此版本信息独立于这个 Control UI 构建。", + copyCommit: "复制完整提交哈希", + copyingCommit: "正在复制提交哈希", + copiedCommit: "提交哈希已复制", + copyCommitFailed: "无法复制提交哈希", + gatewayVersion: "已连接的 Gateway 版本", + gatewayVersionHint: "由活动的 Gateway 连接报告;与此 Control UI 构建分开。", }, profilePage: { offline: "连接到 Gateway 以见到你的智能体。", @@ -1163,6 +1275,7 @@ export const zh_CN: TranslationMap = { sessions: "会话", scheduled: "已计划", skills: "技能", + plugins: "插件", settings: "设置", agents: "代理", shellCommand: "Shell 命令", diff --git a/ui/src/i18n/locales/zh-TW.ts b/ui/src/i18n/locales/zh-TW.ts index 5bf0f0fc8e7e..06b8f3c5e8eb 100644 --- a/ui/src/i18n/locales/zh-TW.ts +++ b/ui/src/i18n/locales/zh-TW.ts @@ -534,6 +534,7 @@ export const zh_TW: TranslationMap = { cron: "定時任務", tasks: "任務", skills: "Skills", + plugins: "外掛程式", skillWorkshop: "Skill Workshop", nodes: "節點", chat: "聊天", @@ -564,6 +565,7 @@ export const zh_TW: TranslationMap = { cron: "喚醒和重複運行。", tasks: "背景任務:子代理、cron 執行、CLI。", skills: "技能和 API 密鑰。", + plugins: "安裝並管理選用功能。", skillWorkshop: "在提案成為上線技能之前,先進行審閱、調整並套用。", nodes: "配對設備和命令。", chat: "網關聊天,快速干預。", @@ -574,27 +576,137 @@ export const zh_TW: TranslationMap = { automation: "命令、鉤子、定時任務和插件設置。", mcp: "MCP 伺服器、驗證、工具與診斷。", infrastructure: "網關、Web、瀏覽器和媒體設置。", - about: "Control UI 與已連線 Gateway 的建置識別資訊。", + about: "Control UI 與已連線的 Gateway 建置身分識別。", aiAgents: "代理、模型、技能、工具、記憶和會話設置。", debug: "快照、事件、RPC。", logs: "實時網關日誌。", dreams: "睡眠期間的記憶整合。", plugin: "外掛程式提供的面板。", }, + pluginsPage: { + searchLabel: "搜尋外掛程式", + searchPlaceholder: "搜尋外掛程式", + browseClawHub: "瀏覽 ClawHub", + refresh: "重新整理", + tablistLabel: "外掛程式目錄", + installedTab: "已安裝", + discoverTab: "探索", + tryAgain: "再試一次", + loading: "正在載入外掛程式…", + searching: "正在搜尋 ClawHub…", + fromClawHub: "來自 ClawHub", + noClawHubResultsBody: "ClawHub 沒有「{query}」的結果。", + noDiscoverMatchTitle: "沒有符合探索條件的項目", + featuredGroup: "精選", + officialGroup: "官方外掛", + connectorsGroup: "連接你的世界", + connectorsHint: "一鍵式 MCP 連接器,以及為熱門服務精選的 ClawHub 搜尋。", + connectorGroupWork: "工作與生產力", + connectorGroupDev: "程式開發與基礎架構", + connectorGroupHome: "家庭與媒體", + connectorGroupLife: "日常生活", + connectorMcpNote: "一鍵式 MCP 伺服器", + connectorClawHubNote: "ClawHub 上的社群外掛", + connectorAdd: "新增", + connectorSearch: "在 ClawHub 上尋找", + connectorAdded: "已新增", + connectorAddedOauth: "已新增 {name}。使用「{command}」進行驗證,然後重新啟動 gateway。", + connectorAddedEndpoint: "已新增 {name}。使用前請在 MCP 設定中更新端點與認證資料。", + connectorAddedReady: "已新增 {name}。新的代理工作階段可立即使用。", + noInstalledTitle: "未安裝選用外掛", + noInstalledBody: "探索精選外掛或搜尋 ClawHub,以擴充 OpenClaw。", + noInstalledMatchTitle: "沒有相符的已安裝外掛", + noMatchBody: "請嘗試不同的搜尋。", + filterAll: "全部", + filterIssues: "問題", + filterLabel: "篩選已安裝的外掛", + pulseLabel: "{enabled} 個已啟用,{disabled} 個已停用,{issues} 個有問題", + categoryChannels: "頻道", + categoryProviders: "模型供應商", + categoryMemory: "記憶體", + categoryContextEngine: "情境引擎", + categoryTools: "工具", + categoryOther: "其他", + mcpServersGroup: "MCP 伺服器", + mcpSettingsLink: "MCP 設定", + mcpHint: + "連接 Model Context Protocol 伺服器,為你的代理程式提供額外工具。變更會套用到新的代理程式工作階段。", + mcpAdd: "新增伺服器", + mcpAdding: "正在新增…", + mcpEmpty: "尚未設定 MCP 伺服器。在此新增一個,或從 Discover 選擇連接器。", + mcpNameLabel: "名稱", + mcpTargetLabel: "URL 或命令", + mcpNameInvalid: "伺服器名稱可使用字母、數字、句點、破折號或底線。", + mcpTargetInvalid: "請輸入 http(s) URL 或命令列。", + mcpNameTaken: "名為「{name}」的 MCP 伺服器已存在。", + mcpMissing: "在設定中找不到 MCP 伺服器「{name}」。", + mcpAddedSuccess: "已新增 MCP 伺服器 {name}。", + mcpRemovedSuccess: "已移除 MCP 伺服器 {name}。", + mcpConfigUnavailable: "設定無法使用;請重新整理後再試一次。", + remove: "移除", + removing: "正在移除…", + removeNamed: "移除 {name}", + removeConfirm: "要移除此外掛程式嗎?", + cancel: "取消", + removedRestart: "已移除 {name}。需要重新啟動 Gateway 才能套用變更。", + verifiedSource: "已驗證來源", + menuLabel: "{name} 動作", + menuDetails: "檢視詳細資料", + enableAction: "啟用", + disableAction: "停用", + working: "處理中…", + detailClose: "關閉", + detailOrigin: "來源", + detailCategory: "類別", + detailPackage: "套件", + detailPluginId: "Plugin ID", + offlineTitle: "Gateway 離線", + offlineBody: "連線以瀏覽已安裝和推薦的外掛程式。", + optionalCapability: "選用的 OpenClaw 功能。", + enabled: "已啟用", + disabled: "已停用", + available: "可用", + needsAttention: "需要注意", + included: "已包含", + global: "全域", + workspace: "工作區", + config: "設定", + official: "官方", + codePlugin: "程式碼外掛程式", + bundlePlugin: "打包外掛程式", + unavailable: "無法使用", + install: "安裝", + installing: "正在安裝…", + installNamed: "安裝 {name}", + enableNamed: "啟用 {name}", + disableNamed: "停用 {name}", + acknowledgeRisk: "確認風險並安裝", + defaultRiskWarning: "安裝此外掛程式前,請檢閱 ClawHub 警告。", + connectToChange: "連線到 Gateway 以變更外掛程式。", + adminRequired: "僅供瀏覽。外掛程式變更需要 operator.admin 存取權。", + changesDisabled: "僅供瀏覽。此 Gateway 不允許變更外掛程式。", + configRefreshFailed: "無法重新整理 Control UI 設定:{error}", + installedSuccess: "已安裝 {name}。", + installedRestart: "已安裝 {name}。需要重新啟動 Gateway 才能套用變更。", + enabledSuccess: "已啟用 {name}。", + enabledRestart: "已啟用 {name}。需要重新啟動 Gateway 才能套用變更。", + disabledSuccess: "已停用 {name}。", + disabledRestart: "已停用 {name}。需要重新啟動 Gateway 才能套用變更。", + }, aboutPage: { artifactTitle: "Control UI", - artifactSubtitle: "建置此瀏覽器產物時嵌入的識別資訊。", - artifactDetails: "Control UI 建置詳細資料", + artifactSubtitle: "建置此瀏覽器成品時嵌入的身分識別。", + artifactDetails: "Control UI 建置詳細資訊", version: "版本", - commit: "提交", + commit: "Commit", built: "建置時間", - unavailable: "無法取得", - copyCommit: "複製完整提交雜湊值", - copyingCommit: "正在複製提交雜湊值", - copiedCommit: "已複製提交雜湊值", - copyCommitFailed: "無法複製提交雜湊值", - gatewayVersion: "已連線 Gateway 版本", - gatewayVersionHint: "由目前的 Gateway 連線回報;此版本資訊獨立於這個 Control UI 建置。", + unavailable: "無法使用", + copyCommit: "複製完整 commit 雜湊", + copyingCommit: "正在複製 commit 雜湊", + copiedCommit: "已複製 commit 雜湊", + copyCommitFailed: "無法複製 commit 雜湊", + gatewayVersion: "已連線的 Gateway 版本", + gatewayVersionHint: "由作用中的 Gateway 連線回報;與此 Control UI 建置分開。", }, profilePage: { offline: "連線至 Gateway 以認識你的代理程式。", @@ -1163,6 +1275,7 @@ export const zh_TW: TranslationMap = { sessions: "工作階段", scheduled: "已排程", skills: "Skills", + plugins: "外掛程式", settings: "設定", agents: "代理", shellCommand: "Shell 指令", diff --git a/ui/src/lib/config/index.ts b/ui/src/lib/config/index.ts index 14f946fe72ea..5121492c8984 100644 --- a/ui/src/lib/config/index.ts +++ b/ui/src/lib/config/index.ts @@ -237,7 +237,7 @@ function asConfigRecord(value: unknown): Record | null { return value as Record; } -function resolveEditableSnapshotConfig( +export function resolveEditableSnapshotConfig( snapshot: ConfigSnapshot | null | undefined, ): Record | null { return ( diff --git a/ui/src/lib/plugins/index.ts b/ui/src/lib/plugins/index.ts new file mode 100644 index 000000000000..98ab4cba6620 --- /dev/null +++ b/ui/src/lib/plugins/index.ts @@ -0,0 +1,73 @@ +// Shared Control UI plugin catalog Gateway contracts. +import { + ClawHubTrustErrorCodes, + readClawHubTrustErrorDetails, + type ClawHubTrustErrorDetails, +} from "../../../../packages/gateway-protocol/src/clawhub-trust-error-details.js"; +import type { + PluginCatalogEntry, + PluginsInstallParams, + PluginsInstallResult, + PluginsListResult as ProtocolPluginsListResult, + PluginsSearchResult as ProtocolPluginsSearchResult, + PluginsSetEnabledResult, + PluginsUninstallResult, +} from "../../../../packages/gateway-protocol/src/schema/plugins.js"; +import { GatewayRequestError, type GatewayBrowserClient } from "../../api/gateway.ts"; + +export type PluginCatalogItem = PluginCatalogEntry; +export type PluginListResult = ProtocolPluginsListResult; +export type PluginSearchResult = ProtocolPluginsSearchResult["results"][number]; +export type PluginSearchResponse = ProtocolPluginsSearchResult; +export type PluginInstallRequest = PluginsInstallParams; +export type PluginMutationResult = PluginsInstallResult | PluginsSetEnabledResult; +export type PluginUninstallResult = PluginsUninstallResult; + +export const CLAWHUB_BROWSE_URL = "https://clawhub.ai/plugins"; + +export function loadPluginCatalog(client: GatewayBrowserClient): Promise { + return client.request("plugins.list", {}); +} + +export function searchPluginCatalog( + client: GatewayBrowserClient, + query: string, +): Promise { + return client.request("plugins.search", { query, limit: 20 }); +} + +export function installPlugin( + client: GatewayBrowserClient, + request: PluginInstallRequest, +): Promise { + return client.request("plugins.install", request); +} + +export function uninstallPlugin( + client: GatewayBrowserClient, + pluginId: string, +): Promise { + return client.request("plugins.uninstall", { pluginId }); +} + +export function setPluginEnabled( + client: GatewayBrowserClient, + pluginId: string, + enabled: boolean, +): Promise { + return client.request("plugins.setEnabled", { pluginId, enabled }); +} + +export function readPluginInstallTrustError(error: unknown): ClawHubTrustErrorDetails | undefined { + if (!(error instanceof GatewayRequestError)) { + return undefined; + } + return readClawHubTrustErrorDetails(error.details); +} + +export function pluginInstallNeedsRiskAcknowledgement(error: unknown): boolean { + return ( + readPluginInstallTrustError(error)?.clawhubTrustCode === + ClawHubTrustErrorCodes.RISK_ACKNOWLEDGEMENT_REQUIRED + ); +} diff --git a/ui/src/pages/plugins/plugins-page.test.ts b/ui/src/pages/plugins/plugins-page.test.ts new file mode 100644 index 000000000000..9e167b59172b --- /dev/null +++ b/ui/src/pages/plugins/plugins-page.test.ts @@ -0,0 +1,836 @@ +/* @vitest-environment jsdom */ + +import { ContextProvider } from "@lit/context"; +import { LitElement } from "lit"; +import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; +import type { GatewayBrowserClient } from "../../api/gateway.ts"; +import { + applicationContext, + type ApplicationContext, + type ApplicationGateway, + type ApplicationGatewaySnapshot, +} from "../../app/context.ts"; +import { i18n } from "../../i18n/index.ts"; +import type { PluginCatalogItem, PluginListResult } from "../../lib/plugins/index.ts"; +import type { PluginsRouteData } from "./plugins-page.ts"; +import "./plugins-page.ts"; + +const PROVIDER_TAG = "test-plugins-page-context-provider"; + +class PluginsPageContextProvider extends LitElement { + private readonly provider = new ContextProvider(this, { context: applicationContext }); + + setContext(context: ApplicationContext) { + this.provider.setValue(context); + } +} + +if (!customElements.get(PROVIDER_TAG)) { + customElements.define(PROVIDER_TAG, PluginsPageContextProvider); +} + +type RequestHandler = (method: string, params: unknown) => Promise; + +type GatewayHarness = { + gateway: ApplicationGateway; + emit: (client: GatewayBrowserClient | null, connected: boolean) => ApplicationGatewaySnapshot; +}; + +type TestPluginsPage = HTMLElement & { + routeData?: PluginsRouteData; + updateComplete: Promise; + result: PluginListResult | null; + loading: boolean; + busy: Record; +}; + +type RuntimeConfigTestState = { + configFormDirty: boolean; + lastError: string | null; + configSnapshot?: { sourceConfig: Record; hash: string } | null; +}; + +function createPlugin(overrides: Partial = {}): PluginCatalogItem { + return { + id: "workboard", + name: "Workboard", + description: "Agent work queue and session handoff.", + origin: "bundled", + installed: true, + enabled: false, + state: "disabled", + featured: true, + order: 10, + ...overrides, + }; +} + +function createResult(plugin = createPlugin()): PluginListResult { + return { plugins: [plugin], diagnostics: [], mutationAllowed: true }; +} + +function createClient(handler: RequestHandler) { + const request = vi.fn(handler); + return { + client: { request } as unknown as GatewayBrowserClient, + request, + }; +} + +function createSnapshot( + client: GatewayBrowserClient | null, + connected: boolean, +): ApplicationGatewaySnapshot { + return { + client, + connected, + reconnecting: !connected, + hello: { + type: "hello-ok", + protocol: 1, + auth: { role: "operator", scopes: ["operator.read", "operator.admin"] }, + }, + assistantAgentId: "main", + sessionKey: "main", + lastError: null, + lastErrorCode: null, + }; +} + +function createGateway(client: GatewayBrowserClient, connected = true): GatewayHarness { + let snapshot = createSnapshot(client, connected); + const listeners = new Set<(next: ApplicationGatewaySnapshot) => void>(); + const gateway = { + get snapshot() { + return snapshot; + }, + connection: { gatewayUrl: "ws://localhost", token: "", password: "", bootstrapToken: "" }, + eventLog: [], + connect: () => undefined, + setSessionKey: () => undefined, + start: () => undefined, + stop: () => undefined, + subscribe(listener) { + listeners.add(listener); + return () => listeners.delete(listener); + }, + subscribeEventLog: () => () => undefined, + subscribeEvents: () => () => undefined, + } satisfies ApplicationGateway; + return { + gateway, + emit(nextClient, nextConnected) { + snapshot = createSnapshot(nextClient, nextConnected); + for (const listener of listeners) { + listener(snapshot); + } + return snapshot; + }, + }; +} + +type RuntimeConfigTestHarness = { + runtimeConfig: { + state: RuntimeConfigTestState; + refresh: ApplicationContext["runtimeConfig"]["refresh"]; + ensureLoaded: ReturnType Promise>>; + patch: ReturnType< + typeof vi.fn<(options: { raw: Record; note: string }) => Promise> + >; + subscribe: (listener: (state: RuntimeConfigTestState) => void) => () => void; + }; + notify: () => void; +}; + +function createRuntimeConfigHarness( + refreshConfig: ApplicationContext["runtimeConfig"]["refresh"], + runtimeConfigState: RuntimeConfigTestState, +): RuntimeConfigTestHarness { + const listeners = new Set<(state: RuntimeConfigTestState) => void>(); + const runtimeConfig = { + state: runtimeConfigState, + refresh: refreshConfig, + ensureLoaded: vi.fn(async () => undefined), + patch: vi.fn<(options: { raw: Record; note: string }) => Promise>( + async () => true, + ), + subscribe(listener: (state: RuntimeConfigTestState) => void) { + listeners.add(listener); + return () => listeners.delete(listener); + }, + }; + return { + runtimeConfig, + notify: () => { + for (const listener of listeners) { + listener(runtimeConfigState); + } + }, + }; +} + +function createContext( + gateway: ApplicationGateway, + refreshConfig: ApplicationContext["runtimeConfig"]["refresh"], + runtimeConfigState: RuntimeConfigTestState = { + configFormDirty: false, + lastError: null, + }, + harness = createRuntimeConfigHarness(refreshConfig, runtimeConfigState), +): ApplicationContext { + return { + gateway, + basePath: "", + runtimeConfig: harness.runtimeConfig, + } as unknown as ApplicationContext; +} + +async function mountPage( + context: ApplicationContext, + routeData?: PluginsRouteData, +): Promise<{ page: TestPluginsPage; provider: PluginsPageContextProvider }> { + const provider = document.createElement(PROVIDER_TAG) as PluginsPageContextProvider; + const page = document.createElement("openclaw-plugins-page") as unknown as TestPluginsPage; + page.routeData = routeData; + provider.setContext(context); + provider.append(page); + document.body.append(provider); + await page.updateComplete; + return { page, provider }; +} + +function deferred() { + let resolve!: (value: T) => void; + const promise = new Promise((nextResolve) => { + resolve = nextResolve; + }); + return { promise, resolve }; +} + +async function clickMenuItem(page: TestPluginsPage, pluginSelector: string, label: string) { + page.querySelector(`${pluginSelector} .plugins-kebab`)?.click(); + await page.updateComplete; + const item = [ + ...page.querySelectorAll(`${pluginSelector} .plugins-menu__item`), + ].find((element) => element.textContent?.includes(label)); + item?.click(); + await page.updateComplete; +} + +describe("PluginsPage", () => { + beforeEach(async () => { + await i18n.setLocale("en"); + }); + + afterEach(() => { + document.body.replaceChildren(); + vi.useRealTimers(); + vi.restoreAllMocks(); + }); + + it("accepts matching route data without issuing a duplicate list request", async () => { + const { client, request } = createClient(async () => createResult()); + const harness = createGateway(client); + const result = createResult(); + const routeData: PluginsRouteData = { + gateway: harness.gateway, + gatewaySnapshot: harness.gateway.snapshot, + result, + error: null, + }; + + const { page } = await mountPage( + createContext( + harness.gateway, + vi.fn(async () => undefined), + ), + routeData, + ); + + expect(page.result).toBe(result); + expect(request).not.toHaveBeenCalled(); + expect(page.querySelectorAll("h1")).toHaveLength(1); + expect(page.querySelector("h1")?.textContent).toBe("Plugins"); + }); + + it("refreshes the authoritative catalog after a same-client reconnect", async () => { + const refreshed = createResult(createPlugin({ enabled: true, state: "enabled" })); + const { client, request } = createClient(async (method) => { + if (method === "plugins.list") { + return refreshed; + } + throw new Error(`Unexpected method ${method}`); + }); + const harness = createGateway(client); + const routeData: PluginsRouteData = { + gateway: harness.gateway, + gatewaySnapshot: harness.gateway.snapshot, + result: createResult(), + error: null, + }; + const { page } = await mountPage( + createContext( + harness.gateway, + vi.fn(async () => undefined), + ), + routeData, + ); + + harness.emit(client, false); + harness.emit(client, true); + + await vi.waitFor(() => expect(page.result?.plugins[0]?.enabled).toBe(true)); + expect(request).toHaveBeenCalledWith("plugins.list", {}); + }); + + it("debounces two-character ClawHub searches and cancels stale input", async () => { + vi.useFakeTimers(); + const { client, request } = createClient(async (method) => { + if (method === "plugins.search") { + return { results: [] }; + } + throw new Error(`Unexpected method ${method}`); + }); + const harness = createGateway(client); + const { page } = await mountPage( + createContext( + harness.gateway, + vi.fn(async () => undefined), + ), + { + gateway: harness.gateway, + gatewaySnapshot: harness.gateway.snapshot, + result: createResult(), + error: null, + }, + ); + + page.querySelector("#plugins-tab-discover")?.click(); + const search = page.querySelector("#plugins-global-search")!; + search.value = "w"; + search.dispatchEvent(new Event("input", { bubbles: true })); + search.value = "work"; + search.dispatchEvent(new Event("input", { bubbles: true })); + search.value = "workboard"; + search.dispatchEvent(new Event("input", { bubbles: true })); + await vi.advanceTimersByTimeAsync(300); + + expect(request).toHaveBeenCalledTimes(1); + expect(request).toHaveBeenCalledWith("plugins.search", { + query: "workboard", + limit: 20, + }); + }); + + it("refreshes plugins and runtime config without discarding a pending config draft", async () => { + const enabledPlugin = createPlugin({ enabled: true, state: "enabled" }); + const refreshed = createResult(enabledPlugin); + const calls: Array<[string, unknown]> = []; + const { client } = createClient(async (method, params) => { + calls.push([method, params]); + if (method === "plugins.setEnabled") { + return { ok: true, plugin: enabledPlugin, restartRequired: true }; + } + if (method === "plugins.list") { + return refreshed; + } + if (method === "config.get") { + return { config: {}, hash: "fresh" }; + } + throw new Error(`Unexpected method ${method}`); + }); + const harness = createGateway(client); + const runtimeConfigState: RuntimeConfigTestState = { + configFormDirty: true, + lastError: null, + }; + const refreshConfig = vi.fn(async () => { + await client.request("config.get", {}); + }); + const { page } = await mountPage( + createContext(harness.gateway, refreshConfig, runtimeConfigState), + { + gateway: harness.gateway, + gatewaySnapshot: harness.gateway.snapshot, + result: createResult(), + error: null, + }, + ); + + await clickMenuItem(page, '[data-plugin-id="workboard"]', "Enable"); + + await vi.waitFor(() => expect(page.result?.plugins[0]?.enabled).toBe(true)); + await vi.waitFor(() => expect(refreshConfig).toHaveBeenCalledOnce()); + expect(refreshConfig).toHaveBeenCalledWith(); + expect(runtimeConfigState.configFormDirty).toBe(true); + expect(calls).toContainEqual(["plugins.setEnabled", { pluginId: "workboard", enabled: true }]); + expect(calls).toContainEqual(["plugins.list", {}]); + expect(calls).toContainEqual(["config.get", {}]); + }); + + it("keeps the enable action retryable after a failed enable", async () => { + const { client, request } = createClient(async (method) => { + if (method === "plugins.setEnabled") { + throw new Error("Enable failed"); + } + throw new Error(`Unexpected method ${method}`); + }); + const harness = createGateway(client); + const { page } = await mountPage( + createContext( + harness.gateway, + vi.fn(async () => undefined), + ), + { + gateway: harness.gateway, + gatewaySnapshot: harness.gateway.snapshot, + result: createResult(), + error: null, + }, + ); + + await clickMenuItem(page, '[data-plugin-id="workboard"]', "Enable"); + await vi.waitFor(() => + expect(page.querySelector('[role="alert"]')?.textContent).toContain("Enable failed"), + ); + + await clickMenuItem(page, '[data-plugin-id="workboard"]', "Enable"); + await vi.waitFor(() => { + const calls = request.mock.calls.filter(([method]) => method === "plugins.setEnabled"); + expect(calls).toHaveLength(2); + expect(calls.map(([, params]) => params)).toEqual([ + { pluginId: "workboard", enabled: true }, + { pluginId: "workboard", enabled: true }, + ]); + }); + }); + + it("reschedules an active ClawHub query after reconnect", async () => { + vi.useFakeTimers(); + const { client, request } = createClient(async (method) => { + if (method === "plugins.list") { + return createResult(); + } + if (method === "plugins.search") { + return { results: [] }; + } + throw new Error(`Unexpected method ${method}`); + }); + const harness = createGateway(client); + const { page } = await mountPage( + createContext( + harness.gateway, + vi.fn(async () => undefined), + ), + { + gateway: harness.gateway, + gatewaySnapshot: harness.gateway.snapshot, + result: createResult(), + error: null, + }, + ); + + page.querySelector("#plugins-tab-discover")?.click(); + const search = page.querySelector("#plugins-global-search")!; + search.value = "calendar"; + search.dispatchEvent(new Event("input", { bubbles: true })); + harness.emit(client, false); + await vi.advanceTimersByTimeAsync(300); + expect(request.mock.calls.some(([method]) => method === "plugins.search")).toBe(false); + + harness.emit(client, true); + await vi.advanceTimersByTimeAsync(300); + expect(request).toHaveBeenCalledWith("plugins.search", { + query: "calendar", + limit: 20, + }); + }); + + it("clears visible catalog loading when a mutation supersedes a manual refresh", async () => { + const manualRefresh = deferred(); + const enabledPlugin = createPlugin({ enabled: true, state: "enabled" }); + const refreshed = createResult(enabledPlugin); + let listCalls = 0; + const { client } = createClient(async (method) => { + if (method === "plugins.list") { + listCalls += 1; + return listCalls === 1 ? manualRefresh.promise : refreshed; + } + if (method === "plugins.setEnabled") { + return { ok: true, plugin: enabledPlugin, restartRequired: false }; + } + throw new Error(`Unexpected method ${method}`); + }); + const harness = createGateway(client); + const { page } = await mountPage( + createContext( + harness.gateway, + vi.fn(async () => undefined), + ), + { + gateway: harness.gateway, + gatewaySnapshot: harness.gateway.snapshot, + result: createResult(), + error: null, + }, + ); + + page.querySelector(".plugins-refresh")?.click(); + await page.updateComplete; + expect(page.loading).toBe(true); + await clickMenuItem(page, '[data-plugin-id="workboard"]', "Enable"); + + await vi.waitFor(() => expect(page.busy["plugin:workboard"]).toBeUndefined()); + expect(page.loading).toBe(false); + expect(page.querySelector(".plugins-refresh")?.disabled).toBe(false); + manualRefresh.resolve(createResult()); + await Promise.resolve(); + expect(page.loading).toBe(false); + }); + + it("surfaces and retries a runtime config refresh failure", async () => { + const enabledPlugin = createPlugin({ enabled: true, state: "enabled" }); + const { client } = createClient(async (method) => { + if (method === "plugins.setEnabled") { + return { ok: true, plugin: enabledPlugin, restartRequired: false }; + } + if (method === "plugins.list") { + return createResult(enabledPlugin); + } + throw new Error(`Unexpected method ${method}`); + }); + const harness = createGateway(client); + const runtimeConfigState: RuntimeConfigTestState = { + configFormDirty: false, + lastError: null, + }; + let refreshCalls = 0; + const refreshConfig = vi.fn(async () => { + refreshCalls += 1; + runtimeConfigState.lastError = refreshCalls === 1 ? "config.get failed" : null; + }); + const { page } = await mountPage( + createContext(harness.gateway, refreshConfig, runtimeConfigState), + { + gateway: harness.gateway, + gatewaySnapshot: harness.gateway.snapshot, + result: createResult(), + error: null, + }, + ); + + await clickMenuItem(page, '[data-plugin-id="workboard"]', "Enable"); + await vi.waitFor(() => + expect(page.querySelector(".plugins-page-error")?.textContent).toContain( + "Could not refresh Control UI configuration: config.get failed", + ), + ); + + page.querySelector(".plugins-page-error button")?.click(); + await vi.waitFor(() => expect(page.querySelector(".plugins-page-error")).toBeNull()); + expect(refreshConfig).toHaveBeenCalledTimes(2); + }); + + it("does not let an old mutation clear replacement-source busy state", async () => { + const staleMutation = deferred(); + const freshMutation = deferred(); + const disabledResult = createResult(); + const enabledPlugin = createPlugin({ enabled: true, state: "enabled" }); + const { client: initialClient } = createClient(async (method) => { + if (method === "plugins.setEnabled") { + return staleMutation.promise; + } + throw new Error(`Unexpected initial method ${method}`); + }); + let replacementListCount = 0; + const { client: replacementClient } = createClient(async (method) => { + if (method === "plugins.list") { + replacementListCount += 1; + return replacementListCount === 1 ? disabledResult : createResult(enabledPlugin); + } + if (method === "plugins.setEnabled") { + return freshMutation.promise; + } + if (method === "config.get") { + return { config: {}, hash: "replacement" }; + } + throw new Error(`Unexpected replacement method ${method}`); + }); + const harness = createGateway(initialClient); + const refreshConfig = vi.fn(async () => { + await replacementClient.request("config.get", {}); + }); + const { page } = await mountPage(createContext(harness.gateway, refreshConfig), { + gateway: harness.gateway, + gatewaySnapshot: harness.gateway.snapshot, + result: disabledResult, + error: null, + }); + + await clickMenuItem(page, '[data-plugin-id="workboard"]', "Enable"); + expect(page.busy["plugin:workboard"]).toBe(true); + + harness.emit(replacementClient, true); + await vi.waitFor(() => expect(replacementListCount).toBe(1)); + await page.updateComplete; + await clickMenuItem(page, '[data-plugin-id="workboard"]', "Enable"); + expect(page.busy["plugin:workboard"]).toBe(true); + + staleMutation.resolve({ ok: true, plugin: enabledPlugin, restartRequired: false }); + await Promise.resolve(); + expect(page.busy["plugin:workboard"]).toBe(true); + + freshMutation.resolve({ ok: true, plugin: enabledPlugin, restartRequired: false }); + await vi.waitFor(() => expect(page.busy["plugin:workboard"]).toBeUndefined()); + }); + + it("uninstalls a removable plugin after inline confirmation", async () => { + const removable = createPlugin({ + id: "community-thing", + name: "Community Thing", + origin: "global", + removable: true, + featured: false, + }); + const calls: Array<[string, unknown]> = []; + const { client } = createClient(async (method, params) => { + calls.push([method, params]); + if (method === "plugins.uninstall") { + return { + ok: true, + pluginId: "community-thing", + restartRequired: true, + removed: ["config entry", "install record", "directory"], + }; + } + if (method === "plugins.list") { + return createResult(); + } + throw new Error(`Unexpected method ${method}`); + }); + const harness = createGateway(client); + const { page } = await mountPage( + createContext( + harness.gateway, + vi.fn(async () => undefined), + ), + { + gateway: harness.gateway, + gatewaySnapshot: harness.gateway.snapshot, + result: { plugins: [createPlugin(), removable], diagnostics: [], mutationAllowed: true }, + error: null, + }, + ); + + await clickMenuItem(page, '[data-plugin-id="community-thing"]', "Remove"); + page + .querySelector( + '[data-plugin-id="community-thing"] .plugins-remove-confirm .btn.danger', + ) + ?.click(); + + await vi.waitFor(() => + expect(calls).toContainEqual(["plugins.uninstall", { pluginId: "community-thing" }]), + ); + await vi.waitFor(() => + expect(page.querySelector(".plugins-page-notice")?.textContent).toContain( + "Removed community-thing", + ), + ); + expect(calls).toContainEqual(["plugins.list", {}]); + }); + + it("adds an MCP server through the shared config seam", async () => { + const { client } = createClient(async (method) => { + if (method === "plugins.list") { + return createResult(); + } + throw new Error(`Unexpected method ${method}`); + }); + const gatewayHarness = createGateway(client); + const runtimeConfigState: RuntimeConfigTestState = { + configFormDirty: false, + lastError: null, + configSnapshot: { sourceConfig: { mcp: { servers: {} } }, hash: "base" }, + }; + const configHarness = createRuntimeConfigHarness( + vi.fn(async () => undefined), + runtimeConfigState, + ); + const { page } = await mountPage( + createContext( + gatewayHarness.gateway, + configHarness.runtimeConfig.refresh, + runtimeConfigState, + configHarness, + ), + { + gateway: gatewayHarness.gateway, + gatewaySnapshot: gatewayHarness.gateway.snapshot, + result: createResult(), + error: null, + }, + ); + + const addButton = [ + ...page.querySelectorAll(".plugins-group__actions .btn"), + ].find((button) => button.textContent?.includes("Add server")); + addButton?.click(); + await page.updateComplete; + + const form = page.querySelector(".plugins-mcp-form")!; + form.querySelector('[name="mcp-name"]')!.value = "context7"; + form.querySelector('[name="mcp-target"]')!.value = + "https://mcp.context7.com/mcp"; + form.dispatchEvent(new Event("submit", { bubbles: true, cancelable: true })); + + await vi.waitFor(() => expect(configHarness.runtimeConfig.patch).toHaveBeenCalledOnce()); + const patchArgs = configHarness.runtimeConfig.patch.mock.calls[0][0] as { + raw: Record; + note: string; + }; + expect(patchArgs.note).toContain("context7"); + expect(patchArgs.raw).toEqual({ + mcp: { + servers: { + context7: { url: "https://mcp.context7.com/mcp", transport: "streamable-http" }, + }, + }, + }); + await vi.waitFor(() => + expect(page.querySelector('[role="status"].plugins-row-message')?.textContent).toContain( + "Added MCP server context7", + ), + ); + }); + + it("removes an MCP server with an explicit merge-patch null", async () => { + const { client } = createClient(async () => createResult()); + const gatewayHarness = createGateway(client); + const configHarness = createRuntimeConfigHarness( + vi.fn(async () => undefined), + { + configFormDirty: false, + lastError: null, + configSnapshot: { + sourceConfig: { + mcp: { + servers: { + github: { url: "https://api.githubcopilot.com/mcp/" }, + local: { command: "npx", args: ["some-mcp", "--token", "tok-test-1234"] }, + }, + }, + }, + hash: "base", + }, + }, + ); + const { page } = await mountPage( + createContext( + gatewayHarness.gateway, + configHarness.runtimeConfig.refresh, + configHarness.runtimeConfig.state, + configHarness, + ), + { + gateway: gatewayHarness.gateway, + gatewaySnapshot: gatewayHarness.gateway.snapshot, + result: createResult(), + error: null, + }, + ); + + expect(page.querySelector('[data-mcp-name="github"]')).not.toBeNull(); + await clickMenuItem(page, '[data-mcp-name="github"]', "Remove"); + + await vi.waitFor(() => expect(configHarness.runtimeConfig.patch).toHaveBeenCalledOnce()); + const patchArgs = configHarness.runtimeConfig.patch.mock.calls[0][0] as { + raw: Record; + }; + // RFC 7396 merge semantics: deletion must be an explicit null, not omission. + expect(patchArgs.raw).toEqual({ mcp: { servers: { github: null } } }); + }); + + it("shows connector add failures on the connector card", async () => { + const { client } = createClient(async () => createResult()); + const gatewayHarness = createGateway(client); + const configHarness = createRuntimeConfigHarness( + vi.fn(async () => undefined), + { configFormDirty: false, lastError: null, configSnapshot: { sourceConfig: {}, hash: "h" } }, + ); + configHarness.runtimeConfig.patch.mockImplementation(async () => { + configHarness.runtimeConfig.state.lastError = "rate limit exceeded for config.patch"; + return false; + }); + const { page } = await mountPage( + createContext( + gatewayHarness.gateway, + configHarness.runtimeConfig.refresh, + configHarness.runtimeConfig.state, + configHarness, + ), + { + gateway: gatewayHarness.gateway, + gatewaySnapshot: gatewayHarness.gateway.snapshot, + result: createResult(), + error: null, + }, + ); + + page.querySelector("#plugins-tab-discover")?.click(); + await page.updateComplete; + page + .querySelector( + '[data-connector-id="context7"] .plugins-card__footer button', + ) + ?.click(); + + await vi.waitFor(() => + expect( + page.querySelector('[data-connector-id="context7"] [role="alert"]')?.textContent, + ).toContain("rate limit exceeded"), + ); + // The MCP-section message stays clear; the failure belongs to the card. + expect(page.querySelector("#plugins-group-mcp")).toBeNull(); + }); + + it("rejects invalid MCP server names before touching config", async () => { + const { client } = createClient(async () => createResult()); + const gatewayHarness = createGateway(client); + const configHarness = createRuntimeConfigHarness( + vi.fn(async () => undefined), + { configFormDirty: false, lastError: null, configSnapshot: { sourceConfig: {}, hash: "h" } }, + ); + const { page } = await mountPage( + createContext( + gatewayHarness.gateway, + configHarness.runtimeConfig.refresh, + configHarness.runtimeConfig.state, + configHarness, + ), + { + gateway: gatewayHarness.gateway, + gatewaySnapshot: gatewayHarness.gateway.snapshot, + result: createResult(), + error: null, + }, + ); + + const addButton = [ + ...page.querySelectorAll(".plugins-group__actions .btn"), + ].find((button) => button.textContent?.includes("Add server")); + addButton?.click(); + await page.updateComplete; + const form = page.querySelector(".plugins-mcp-form")!; + form.querySelector('[name="mcp-name"]')!.value = "bad name!"; + form.querySelector('[name="mcp-target"]')!.value = "https://x.example/mcp"; + form.dispatchEvent(new Event("submit", { bubbles: true, cancelable: true })); + + await vi.waitFor(() => + expect(page.querySelector('[role="alert"].plugins-row-message')?.textContent).toContain( + "Server names use", + ), + ); + expect(configHarness.runtimeConfig.patch).not.toHaveBeenCalled(); + }); +}); diff --git a/ui/src/pages/plugins/plugins-page.ts b/ui/src/pages/plugins/plugins-page.ts new file mode 100644 index 000000000000..caa96252b11e --- /dev/null +++ b/ui/src/pages/plugins/plugins-page.ts @@ -0,0 +1,915 @@ +import { consume } from "@lit/context"; +import { redactSensitiveUrlLikeString } from "@openclaw/net-policy/redact-sensitive-url"; +import { html, type PropertyValues } from "lit"; +import { property, state } from "lit/decorators.js"; +import type { GatewayBrowserClient } from "../../api/gateway.ts"; +import { subtitleForRoute, titleForRoute } from "../../app-navigation.ts"; +import { pathForRoute } from "../../app-route-paths.ts"; +import { + applicationContext, + type ApplicationContext, + type ApplicationGatewaySnapshot, +} from "../../app/context.ts"; +import { hasOperatorAdminAccess } from "../../app/operator-access.ts"; +import { renderSettingsWorkspace } from "../../components/settings-workspace.ts"; +import { t } from "../../i18n/index.ts"; +import { resolveEditableSnapshotConfig } from "../../lib/config/index.ts"; +import { + installPlugin, + loadPluginCatalog, + pluginInstallNeedsRiskAcknowledgement, + readPluginInstallTrustError, + searchPluginCatalog, + setPluginEnabled, + uninstallPlugin, + type PluginCatalogItem, + type PluginInstallRequest, + type PluginListResult, + type PluginMutationResult, + type PluginSearchResult, +} from "../../lib/plugins/index.ts"; +import { OpenClawLightDomElement } from "../../lit/openclaw-element.ts"; +import { SubscriptionsController } from "../../lit/subscriptions-controller.ts"; +import type { ConnectorSuggestion } from "./presentation.ts"; +import { + connectorRowKey, + pluginRowKey, + renderPlugins, + type InstalledFilter, + type McpServerForm, + type McpServerSummary, + type PluginRowMessage, + type PluginsTab, +} from "./view.ts"; + +export type PluginsRouteData = { + gateway: ApplicationContext["gateway"]; + gatewaySnapshot: ApplicationGatewaySnapshot; + result: PluginListResult | null; + error: string | null; +}; + +function errorMessage(error: unknown): string { + return error instanceof Error ? error.message : String(error); +} + +function withPlugin( + current: PluginListResult | null, + plugin: PluginCatalogItem, +): PluginListResult | null { + if (!current) { + return current; + } + const existingIndex = current.plugins.findIndex((entry) => entry.id === plugin.id); + const plugins = [...current.plugins]; + if (existingIndex >= 0) { + plugins[existingIndex] = plugin; + } else { + plugins.push(plugin); + } + return { ...current, plugins }; +} + +function mutationSuccessMessage( + action: "installed" | "enabled" | "disabled", + result: PluginMutationResult, +): string { + const key = result.restartRequired + ? `pluginsPage.${action}Restart` + : `pluginsPage.${action}Success`; + const warnings = "warnings" in result ? (result.warnings ?? []) : []; + const lines = [t(key, { name: result.plugin.name }), ...warnings]; + return lines.filter(Boolean).join("\n"); +} + +function asRecord(value: unknown): Record | null { + return typeof value === "object" && value !== null && !Array.isArray(value) + ? (value as Record) + : null; +} + +/** Cold MCP server summary mirroring the config page's row projection. */ +function summarizeMcpServers(config: Record | null): McpServerSummary[] | null { + if (!config) { + return null; + } + const servers = asRecord(asRecord(config.mcp)?.servers) ?? {}; + return Object.entries(servers) + .map(([name, value]) => { + const server = asRecord(value) ?? {}; + const url = typeof server.url === "string" ? server.url : ""; + // Command only, mirroring the config page: stdio args routinely carry + // tokens and this surface is visible to read-only operators. + const command = typeof server.command === "string" ? server.command : ""; + const launch = url || command || "missing transport"; + return { + name, + enabled: server.enabled !== false, + transport: url ? ("http" as const) : command ? ("stdio" as const) : ("invalid" as const), + target: url ? redactSensitiveUrlLikeString(launch) : launch, + auth: typeof server.auth === "string" ? server.auth : null, + }; + }) + .toSorted((left, right) => left.name.localeCompare(right.name)); +} + +const MCP_SERVER_NAME_PATTERN = /^[a-zA-Z0-9][a-zA-Z0-9._-]*$/; + +function parseMcpTarget(target: string): Record | null { + if (/^https?:\/\//i.test(target)) { + // The runtime defaults URL-only servers to SSE; modern MCP endpoints are + // streamable HTTP unless the /sse path convention says otherwise. + const transport = /\/sse\/?$/i.test(target.split("?")[0] ?? target) ? "sse" : "streamable-http"; + return { url: target, transport }; + } + const [command, ...args] = target.trim().split(/\s+/u); + if (!command) { + return null; + } + return args.length > 0 ? { command, args } : { command }; +} + +class PluginsPage extends OpenClawLightDomElement { + @consume({ context: applicationContext, subscribe: true }) + private context!: ApplicationContext; + + @property({ attribute: false }) routeData?: PluginsRouteData; + + @state() private client: GatewayBrowserClient | null = null; + @state() private connected = false; + @state() private loading = false; + @state() private result: PluginListResult | null = null; + @state() private error: string | null = null; + @state() private configRefreshError: string | null = null; + @state() private activeTab: PluginsTab = "installed"; + @state() private query = ""; + @state() private installedFilter: InstalledFilter = "all"; + @state() private searchResults: PluginSearchResult[] | null = null; + @state() private searchLoading = false; + @state() private searchError: string | null = null; + @state() private busy: Record = {}; + @state() private messages: Record = {}; + @state() private pendingRemoval: Record = {}; + @state() private openMenuKey: string | null = null; + @state() private detailPluginId: string | null = null; + @state() private pageNotice: PluginRowMessage | null = null; + @state() private mcpServers: McpServerSummary[] | null = null; + @state() private mcpMessage: PluginRowMessage | null = null; + @state() private mcpBusy = false; + @state() private mcpFormOpen = false; + + private gatewaySource?: ApplicationContext["gateway"]; + private sourceGeneration = 0; + private catalogRequestGeneration = 0; + private configRequestGeneration = 0; + private searchRequestGeneration = 0; + private routeDataConsumed = false; + private searchTimer: ReturnType | null = null; + private mutationToken = 0; + private readonly mutationTokens = new Map(); + + private readonly subscriptions = new SubscriptionsController(this) + .effect( + () => this.context?.gateway, + (gateway) => { + const sourceChanged = this.gatewaySource !== undefined && this.gatewaySource !== gateway; + this.gatewaySource = gateway; + this.applyGatewaySnapshot(gateway.snapshot, sourceChanged); + return gateway.subscribe((snapshot) => { + if (this.gatewaySource === gateway) { + this.applyGatewaySnapshot(snapshot, false); + } + }); + }, + ) + .effect( + () => this.context?.runtimeConfig, + (runtimeConfig) => { + this.syncMcpServers(); + return runtimeConfig.subscribe(() => this.syncMcpServers()); + }, + ); + + override willUpdate(changed: PropertyValues) { + if (changed.has("routeData")) { + this.applyRouteData(); + } + } + + override connectedCallback() { + super.connectedCallback(); + document.addEventListener("pointerdown", this.handleDocumentPointerDown, true); + document.addEventListener("keydown", this.handleDocumentKeydown, true); + } + + override disconnectedCallback() { + document.removeEventListener("pointerdown", this.handleDocumentPointerDown, true); + document.removeEventListener("keydown", this.handleDocumentKeydown, true); + this.subscriptions.clear(); + this.clearSearchTimer(); + this.invalidateRequests(); + super.disconnectedCallback(); + } + + private readonly handleDocumentPointerDown = (event: PointerEvent) => { + if (!this.openMenuKey) { + return; + } + if (!(event.target as HTMLElement | null)?.closest(".plugins-actions-menu")) { + this.openMenuKey = null; + } + }; + + private readonly handleDocumentKeydown = (event: KeyboardEvent) => { + if (event.key !== "Escape") { + return; + } + if (this.openMenuKey) { + this.openMenuKey = null; + event.stopPropagation(); + return; + } + if (this.detailPluginId) { + this.detailPluginId = null; + event.stopPropagation(); + } + }; + + private applyGatewaySnapshot(snapshot: ApplicationGatewaySnapshot, sourceChanged: boolean) { + const connectionChanged = snapshot.connected !== this.connected; + const clientChanged = snapshot.client !== this.client; + const shouldRefreshAfterChange = + (sourceChanged || connectionChanged || clientChanged) && + snapshot.connected && + this.routeDataConsumed; + if (sourceChanged || connectionChanged || clientChanged) { + this.invalidateRequests(); + this.client = snapshot.client; + this.connected = snapshot.connected; + this.loading = false; + this.searchLoading = false; + this.busy = {}; + this.mcpBusy = false; + this.configRefreshError = null; + this.searchResults = null; + this.searchError = null; + if (sourceChanged || clientChanged) { + this.result = null; + this.error = null; + this.messages = {}; + this.pendingRemoval = {}; + this.openMenuKey = null; + this.detailPluginId = null; + this.pageNotice = null; + this.mcpMessage = null; + } + } + if (shouldRefreshAfterChange) { + void this.refreshPage(); + } else { + this.ensureInitialData(); + } + if (snapshot.connected) { + void this.context?.runtimeConfig.ensureLoaded().then(() => this.syncMcpServers()); + } + if ( + (sourceChanged || connectionChanged || clientChanged) && + snapshot.connected && + this.activeTab === "discover" + ) { + this.scheduleSearch(); + } + } + + private applyRouteData() { + const data = this.routeData; + this.routeDataConsumed = true; + if (!data) { + this.ensureInitialData(); + return; + } + const snapshot = this.context.gateway.snapshot; + if (data.gateway !== this.context.gateway || data.gatewaySnapshot !== snapshot) { + this.ensureInitialData(); + return; + } + this.client = snapshot.client; + this.connected = snapshot.connected; + this.loading = false; + this.result = data.result; + this.error = data.error; + this.ensureInitialData(); + } + + private invalidateRequests() { + this.sourceGeneration += 1; + this.catalogRequestGeneration += 1; + this.configRequestGeneration += 1; + this.searchRequestGeneration += 1; + this.clearSearchTimer(); + this.mutationTokens.clear(); + } + + private clearSearchTimer() { + if (this.searchTimer) { + clearTimeout(this.searchTimer); + this.searchTimer = null; + } + } + + private isCurrentSource(client: GatewayBrowserClient, sourceGeneration: number): boolean { + return ( + this.isConnected && + this.connected && + this.client === client && + this.sourceGeneration === sourceGeneration + ); + } + + private ensureInitialData() { + if (!this.connected || !this.client || this.loading || this.result || this.error) { + return; + } + if (this.routeData && !this.routeDataConsumed) { + return; + } + void this.refreshCatalog(); + } + + private async refreshCatalog(): Promise { + const client = this.client; + if (!client || !this.connected) { + return; + } + const sourceGeneration = this.sourceGeneration; + const requestGeneration = ++this.catalogRequestGeneration; + const isCurrent = () => + this.isCurrentSource(client, sourceGeneration) && + requestGeneration === this.catalogRequestGeneration; + this.loading = true; + this.error = null; + try { + const result = await loadPluginCatalog(client); + if (isCurrent()) { + this.result = result; + } + } catch (error) { + if (isCurrent()) { + this.error = errorMessage(error); + } + } finally { + if (isCurrent()) { + this.loading = false; + } + } + } + + private async refreshRuntimeConfig(): Promise { + const client = this.client; + if (!client || !this.connected) { + return; + } + const runtimeConfig = this.context.runtimeConfig; + const sourceGeneration = this.sourceGeneration; + const requestGeneration = ++this.configRequestGeneration; + const isCurrent = () => + this.isCurrentSource(client, sourceGeneration) && + requestGeneration === this.configRequestGeneration; + this.configRefreshError = null; + let refreshError: string | null = null; + try { + // Keep app-global pending config edits; the new snapshot/base hash still refreshes. + await runtimeConfig.refresh(); + } catch (error) { + refreshError = errorMessage(error); + } + if (!isCurrent()) { + return; + } + this.syncMcpServers(); + const failure = refreshError ?? runtimeConfig.state.lastError; + this.configRefreshError = failure + ? t("pluginsPage.configRefreshFailed", { error: failure }) + : null; + } + + private async refreshPage(): Promise { + await Promise.all([this.refreshCatalog(), this.refreshRuntimeConfig()]); + } + + private syncMcpServers() { + const snapshot = this.context?.runtimeConfig.state.configSnapshot; + this.mcpServers = summarizeMcpServers(resolveEditableSnapshotConfig(snapshot)); + } + + private changeTab(tab: PluginsTab) { + this.activeTab = tab; + this.openMenuKey = null; + this.clearSearchTimer(); + this.searchRequestGeneration += 1; + this.searchLoading = false; + this.searchResults = null; + this.searchError = null; + if (tab === "discover") { + this.scheduleSearch(); + } + } + + private changeQuery(query: string) { + this.query = query; + this.clearSearchTimer(); + this.searchRequestGeneration += 1; + this.searchLoading = false; + this.searchResults = null; + this.searchError = null; + if (this.activeTab === "discover") { + this.scheduleSearch(); + } + } + + private openClawHubSearch(query: string) { + this.query = query; + this.changeTab("discover"); + } + + private scheduleSearch() { + const query = this.query.trim(); + if (query.length < 2 || !this.connected || !this.client) { + return; + } + this.searchTimer = setTimeout(() => { + this.searchTimer = null; + void this.searchClawHub(query); + }, 300); + } + + private async searchClawHub(query: string) { + const client = this.client; + if (!client || !this.connected || query.length < 2) { + return; + } + const sourceGeneration = this.sourceGeneration; + const requestGeneration = ++this.searchRequestGeneration; + const isCurrent = () => + this.isCurrentSource(client, sourceGeneration) && + requestGeneration === this.searchRequestGeneration && + this.activeTab === "discover" && + this.query.trim() === query; + this.searchLoading = true; + this.searchError = null; + this.searchResults = null; + try { + const response = await searchPluginCatalog(client, query); + if (isCurrent()) { + this.searchResults = response.results; + } + } catch (error) { + if (isCurrent()) { + this.searchError = errorMessage(error); + } + } finally { + if (isCurrent()) { + this.searchLoading = false; + } + } + } + + private mutationBlockedReason(): string | null { + if (!this.connected) { + return t("pluginsPage.connectToChange"); + } + const auth = this.context.gateway.snapshot.hello?.auth ?? null; + if (!hasOperatorAdminAccess(auth)) { + return t("pluginsPage.adminRequired"); + } + if (this.result && !this.result.mutationAllowed) { + return t("pluginsPage.changesDisabled"); + } + return null; + } + + private canMutate(): boolean { + return Boolean(this.result?.mutationAllowed) && this.mutationBlockedReason() === null; + } + + private setBusy(key: string, value: boolean) { + const next = { ...this.busy }; + if (value) { + next[key] = true; + } else { + delete next[key]; + } + this.busy = next; + } + + private setMessage(key: string, message: PluginRowMessage | null) { + const next = { ...this.messages }; + if (message) { + next[key] = message; + } else { + delete next[key]; + } + this.messages = next; + } + + private setPendingRemoval(key: string, value: boolean) { + const next = { ...this.pendingRemoval }; + if (value) { + next[key] = true; + } else { + delete next[key]; + } + this.pendingRemoval = next; + } + + private applyMutationResult(result: PluginMutationResult) { + this.result = withPlugin(this.result, result.plugin); + } + + /** Plugin changes can affect both catalog state and route visibility (for example Workboard). */ + private async refreshAfterMutation( + client: GatewayBrowserClient, + sourceGeneration: number, + ): Promise { + const requestGeneration = ++this.catalogRequestGeneration; + // This authoritative refresh supersedes a visible catalog refresh and owns its cleanup. + this.loading = false; + this.error = null; + const [catalogResult] = await Promise.allSettled([ + loadPluginCatalog(client), + this.refreshRuntimeConfig(), + ]); + if ( + !this.isCurrentSource(client, sourceGeneration) || + requestGeneration !== this.catalogRequestGeneration + ) { + return; + } + if (catalogResult.status === "fulfilled") { + this.result = catalogResult.value; + } else { + this.error = errorMessage(catalogResult.reason); + } + } + + private pageError(): string | null { + const errors = [this.error, this.configRefreshError].filter((message): message is string => + Boolean(message), + ); + return errors.length > 0 ? errors.join(" ") : null; + } + + private async install(rowKey: string, request: PluginInstallRequest) { + const client = this.client; + if (!client || !this.canMutate() || this.busy[rowKey]) { + return; + } + const sourceGeneration = this.sourceGeneration; + const mutationToken = ++this.mutationToken; + this.mutationTokens.set(rowKey, mutationToken); + const isCurrent = () => + this.isCurrentSource(client, sourceGeneration) && + this.mutationTokens.get(rowKey) === mutationToken; + this.setBusy(rowKey, true); + this.setMessage(rowKey, null); + try { + const result = await installPlugin(client, request); + if (!isCurrent()) { + return; + } + this.applyMutationResult(result); + this.setMessage(rowKey, { + kind: "success", + text: mutationSuccessMessage("installed", result), + }); + await this.refreshAfterMutation(client, sourceGeneration); + } catch (error) { + if (!isCurrent()) { + return; + } + const trust = readPluginInstallTrustError(error); + const packageName = request.source === "clawhub" ? request.packageName : null; + if (packageName && pluginInstallNeedsRiskAcknowledgement(error)) { + this.setMessage(rowKey, { + kind: "error", + text: trust?.warning ?? t("pluginsPage.defaultRiskWarning"), + acknowledge: { + packageName, + ...(trust?.version ? { version: trust.version } : {}), + }, + }); + } else { + this.setMessage(rowKey, { kind: "error", text: errorMessage(error) }); + } + } finally { + if (this.mutationTokens.get(rowKey) === mutationToken) { + this.mutationTokens.delete(rowKey); + this.setBusy(rowKey, false); + } + } + } + + private async updateEnabled(pluginId: string, enabled: boolean, key = pluginRowKey(pluginId)) { + const client = this.client; + if (!client || !this.canMutate() || this.busy[key]) { + return; + } + const sourceGeneration = this.sourceGeneration; + const mutationToken = ++this.mutationToken; + this.mutationTokens.set(key, mutationToken); + const isCurrent = () => + this.isCurrentSource(client, sourceGeneration) && + this.mutationTokens.get(key) === mutationToken; + this.setBusy(key, true); + this.setMessage(key, null); + try { + const result = await setPluginEnabled(client, pluginId, enabled); + if (!isCurrent()) { + return; + } + this.applyMutationResult(result); + this.setMessage(key, { + kind: "success", + text: mutationSuccessMessage(enabled ? "enabled" : "disabled", result), + }); + await this.refreshAfterMutation(client, sourceGeneration); + } catch (error) { + if (isCurrent()) { + this.setMessage(key, { kind: "error", text: errorMessage(error) }); + } + } finally { + if (this.mutationTokens.get(key) === mutationToken) { + this.mutationTokens.delete(key); + this.setBusy(key, false); + } + } + } + + private async uninstall(pluginId: string, rowKey: string) { + const client = this.client; + if (!client || !this.canMutate() || this.busy[rowKey]) { + return; + } + const sourceGeneration = this.sourceGeneration; + const mutationToken = ++this.mutationToken; + this.mutationTokens.set(rowKey, mutationToken); + const isCurrent = () => + this.isCurrentSource(client, sourceGeneration) && + this.mutationTokens.get(rowKey) === mutationToken; + this.setBusy(rowKey, true); + this.setMessage(rowKey, null); + try { + const result = await uninstallPlugin(client, pluginId); + if (!isCurrent()) { + return; + } + this.setPendingRemoval(rowKey, false); + // The uninstalled row disappears after refresh, so the restart reminder + // lives in the page-level notice instead of the vanishing row. + this.pageNotice = { + kind: "success", + text: [ + t("pluginsPage.removedRestart", { name: result.pluginId }), + ...(result.warnings ?? []), + ] + .filter(Boolean) + .join("\n"), + }; + await this.refreshAfterMutation(client, sourceGeneration); + } catch (error) { + if (isCurrent()) { + this.setMessage(rowKey, { kind: "error", text: errorMessage(error) }); + } + } finally { + if (this.mutationTokens.get(rowKey) === mutationToken) { + this.mutationTokens.delete(rowKey); + this.setBusy(rowKey, false); + } + } + } + + /** + * Apply one mutation to config.mcp.servers through the shared config seam. + * config.patch uses RFC 7396 merge semantics, so `buildPatch` must return a + * minimal fragment (with explicit nulls for deletions), never a full config. + */ + private async mutateMcpServers(params: { + buildPatch: ( + servers: Readonly>, + ) => { patch: Record } | { error: string }; + note: string; + successText: string; + busyKey?: string; + }): Promise { + if (!this.canMutate() || this.mcpBusy) { + return false; + } + const runtimeConfig = this.context.runtimeConfig; + this.mcpBusy = true; + if (params.busyKey) { + this.setBusy(params.busyKey, true); + this.setMessage(params.busyKey, null); + } + this.mcpMessage = null; + // Failures surface where the action started: on the triggering card when + // one exists (Discover connectors), otherwise in the MCP section. + const fail = (text: string) => { + if (params.busyKey) { + this.setMessage(params.busyKey, { kind: "error", text }); + } else { + this.mcpMessage = { kind: "error", text }; + } + return false; + }; + try { + await runtimeConfig.ensureLoaded(); + const base = resolveEditableSnapshotConfig(runtimeConfig.state.configSnapshot); + if (!base) { + return fail(t("pluginsPage.mcpConfigUnavailable")); + } + const servers = asRecord(asRecord(base.mcp)?.servers) ?? {}; + const built = params.buildPatch(servers); + if ("error" in built) { + return fail(built.error); + } + const patched = await runtimeConfig.patch({ + raw: { mcp: { servers: built.patch } }, + note: params.note, + }); + if (!patched) { + return fail(runtimeConfig.state.lastError ?? t("pluginsPage.mcpConfigUnavailable")); + } + await runtimeConfig.refresh(); + this.syncMcpServers(); + this.mcpMessage = { kind: "success", text: params.successText }; + return true; + } catch (error) { + return fail(errorMessage(error)); + } finally { + this.mcpBusy = false; + if (params.busyKey) { + this.setBusy(params.busyKey, false); + } + } + } + + private async addMcpServer(form: McpServerForm) { + const name = form.name.trim(); + if (!MCP_SERVER_NAME_PATTERN.test(name)) { + this.mcpMessage = { kind: "error", text: t("pluginsPage.mcpNameInvalid") }; + return; + } + const config = parseMcpTarget(form.target); + if (!config) { + this.mcpMessage = { kind: "error", text: t("pluginsPage.mcpTargetInvalid") }; + return; + } + const added = await this.mutateMcpServers({ + buildPatch: (servers) => + servers[name] + ? { error: t("pluginsPage.mcpNameTaken", { name }) } + : { patch: { [name]: config } }, + note: `plugins: add MCP server ${name}`, + successText: t("pluginsPage.mcpAddedSuccess", { name }), + }); + if (added) { + this.mcpFormOpen = false; + } + } + + private async toggleMcpServer(name: string, enabled: boolean) { + await this.mutateMcpServers({ + buildPatch: (servers) => + servers[name] + ? // Enabling deletes the key so the config keeps its enabled-by-default shape. + { patch: { [name]: { enabled: enabled ? null : false } } } + : { error: t("pluginsPage.mcpMissing", { name }) }, + note: `plugins: ${enabled ? "enable" : "disable"} MCP server ${name}`, + successText: t(enabled ? "pluginsPage.enabledSuccess" : "pluginsPage.disabledSuccess", { + name, + }), + }); + } + + private async removeMcpServer(name: string) { + await this.mutateMcpServers({ + buildPatch: (servers) => + servers[name] + ? { patch: { [name]: null } } + : { error: t("pluginsPage.mcpMissing", { name }) }, + note: `plugins: remove MCP server ${name}`, + successText: t("pluginsPage.mcpRemovedSuccess", { name }), + }); + } + + private async addConnector(connector: ConnectorSuggestion) { + if (connector.action.kind !== "mcp") { + return; + } + const mcp = connector.action.mcp; + const rowKey = connectorRowKey(connector.id); + const successText = + mcp.followUp === "oauth" + ? t("pluginsPage.connectorAddedOauth", { + name: connector.name, + command: `openclaw mcp login ${mcp.serverName}`, + }) + : mcp.followUp === "endpoint" + ? t("pluginsPage.connectorAddedEndpoint", { name: connector.name }) + : t("pluginsPage.connectorAddedReady", { name: connector.name }); + const added = await this.mutateMcpServers({ + buildPatch: (servers) => + servers[mcp.serverName] + ? { error: t("pluginsPage.mcpNameTaken", { name: mcp.serverName }) } + : { patch: { [mcp.serverName]: structuredClone(mcp.config) } }, + note: `plugins: add MCP connector ${mcp.serverName}`, + successText, + busyKey: rowKey, + }); + if (added) { + this.setMessage(rowKey, { kind: "success", text: successText }); + this.mcpMessage = null; + } + } + + override render() { + const blockedReason = this.mutationBlockedReason(); + return html` +
+
+

${titleForRoute("plugins")}

+
${subtitleForRoute("plugins")}
+
+
+ ${renderSettingsWorkspace( + renderPlugins({ + connected: this.connected, + loading: this.loading, + result: this.result, + error: this.pageError(), + activeTab: this.activeTab, + query: this.query, + installedFilter: this.installedFilter, + searchResults: this.searchResults, + searchLoading: this.searchLoading, + searchError: this.searchError, + busy: this.busy, + messages: this.messages, + pendingRemoval: this.pendingRemoval, + openMenuKey: this.openMenuKey, + detailPluginId: this.detailPluginId, + canMutate: this.canMutate(), + mutationBlockedReason: blockedReason, + pageNotice: this.pageNotice, + mcpSettingsHref: pathForRoute("mcp", this.context?.basePath ?? ""), + mcpServers: this.mcpServers, + mcpMessage: this.mcpMessage, + mcpBusy: this.mcpBusy, + mcpFormOpen: this.mcpFormOpen, + onTabChange: (tab) => this.changeTab(tab), + onQueryChange: (query) => this.changeQuery(query), + onFilterChange: (filter) => { + this.installedFilter = filter; + }, + onRefresh: () => void this.refreshPage(), + onToggleMenu: (key) => { + this.openMenuKey = key; + }, + onShowDetails: (pluginId) => { + this.openMenuKey = null; + this.detailPluginId = pluginId; + }, + onSetEnabled: (pluginId, enabled, rowKey) => + void this.updateEnabled(pluginId, enabled, rowKey), + onInstall: (rowKey, request) => void this.install(rowKey, request), + onRequestUninstall: (rowKey) => this.setPendingRemoval(rowKey, true), + onCancelUninstall: (rowKey) => this.setPendingRemoval(rowKey, false), + onUninstall: (pluginId, rowKey) => void this.uninstall(pluginId, rowKey), + onAddConnector: (connector) => void this.addConnector(connector), + onSearchClawHub: (query) => this.openClawHubSearch(query), + onMcpToggle: (name, enabled) => void this.toggleMcpServer(name, enabled), + onMcpRemove: (name) => void this.removeMcpServer(name), + onMcpFormToggle: (open) => { + this.mcpFormOpen = open; + if (open) { + this.mcpMessage = null; + } + }, + onMcpAdd: (form) => void this.addMcpServer(form), + }), + )} + `; + } +} + +if (!customElements.get("openclaw-plugins-page")) { + customElements.define("openclaw-plugins-page", PluginsPage); +} + +declare global { + interface HTMLElementTagNameMap { + "openclaw-plugins-page": PluginsPage; + } +} + +export { PluginsPage }; diff --git a/ui/src/pages/plugins/plugins.e2e.test.ts b/ui/src/pages/plugins/plugins.e2e.test.ts new file mode 100644 index 000000000000..b76ea3304471 --- /dev/null +++ b/ui/src/pages/plugins/plugins.e2e.test.ts @@ -0,0 +1,607 @@ +// Control UI tests cover plugin catalog browsing and lifecycle mutations. +import { mkdir, rm } from "node:fs/promises"; +import path from "node:path"; +import { chromium, type Browser, type BrowserContext, type Page } from "playwright"; +import { afterAll, beforeAll, describe, expect, it } from "vitest"; +import { PROTOCOL_VERSION } from "../../../../packages/gateway-protocol/src/version.js"; +import type { + PluginCatalogItem, + PluginListResult, + PluginMutationResult, + PluginSearchResponse, +} from "../../lib/plugins/index.ts"; +import { + canRunPlaywrightChromium, + installMockGateway, + resolvePlaywrightChromiumExecutablePath, + startControlUiE2eServer, + type ControlUiE2eServer, + type MockGatewayControls, + type MockGatewayRequest, +} from "../../test-helpers/control-ui-e2e.ts"; + +const chromiumExecutablePath = resolvePlaywrightChromiumExecutablePath(chromium.executablePath()); +const chromiumAvailable = canRunPlaywrightChromium(chromiumExecutablePath); +const allowMissingChromium = process.env.OPENCLAW_UI_E2E_ALLOW_MISSING_CHROMIUM === "1"; +const describeControlUiE2e = chromiumAvailable || !allowMissingChromium ? describe : describe.skip; +const updateScreenshots = process.env.OPENCLAW_UPDATE_E2E_SCREENSHOTS === "1"; +const artifactDir = path.resolve(process.cwd(), ".artifacts/control-ui-e2e/plugins"); +const desktopViewport = { height: 1000, width: 1440 }; +const mobileViewport = { height: 852, width: 393 }; +const pluginMethods = [ + "plugins.list", + "plugins.search", + "plugins.install", + "plugins.setEnabled", + "plugins.uninstall", +]; + +const workboardDisabled = { + id: "workboard", + name: "Workboard", + description: "Dashboard workboard for agent-owned issues and sessions.", + version: "2026.7.9", + kind: ["productivity"], + origin: "bundled", + installed: true, + enabled: false, + state: "disabled", + featured: true, + order: 10, + category: "tool", + removable: false, +} satisfies PluginCatalogItem; + +const workboardEnabled = { + ...workboardDisabled, + enabled: true, + state: "enabled", +} satisfies PluginCatalogItem; + +const lobsterPlugin = { + id: "lobster", + name: "Lobster", + description: "Run typed workflows with resumable approvals.", + kind: ["plugin"], + origin: "official", + installed: false, + enabled: false, + state: "not-installed", + featured: true, + order: 50, + install: { source: "clawhub", packageName: "@openclaw/lobster" }, +} satisfies PluginCatalogItem; + +const calendarPlugin = { + id: "calendar-plus", + name: "Calendar Plus", + packageName: "calendar-plus", + description: "Plan and coordinate work from a shared calendar.", + version: "1.2.3", + kind: ["productivity"], + origin: "global", + installed: true, + enabled: true, + state: "enabled", + category: "tool", + removable: true, +} satisfies PluginCatalogItem; + +const initialInventory = inventory([workboardDisabled, lobsterPlugin]); +const installedInventory = inventory([workboardDisabled, lobsterPlugin, calendarPlugin]); +const finalInventory = inventory([workboardEnabled, lobsterPlugin, calendarPlugin]); +const uninstalledInventory = inventory([workboardEnabled, lobsterPlugin]); + +const calendarSearchResponse = { + results: [ + { + score: 0.98, + package: { + name: "calendar-plus", + displayName: "Calendar Plus", + family: "code-plugin", + channel: "community", + isOfficial: false, + summary: "Plan and coordinate work from a shared calendar.", + latestVersion: "1.2.3", + downloads: 1420, + verificationTier: "source-linked", + }, + }, + ], +} satisfies PluginSearchResponse; + +const uninstallResult = { + ok: true, + pluginId: "calendar-plus", + restartRequired: true, + removed: ["config entry", "install record", "directory"], +}; + +const installResult = { + ok: true, + plugin: calendarPlugin, + restartRequired: true, +} satisfies PluginMutationResult; + +const enableWorkboardResult = { + ok: true, + plugin: workboardEnabled, + restartRequired: false, +} satisfies PluginMutationResult; + +let browser: Browser; +let server: ControlUiE2eServer; + +function inventory(plugins: PluginCatalogItem[]): PluginListResult { + return { plugins, diagnostics: [], mutationAllowed: true }; +} + +function configSnapshot(isWorkboardEnabled: boolean) { + const config = { + plugins: { + entries: { + workboard: { enabled: isWorkboardEnabled }, + }, + }, + }; + return { + config, + hash: isWorkboardEnabled ? "plugins-config-enabled" : "plugins-config-disabled", + issues: [], + path: "/tmp/openclaw-e2e/openclaw.json", + raw: JSON.stringify(config, null, 2), + resolved: config, + sourceConfig: config, + valid: true, + }; +} + +function readOnlyConnectResponse() { + return { + auth: { + deviceToken: "plugins-read-only-device-token", + role: "operator", + scopes: ["operator.read"], + }, + features: { events: [], methods: pluginMethods }, + controlUiTabs: [], + protocol: PROTOCOL_VERSION, + server: { connId: "plugins-read-only", version: "e2e" }, + snapshot: { + sessionDefaults: { + defaultAgentId: "main", + mainKey: "main", + mainSessionKey: "main", + scope: "agent", + }, + }, + type: "hello-ok", + }; +} + +function requireRecord(value: unknown): Record { + if (!value || typeof value !== "object" || Array.isArray(value)) { + throw new Error("Expected object value"); + } + return value as Record; +} + +function requestParams(request: MockGatewayRequest): Record { + return requireRecord(request.params); +} + +async function waitForNextRequest( + gateway: MockGatewayControls, + method: string, + previousCount: number, +): Promise { + const deadline = Date.now() + 10_000; + while (Date.now() < deadline) { + const requests = await gateway.getRequests(method); + if (requests.length > previousCount) { + const request = requests.at(-1); + if (request) { + return request; + } + } + await new Promise((resolve) => { + setTimeout(resolve, 50); + }); + } + throw new Error(`Timed out waiting for the next ${method} request`); +} + +async function clickRowMenuItem(page: Page, rowSelector: string, itemName: string): Promise { + const row = page.locator(rowSelector); + await row.locator(".plugins-kebab").click(); + await page.getByRole("menuitem", { name: itemName, exact: true }).click(); +} + +async function captureScreenshot(page: Page, name: string): Promise { + if (!updateScreenshots) { + return; + } + await mkdir(artifactDir, { recursive: true }); + // UI transitions top out at 180ms; capture only after Chromium has painted + // the settled catalog grid rather than a partially composited transition. + await page.waitForTimeout(250); + await page.locator(".content").screenshot({ + caret: "hide", + path: path.join(artifactDir, name), + }); +} + +async function newContext(viewport = desktopViewport): Promise { + return browser.newContext({ + locale: "en-US", + serviceWorkers: "block", + viewport, + }); +} + +function pluginMethodResponses() { + return { + "config.get": configSnapshot(false), + "plugins.list": initialInventory, + "plugins.search": { + cases: [ + { + match: { query: "calendar", limit: 20 }, + response: calendarSearchResponse, + }, + ], + }, + "plugins.install": { + cases: [ + { + match: { + source: "clawhub", + packageName: "calendar-plus", + version: "1.2.3", + acknowledgeClawHubRisk: true, + }, + response: installResult, + }, + ], + }, + "plugins.setEnabled": { + cases: [ + { + match: { pluginId: "workboard", enabled: true }, + response: enableWorkboardResult, + }, + ], + }, + "plugins.uninstall": { + cases: [ + { + match: { pluginId: "calendar-plus" }, + response: uninstallResult, + }, + ], + }, + }; +} + +describeControlUiE2e("Control UI Plugins mocked Gateway E2E", () => { + beforeAll(async () => { + if (!chromiumAvailable) { + throw new Error( + `Playwright Chromium is not installed at ${chromiumExecutablePath}. Run \`pnpm --dir ui exec playwright install chromium\`, or set OPENCLAW_UI_E2E_ALLOW_MISSING_CHROMIUM=1 only when intentionally skipping this lane.`, + ); + } + if (updateScreenshots) { + await rm(artifactDir, { force: true, recursive: true }); + await mkdir(artifactDir, { recursive: true }); + } + server = await startControlUiE2eServer(); + browser = await chromium.launch({ executablePath: chromiumExecutablePath }); + }); + + afterAll(async () => { + await browser?.close(); + await server?.close(); + }); + + it("browses the catalog, installs from ClawHub, enables Workboard, and refreshes authoritative state", async () => { + const context = await newContext(); + const page = await context.newPage(); + const gateway = await installMockGateway(page, { + featureMethods: pluginMethods, + methodResponses: pluginMethodResponses(), + }); + + try { + const response = await page.goto(`${server.baseUrl}settings/plugins`); + expect(response?.status()).toBe(200); + await page.locator('[data-plugin-id="workboard"]').waitFor({ state: "visible" }); + await gateway.waitForRequest("config.get"); + + const workboardCard = page.locator('[data-plugin-id="workboard"]'); + await page.getByRole("heading", { name: "Tools" }).waitFor(); + await page.getByRole("heading", { name: "MCP servers" }).waitFor(); + expect(await workboardCard.textContent()).toContain("Disabled"); + await captureScreenshot(page, "01-installed-desktop.png"); + + // Rows open a detail overlay; close it before continuing. + await workboardCard.click(); + const detail = page.locator(".plugins-detail"); + await detail.waitFor({ state: "visible" }); + expect(await detail.textContent()).toContain("Workboard"); + await captureScreenshot(page, "02-detail-desktop.png"); + await detail.getByRole("button", { name: "Close" }).click(); + await detail.waitFor({ state: "detached" }); + + await page.getByRole("tab", { name: /^Discover/u }).click(); + await page.getByRole("heading", { name: "Featured" }).waitFor(); + await page.getByRole("heading", { name: "Connect your world" }).waitFor(); + const lobsterCard = page.locator('[data-plugin-id="lobster"]'); + await lobsterCard.getByRole("button", { name: "Install Lobster" }).waitFor(); + // Bundled cover art renders instead of monogram tiles for curated plugins. + await lobsterCard.locator(".plugins-cover img").waitFor({ state: "attached" }); + await page + .locator('[data-connector-id="github"]') + .getByRole("button", { name: "Add", exact: true }) + .waitFor(); + await captureScreenshot(page, "03-discover-desktop.png"); + + // Search is unified: results append below the discover shelves. + await page.getByRole("searchbox", { name: "Search plugins" }).fill("calendar"); + const searchRequest = await gateway.waitForRequest("plugins.search"); + expect(requestParams(searchRequest)).toEqual({ query: "calendar", limit: 20 }); + await page.getByRole("heading", { name: "From ClawHub" }).waitFor(); + const searchRow = page.locator('[data-package-name="calendar-plus"]'); + await searchRow.waitFor({ state: "visible" }); + expect(await searchRow.textContent()).toContain("Calendar Plus"); + expect(await searchRow.textContent()).toContain("Verified source"); + expect(await searchRow.textContent()).toContain("1.4K"); + await page.getByRole("searchbox", { name: "Search plugins" }).blur(); + await captureScreenshot(page, "04-search-desktop.png"); + + await gateway.deferNext("plugins.install"); + await searchRow.getByRole("button", { name: "Install Calendar Plus", exact: true }).click(); + const firstInstallRequest = await gateway.waitForRequest("plugins.install"); + expect(requestParams(firstInstallRequest)).toEqual({ + source: "clawhub", + packageName: "calendar-plus", + }); + await gateway.rejectDeferred("plugins.install", { + code: "INVALID_REQUEST", + message: "ClawHub requires acknowledgement before installing this release.", + details: { + clawhubTrustCode: "clawhub_risk_acknowledgement_required", + version: "1.2.3", + warning: "REVIEW REQUIRED - ClawHub found behavior that needs operator review.", + }, + }); + + const acknowledgeButton = searchRow.getByRole("button", { + name: "Acknowledge risk and install", + }); + await acknowledgeButton.waitFor({ state: "visible" }); + expect(await searchRow.getByRole("alert").textContent()).toContain("REVIEW REQUIRED"); + + const listCountBeforeInstall = (await gateway.getRequests("plugins.list")).length; + const configCountBeforeInstall = (await gateway.getRequests("config.get")).length; + const installCountBeforeRetry = (await gateway.getRequests("plugins.install")).length; + await gateway.deferNext("plugins.list"); + await gateway.deferNext("config.get"); + await acknowledgeButton.click(); + + const retryInstallRequest = await waitForNextRequest( + gateway, + "plugins.install", + installCountBeforeRetry, + ); + expect(requestParams(retryInstallRequest)).toEqual({ + source: "clawhub", + packageName: "calendar-plus", + version: "1.2.3", + acknowledgeClawHubRisk: true, + }); + const postInstallListRequest = await waitForNextRequest( + gateway, + "plugins.list", + listCountBeforeInstall, + ); + const postInstallConfigRequest = await waitForNextRequest( + gateway, + "config.get", + configCountBeforeInstall, + ); + expect(requestParams(postInstallListRequest)).toEqual({}); + expect(requestParams(postInstallConfigRequest)).toEqual({}); + await expect.poll(() => searchRow.getAttribute("aria-busy")).toBe("true"); + expect(await searchRow.getByRole("status").textContent()).toContain( + "A Gateway restart is required", + ); + await gateway.resolveDeferred("plugins.list", installedInventory); + await gateway.resolveDeferred("config.get", configSnapshot(false)); + await expect.poll(() => searchRow.getAttribute("aria-busy")).toBe("false"); + // Installed search results swap Install for an enabled state chip + menu. + await searchRow.locator(".plugins-state--enabled").waitFor({ state: "attached" }); + + await page.getByRole("tab", { name: /^Installed/u }).click(); + await page.getByRole("searchbox", { name: "Search plugins" }).fill(""); + await workboardCard.waitFor({ state: "visible" }); + const listCountBeforeEnable = (await gateway.getRequests("plugins.list")).length; + const configCountBeforeEnable = (await gateway.getRequests("config.get")).length; + const enableCountBefore = (await gateway.getRequests("plugins.setEnabled")).length; + await gateway.deferNext("plugins.list"); + await gateway.deferNext("config.get"); + await clickRowMenuItem(page, '[data-plugin-id="workboard"]', "Enable"); + + const enableRequest = await waitForNextRequest( + gateway, + "plugins.setEnabled", + enableCountBefore, + ); + expect(requestParams(enableRequest)).toEqual({ pluginId: "workboard", enabled: true }); + const postEnableListRequest = await waitForNextRequest( + gateway, + "plugins.list", + listCountBeforeEnable, + ); + const postEnableConfigRequest = await waitForNextRequest( + gateway, + "config.get", + configCountBeforeEnable, + ); + expect(requestParams(postEnableListRequest)).toEqual({}); + expect(requestParams(postEnableConfigRequest)).toEqual({}); + await gateway.resolveDeferred("plugins.list", finalInventory); + await gateway.resolveDeferred("config.get", configSnapshot(true)); + await expect.poll(() => workboardCard.getAttribute("aria-busy")).toBe("false"); + + await workboardCard.locator(".plugins-state--enabled").waitFor({ state: "attached" }); + const calendarRow = page.locator('[data-plugin-id="calendar-plus"]'); + await calendarRow.waitFor({ state: "visible" }); + await captureScreenshot(page, "05-enabled-installed-desktop.png"); + + // Removable installs expose a menu-driven, confirm-guarded uninstall. + await clickRowMenuItem(page, '[data-plugin-id="calendar-plus"]', "Remove"); + const uninstallCountBefore = (await gateway.getRequests("plugins.uninstall")).length; + const listCountBeforeRemove = (await gateway.getRequests("plugins.list")).length; + const configCountBeforeRemove = (await gateway.getRequests("config.get")).length; + await gateway.deferNext("plugins.list"); + // Keep the authoritative config refresh on the workboard-enabled snapshot + // so the conditional sidebar route assertion below stays meaningful. + await gateway.deferNext("config.get"); + await calendarRow.getByRole("button", { name: "Remove", exact: true }).click(); + const uninstallRequest = await waitForNextRequest( + gateway, + "plugins.uninstall", + uninstallCountBefore, + ); + expect(requestParams(uninstallRequest)).toEqual({ pluginId: "calendar-plus" }); + await waitForNextRequest(gateway, "plugins.list", listCountBeforeRemove); + await waitForNextRequest(gateway, "config.get", configCountBeforeRemove); + await gateway.resolveDeferred("plugins.list", uninstalledInventory); + await gateway.resolveDeferred("config.get", configSnapshot(true)); + await calendarRow.waitFor({ state: "detached" }); + expect(await page.locator(".plugins-page-notice").textContent()).toContain( + "Removed calendar-plus", + ); + + await page.setViewportSize(mobileViewport); + await expect + .poll(() => + page.evaluate( + () => + Math.max(document.documentElement.scrollWidth, document.body.scrollWidth) - + window.innerWidth, + ), + ) + .toBeLessThanOrEqual(1); + await expect + .poll(() => + page.locator(".shell-nav").evaluate((element) => element.getBoundingClientRect().right), + ) + .toBeLessThanOrEqual(0); + await workboardCard.waitFor({ state: "visible" }); + await captureScreenshot(page, "06-installed-mobile.png"); + + await page.setViewportSize(desktopViewport); + const settingsSidebar = page.locator(".settings-sidebar"); + if (await settingsSidebar.isVisible()) { + await settingsSidebar.getByRole("button", { name: "Back to app" }).click(); + } + const sidebar = page.locator("openclaw-app-sidebar"); + await sidebar.waitFor({ state: "visible" }); + const moreButton = sidebar.getByRole("button", { name: "More" }); + if ((await moreButton.getAttribute("aria-expanded")) !== "true") { + await moreButton.click(); + } + await sidebar.getByRole("link", { name: "Workboard" }).waitFor({ state: "visible" }); + } finally { + await context.close(); + } + }); + + it("keeps plugin mutations unavailable to read-only operators while browse and search work", async () => { + const context = await newContext(); + const page = await context.newPage(); + const gateway = await installMockGateway(page, { + featureMethods: pluginMethods, + methodResponses: { + ...pluginMethodResponses(), + connect: readOnlyConnectResponse(), + }, + }); + + try { + await page.goto(`${server.baseUrl}settings/plugins`); + const workboardCard = page.locator('[data-plugin-id="workboard"]'); + await workboardCard.waitFor({ state: "visible" }); + expect(await page.getByRole("note").textContent()).toContain("operator.admin"); + await workboardCard.locator(".plugins-kebab").click(); + expect(await page.getByRole("menuitem", { name: "Enable", exact: true }).isDisabled()).toBe( + true, + ); + await page.keyboard.press("Escape"); + + await page.getByRole("tab", { name: /^Discover/u }).click(); + await page.getByRole("searchbox", { name: "Search plugins" }).fill("calendar"); + const searchRequest = await gateway.waitForRequest("plugins.search"); + expect(requestParams(searchRequest)).toEqual({ query: "calendar", limit: 20 }); + const installButton = page + .locator('[data-package-name="calendar-plus"]') + .getByRole("button", { name: "Install Calendar Plus", exact: true }); + await installButton.waitFor({ state: "visible" }); + expect(await installButton.isDisabled()).toBe(true); + expect(await gateway.getRequests("plugins.install")).toEqual([]); + expect(await gateway.getRequests("plugins.setEnabled")).toEqual([]); + } finally { + await context.close(); + } + }); + + it("shows plugin list failures and retries the catalog request", async () => { + const context = await newContext(); + const page = await context.newPage(); + const gateway = await installMockGateway(page, { + featureMethods: pluginMethods, + methodResponses: pluginMethodResponses(), + }); + + try { + await page.goto(`${server.baseUrl}settings/plugins`); + await page.locator('[data-plugin-id="workboard"]').waitFor({ state: "visible" }); + const listCountBeforeFailure = (await gateway.getRequests("plugins.list")).length; + await gateway.deferNext("plugins.list"); + await page.getByRole("button", { name: "Refresh", exact: true }).click(); + const failedListRequest = await waitForNextRequest( + gateway, + "plugins.list", + listCountBeforeFailure, + ); + expect(requestParams(failedListRequest)).toEqual({}); + await gateway.rejectDeferred("plugins.list", { + code: "UNAVAILABLE", + message: "Plugin inventory unavailable", + retryable: true, + }); + + const error = page.locator(".plugins-page-error"); + await error.waitFor({ state: "visible" }); + expect(await error.textContent()).toContain("Plugin inventory unavailable"); + const listCountBeforeRetry = (await gateway.getRequests("plugins.list")).length; + await gateway.deferNext("plugins.list"); + await error.getByRole("button", { name: "Try again" }).click(); + const retryListRequest = await waitForNextRequest( + gateway, + "plugins.list", + listCountBeforeRetry, + ); + expect(requestParams(retryListRequest)).toEqual({}); + await gateway.resolveDeferred("plugins.list", finalInventory); + await error.waitFor({ state: "detached" }); + await page + .locator('[data-plugin-id="workboard"] .plugins-state--enabled') + .waitFor({ state: "attached" }); + } finally { + await context.close(); + } + }); +}); diff --git a/ui/src/pages/plugins/presentation.ts b/ui/src/pages/plugins/presentation.ts new file mode 100644 index 000000000000..ca73ed69ecdd --- /dev/null +++ b/ui/src/pages/plugins/presentation.ts @@ -0,0 +1,595 @@ +// Presentation data for the plugins catalog: bundled cover art, deterministic +// fallback gradients, category shelving, and curated connector suggestions. +import { inferControlUiPublicAssetPath } from "../../app/public-assets.ts"; +import { t } from "../../i18n/index.ts"; + +/** + * Cover art bundled at ui/public/plugin-art/.webp. The gateway CSP is + * img-src 'self', so catalog artwork must ship with the Control UI bundle; + * remote icon URLs cannot render here. + */ +const PLUGIN_ART_SLUGS: ReadonlySet = new Set([ + "acpx", + "active-memory", + "admin-http-rpc", + "airtable", + "alibaba", + "amazon-bedrock", + "amazon-bedrock-mantle", + "anthropic", + "anthropic-vertex", + "arcee", + "azure-speech", + "bonjour", + "brave", + "browser", + "byteplus", + "canva", + "canvas", + "cerebras", + "chutes", + "clawrouter", + "clickclack", + "cloudflare-ai-gateway", + "codex", + "codex-supervisor", + "cohere", + "comfy", + "context7", + "copilot", + "copilot-proxy", + "deepgram", + "deepinfra", + "deepseek", + "deepwiki", + "device-pair", + "diagnostics-otel", + "diagnostics-prometheus", + "diffs", + "diffs-language-pack", + "discord", + "document-extract", + "duckduckgo", + "dungeon-master", + "elevenlabs", + "email-inbox", + "exa", + "fal", + "featherless", + "feishu", + "file-transfer", + "firecrawl", + "fireworks", + "github", + "github-copilot", + "gmi", + "google", + "google-calendar", + "google-meet", + "googlechat", + "gradium", + "grafana", + "groq", + "home-assistant", + "hugging-face", + "huggingface", + "imessage", + "inworld", + "irc", + "jira", + "kilocode", + "kimi", + "kubernetes", + "line", + "linear", + "litellm", + "llama-cpp", + "llm-task", + "lmstudio", + "lobster", + "logbook", + "longcat", + "maps", + "matrix", + "mattermost", + "memory-core", + "memory-lancedb", + "memory-wiki", + "meta", + "microsoft", + "microsoft-foundry", + "migrate-claude", + "migrate-hermes", + "minimax", + "mistral", + "moonshot", + "morning-brief", + "msteams", + "nextcloud-talk", + "nostr", + "notes", + "notion", + "novita", + "nvidia", + "oc-path", + "ollama", + "open-prose", + "openai", + "opencode", + "opencode-go", + "openrouter", + "openshell", + "parallel", + "pdf-tools", + "perplexity", + "philips-hue", + "phone-control", + "pixverse", + "policy", + "portfolio-pulse", + "qa-channel", + "qa-lab", + "qa-matrix", + "qianfan", + "qqbot", + "qwen", + "raft", + "reddit", + "runway", + "searxng", + "senseaudio", + "sentry", + "sglang", + "signal", + "slack", + "sms", + "sonos", + "spotify", + "stepfun", + "stripe", + "synology-chat", + "synthetic", + "talk-voice", + "tavily", + "telegram", + "tencent", + "thread-ownership", + "tlon", + "todoist", + "together", + "tokenjuice", + "transcription", + "translation", + "trip-scout", + "tts-local-cli", + "twitch", + "vault", + "venice", + "vercel-ai-gateway", + "vllm", + "voice-call", + "volcengine", + "voyage", + "vydra", + "web-readability", + "webhooks", + "whatsapp", + "workboard", + "xai", + "xiaomi", + "youtube", + "zai", + "zalo", + "zalouser", +]); + +export function pluginArtPath(slug: string): string | null { + return PLUGIN_ART_SLUGS.has(slug) + ? inferControlUiPublicAssetPath(`plugin-art/${slug}.webp`) + : null; +} + +/** + * Deterministic two-stop gradients for plugins without bundled art so every + * tile keeps a distinct identity instead of an empty box. + */ +const FALLBACK_GRADIENTS: ReadonlyArray = [ + ["#f59e0b", "#ea580c"], + ["#38bdf8", "#1d4ed8"], + ["#34d399", "#047857"], + ["#a855f7", "#6b21a8"], + ["#f472b6", "#be185d"], + ["#22d3ee", "#0e7490"], + ["#fbbf24", "#b45309"], + ["#818cf8", "#4338ca"], + ["#4ade80", "#166534"], + ["#fb7185", "#9f1239"], +]; + +export function pluginFallbackGradient(id: string): readonly [string, string] { + let hash = 0; + for (const char of id) { + hash = (hash * 31 + char.codePointAt(0)!) >>> 0; + } + return FALLBACK_GRADIENTS[hash % FALLBACK_GRADIENTS.length]!; +} + +export function pluginMonogram(name: string): string { + const words = name.trim().split(/\s+/u).filter(Boolean); + if (words.length === 0) { + return ""; + } + const initials = words.length === 1 ? words[0].slice(0, 2) : `${words[0][0]}${words[1][0]}`; + return initials.toLocaleUpperCase(); +} + +/** Shelving order for the installed inventory; unknown categories group last. */ +export const PLUGIN_CATEGORY_ORDER: readonly string[] = [ + "channel", + "provider", + "memory", + "context-engine", + "tool", + "other", +]; + +export function pluginCategoryLabel(category: string): string { + switch (category) { + case "channel": + return t("pluginsPage.categoryChannels"); + case "provider": + return t("pluginsPage.categoryProviders"); + case "memory": + return t("pluginsPage.categoryMemory"); + case "context-engine": + return t("pluginsPage.categoryContextEngine"); + case "tool": + return t("pluginsPage.categoryTools"); + default: + return t("pluginsPage.categoryOther"); + } +} + +export type ConnectorMcpTemplate = { + serverName: string; + config: { + url?: string; + transport?: "sse" | "streamable-http"; + auth?: "oauth"; + }; + /** Post-add step the operator still owns, or none for keyless servers. */ + followUp: "oauth" | "endpoint" | "none"; + docsUrl: string; +}; + +export type ConnectorGroup = "work" | "dev" | "home" | "life"; + +/** Display order for the use-case shelves inside "Connect your world". */ +export const CONNECTOR_GROUP_ORDER: readonly ConnectorGroup[] = ["work", "dev", "home", "life"]; + +export type ConnectorSuggestion = { + id: string; + name: string; + description: string; + group: ConnectorGroup; + action: { kind: "mcp"; mcp: ConnectorMcpTemplate } | { kind: "clawhub"; query: string }; +}; + +/** + * Curated connector shelf: one-click MCP servers for official hosted endpoints + * plus ClawHub searches proven to return live packages. Descriptions are + * catalog data (like manifest descriptions), not localized UI chrome. + */ +export const CONNECTOR_SUGGESTIONS: readonly ConnectorSuggestion[] = [ + // --- Work & productivity --- + { + id: "notion", + group: "work", + name: "Notion", + description: "Search, create, and update pages and databases in your Notion workspace.", + action: { + kind: "mcp", + mcp: { + serverName: "notion", + config: { url: "https://mcp.notion.com/mcp", transport: "streamable-http", auth: "oauth" }, + followUp: "oauth", + docsUrl: "https://developers.notion.com/docs/mcp", + }, + }, + }, + { + id: "linear", + group: "work", + name: "Linear", + description: "Triage issues, update cycles, and file bugs straight from chat.", + action: { + kind: "mcp", + mcp: { + serverName: "linear", + // Linear retired mcp.linear.app/sse (404); /mcp is the documented endpoint. + config: { url: "https://mcp.linear.app/mcp", transport: "streamable-http", auth: "oauth" }, + followUp: "oauth", + docsUrl: "https://linear.app/docs/mcp", + }, + }, + }, + { + id: "todoist", + group: "work", + name: "Todoist", + description: "Read, add, and complete tasks and projects in Todoist.", + action: { + kind: "mcp", + mcp: { + serverName: "todoist", + config: { url: "https://ai.todoist.net/mcp", transport: "streamable-http", auth: "oauth" }, + followUp: "oauth", + docsUrl: + "https://www.todoist.com/help/articles/use-claude-code-with-todoist-cli-and-mcp-b1USJ4HB3", + }, + }, + }, + { + id: "airtable", + group: "work", + name: "Airtable", + description: "Query and update records, tables, and bases in Airtable.", + action: { + kind: "mcp", + mcp: { + serverName: "airtable", + config: { + url: "https://mcp.airtable.com/mcp", + transport: "streamable-http", + auth: "oauth", + }, + followUp: "oauth", + docsUrl: "https://support.airtable.com/docs/using-the-airtable-mcp-server", + }, + }, + }, + { + id: "jira", + group: "work", + name: "Jira", + description: "Create, search, and triage Jira tickets from chat.", + action: { kind: "clawhub", query: "jira" }, + }, + { + id: "canva", + group: "work", + name: "Canva", + description: "Create and edit Canva designs, manage assets, and export results.", + action: { + kind: "mcp", + mcp: { + serverName: "canva", + config: { url: "https://mcp.canva.com/mcp", transport: "streamable-http", auth: "oauth" }, + followUp: "oauth", + docsUrl: "https://www.canva.dev/docs/mcp/", + }, + }, + }, + { + id: "stripe", + group: "work", + name: "Stripe", + description: "Check payments, customers, invoices, and subscriptions in your Stripe account.", + action: { + kind: "mcp", + mcp: { + serverName: "stripe", + config: { url: "https://mcp.stripe.com", transport: "streamable-http", auth: "oauth" }, + followUp: "oauth", + docsUrl: "https://docs.stripe.com/mcp", + }, + }, + }, + { + id: "google-calendar", + group: "work", + name: "Calendar", + description: "Read, create, and get briefed on events — your agent owns your schedule.", + action: { kind: "clawhub", query: "google calendar" }, + }, + { + id: "email-inbox", + group: "work", + name: "Email", + description: "Mailbox triage, summaries, and drafts with send-on-approval.", + action: { kind: "clawhub", query: "email" }, + }, + { + id: "pdf-tools", + group: "work", + name: "PDF", + description: "Extract, merge, convert, and OCR PDF documents.", + action: { kind: "clawhub", query: "pdf" }, + }, + { + id: "transcription", + group: "work", + name: "Transcription", + description: "Turn audio and video into clean, structured transcripts.", + action: { kind: "clawhub", query: "transcription" }, + }, + // --- Coding & infrastructure --- + { + id: "github", + group: "dev", + name: "GitHub", + description: "PR review queues, issue triage, and repo Q&A through the official GitHub MCP.", + action: { + kind: "mcp", + mcp: { + serverName: "github", + // GitHub's MCP OAuth has no dynamic client registration; users add a + // PAT Authorization header in MCP settings after the one-click add. + config: { + url: "https://api.githubcopilot.com/mcp/", + transport: "streamable-http", + }, + followUp: "endpoint", + docsUrl: + "https://docs.github.com/en/copilot/how-tos/provide-context/use-mcp-in-your-ide/use-the-github-mcp-server", + }, + }, + }, + { + id: "sentry", + group: "dev", + name: "Sentry", + description: "Crash alerts explained and triaged the moment they fire.", + action: { + kind: "mcp", + mcp: { + serverName: "sentry", + config: { url: "https://mcp.sentry.dev/mcp", transport: "streamable-http", auth: "oauth" }, + followUp: "oauth", + docsUrl: "https://mcp.sentry.dev/", + }, + }, + }, + { + id: "context7", + group: "dev", + name: "Context7", + description: "Version-specific library docs and code examples while coding. No signup needed.", + action: { + kind: "mcp", + mcp: { + serverName: "context7", + config: { url: "https://mcp.context7.com/mcp", transport: "streamable-http" }, + followUp: "none", + docsUrl: "https://github.com/upstash/context7", + }, + }, + }, + { + id: "deepwiki", + group: "dev", + name: "DeepWiki", + description: "Ask questions about any public GitHub repo. Free, no account needed.", + action: { + kind: "mcp", + mcp: { + serverName: "deepwiki", + config: { url: "https://mcp.deepwiki.com/mcp", transport: "streamable-http" }, + followUp: "none", + docsUrl: "https://docs.devin.ai/work-with-devin/deepwiki-mcp", + }, + }, + }, + { + id: "hugging-face", + group: "dev", + name: "Hugging Face", + description: "Search models, datasets, and papers; run Spaces as tools.", + action: { + kind: "mcp", + mcp: { + serverName: "hugging-face", + config: { url: "https://huggingface.co/mcp", transport: "streamable-http" }, + followUp: "none", + docsUrl: "https://huggingface.co/docs/hub/hf-mcp-server", + }, + }, + }, + { + id: "grafana", + group: "dev", + name: "Grafana", + description: "Grafana know-how and community connectors for dashboards and alerts.", + action: { kind: "clawhub", query: "grafana" }, + }, + { + id: "kubernetes", + group: "dev", + name: "Kubernetes", + description: "Cluster operations and troubleshooting from chat.", + action: { kind: "clawhub", query: "kubernetes" }, + }, + // --- Home & media --- + { + id: "home-assistant", + group: "home", + name: "Home Assistant", + description: "Control lights, climate, and automations across your whole home.", + action: { + kind: "mcp", + mcp: { + serverName: "home-assistant", + config: { + url: "http://homeassistant.local:8123/api/mcp", + transport: "streamable-http", + }, + followUp: "endpoint", + docsUrl: "https://www.home-assistant.io/integrations/mcp_server/", + }, + }, + }, + { + id: "spotify", + group: "home", + name: "Spotify", + description: "Search, queue, and soundtrack your day with mood-based playlists.", + action: { kind: "clawhub", query: "spotify" }, + }, + { + id: "sonos", + group: "home", + name: "Sonos", + description: "Whole-home audio: play, group rooms, and queue by chat.", + action: { kind: "clawhub", query: "sonos" }, + }, + { + id: "reddit", + group: "life", + name: "Reddit", + description: "Browse, search, and summarize subreddits and threads.", + action: { kind: "clawhub", query: "reddit" }, + }, + // --- Everyday life --- + { + id: "portfolio-pulse", + group: "life", + name: "Markets", + description: "Live stocks and crypto with price alerts and daily digests.", + action: { kind: "clawhub", query: "stocks" }, + }, + { + id: "trip-scout", + group: "life", + name: "Travel", + description: "Flight and hotel search with fare watching and trip memory.", + action: { kind: "clawhub", query: "flights" }, + }, + { + id: "morning-brief", + group: "life", + name: "News", + description: "A personalized daily briefing: news, weather, and tasks in one message.", + action: { kind: "clawhub", query: "news" }, + }, + { + id: "maps", + group: "life", + name: "Maps", + description: "Places, routing, and travel-time answers.", + action: { kind: "clawhub", query: "maps" }, + }, + { + id: "translation", + group: "life", + name: "Translation", + description: "Translate and localize text and documents.", + action: { kind: "clawhub", query: "translation" }, + }, + { + id: "notes", + group: "life", + name: "Notes", + description: "Capture notes to Markdown, Obsidian, Notion, or Bear.", + action: { kind: "clawhub", query: "notes" }, + }, +]; diff --git a/ui/src/pages/plugins/route.ts b/ui/src/pages/plugins/route.ts new file mode 100644 index 000000000000..2c1951368ee5 --- /dev/null +++ b/ui/src/pages/plugins/route.ts @@ -0,0 +1,36 @@ +import { definePage } from "@openclaw/uirouter"; +import { html } from "lit"; +import type { ApplicationContext } from "../../app/context.ts"; +import { loadPluginCatalog } from "../../lib/plugins/index.ts"; +import type { PluginsRouteData } from "./plugins-page.ts"; + +function errorMessage(error: unknown): string { + return error instanceof Error ? error.message : String(error); +} + +async function loadPluginsRouteData(context: ApplicationContext): Promise { + const gateway = context.gateway; + const gatewaySnapshot = gateway.snapshot; + const client = gatewaySnapshot.client; + if (!gatewaySnapshot.connected || !client) { + return { gateway, gatewaySnapshot, result: null, error: null }; + } + try { + const result = await loadPluginCatalog(client); + return { gateway, gatewaySnapshot, result, error: null }; + } catch (error) { + return { gateway, gatewaySnapshot, result: null, error: errorMessage(error) }; + } +} + +export const page = definePage({ + id: "plugins", + path: "/settings/plugins", + loader: loadPluginsRouteData, + component: () => + import("./plugins-page.ts").then(() => ({ + header: true, + render: (data: PluginsRouteData | undefined) => + html``, + })), +}); diff --git a/ui/src/pages/plugins/view.test.ts b/ui/src/pages/plugins/view.test.ts new file mode 100644 index 000000000000..7778fe41e0bc --- /dev/null +++ b/ui/src/pages/plugins/view.test.ts @@ -0,0 +1,622 @@ +/* @vitest-environment jsdom */ + +import { nothing, render } from "lit"; +import { afterEach, beforeEach, describe, expect, it, vi } from "vitest"; +import { i18n } from "../../i18n/index.ts"; +import type { PluginCatalogItem, PluginListResult } from "../../lib/plugins/index.ts"; +import { CONNECTOR_SUGGESTIONS } from "./presentation.ts"; +import { + clawHubRowKey, + discoverShelves, + groupInstalledByCategory, + installedPlugins, + pluginRowKey, + renderPlugins, + type PluginsViewProps, +} from "./view.ts"; + +function createPlugin(overrides: Partial = {}): PluginCatalogItem { + return { + id: "workboard", + name: "Workboard", + description: "Agent work queue and session handoff.", + version: "1.0.0", + kind: ["productivity"], + origin: "bundled", + installed: true, + enabled: false, + state: "disabled", + featured: true, + order: 10, + category: "tool", + removable: false, + ...overrides, + }; +} + +function createResult(plugins: PluginCatalogItem[]): PluginListResult { + return { plugins, diagnostics: [], mutationAllowed: true }; +} + +function createProps(overrides: Partial = {}): PluginsViewProps { + return { + connected: true, + loading: false, + result: createResult([createPlugin()]), + error: null, + activeTab: "installed", + query: "", + installedFilter: "all", + searchResults: null, + searchLoading: false, + searchError: null, + busy: {}, + messages: {}, + pendingRemoval: {}, + openMenuKey: null, + detailPluginId: null, + canMutate: true, + mutationBlockedReason: null, + pageNotice: null, + mcpSettingsHref: "/settings/mcp", + mcpServers: [], + mcpMessage: null, + mcpBusy: false, + mcpFormOpen: false, + onTabChange: () => undefined, + onQueryChange: () => undefined, + onFilterChange: () => undefined, + onRefresh: () => undefined, + onToggleMenu: () => undefined, + onShowDetails: () => undefined, + onSetEnabled: () => undefined, + onInstall: () => undefined, + onRequestUninstall: () => undefined, + onCancelUninstall: () => undefined, + onUninstall: () => undefined, + onAddConnector: () => undefined, + onSearchClawHub: () => undefined, + onMcpToggle: () => undefined, + onMcpRemove: () => undefined, + onMcpFormToggle: () => undefined, + onMcpAdd: () => undefined, + ...overrides, + }; +} + +function mount(props: PluginsViewProps): HTMLDivElement { + const container = document.createElement("div"); + document.body.append(container); + render(renderPlugins(props), container); + return container; +} + +function normalizedText(element: Element | null): string { + return element?.textContent?.replace(/\s+/gu, " ").trim() ?? ""; +} + +function menuItem(container: Element, label: string): HTMLButtonElement | null { + return ( + [...container.querySelectorAll(".plugins-menu__item")].find((item) => + item.textContent?.includes(label), + ) ?? null + ); +} + +describe("renderPlugins", () => { + beforeEach(async () => { + await i18n.setLocale("en"); + }); + + afterEach(() => { + for (const container of document.body.querySelectorAll("div")) { + render(nothing, container); + } + document.body.replaceChildren(); + vi.restoreAllMocks(); + }); + + it("groups installed plugins by category with overview counts", () => { + const plugins = [ + createPlugin(), + createPlugin({ + id: "telegram", + name: "Telegram", + category: "channel", + enabled: true, + state: "enabled", + featured: false, + }), + createPlugin({ + id: "broken", + name: "Broken", + category: "channel", + state: "error", + error: "manifest invalid", + featured: false, + }), + ]; + const groups = groupInstalledByCategory(installedPlugins(plugins)); + expect(groups.map((group) => group.label)).toEqual(["Channels", "Tools"]); + + const container = mount(createProps({ result: createResult(plugins) })); + const pulse = container.querySelector(".plugins-pulse"); + expect(normalizedText(pulse)).toContain("All 3"); + expect(normalizedText(pulse)).toContain("Enabled 1"); + expect(normalizedText(pulse)).toContain("Issues 1"); + expect(pulse?.querySelectorAll(".plugins-pulse__segment")).toHaveLength(3); + expect( + container.querySelector('[data-plugin-id="broken"] [role="alert"]')?.textContent, + ).toContain("manifest invalid"); + }); + + it("filters the installed inventory by state", () => { + const plugins = [ + createPlugin({ id: "on", name: "On", enabled: true, state: "enabled" }), + createPlugin({ id: "off", name: "Off" }), + createPlugin({ id: "broken", name: "Broken", state: "error" }), + ]; + expect(installedPlugins(plugins, "", "enabled").map((plugin) => plugin.id)).toEqual(["on"]); + expect(installedPlugins(plugins, "", "disabled").map((plugin) => plugin.id)).toEqual(["off"]); + expect(installedPlugins(plugins, "", "issues").map((plugin) => plugin.id)).toEqual(["broken"]); + + const onFilterChange = vi.fn(); + const container = mount(createProps({ result: createResult(plugins), onFilterChange })); + const chips = container.querySelectorAll(".plugins-filters button"); + expect(chips).toHaveLength(4); + chips[3].click(); + expect(onFilterChange).toHaveBeenCalledWith("issues"); + }); + + it("offers enable and remove through the row actions menu", () => { + const onSetEnabled = vi.fn(); + const onRequestUninstall = vi.fn(); + const onToggleMenu = vi.fn(); + const removableKey = pluginRowKey("community-thing"); + const plugins = [ + createPlugin(), + createPlugin({ + id: "community-thing", + name: "Community Thing", + origin: "global", + removable: true, + featured: false, + }), + ]; + const closedMenus = mount(createProps({ result: createResult(plugins), onToggleMenu })); + const kebab = closedMenus.querySelector( + '[data-plugin-id="community-thing"] .plugins-kebab', + ); + expect(kebab?.getAttribute("aria-expanded")).toBe("false"); + kebab?.click(); + expect(onToggleMenu).toHaveBeenCalledWith(removableKey); + + const container = mount( + createProps({ + result: createResult(plugins), + openMenuKey: removableKey, + onSetEnabled, + onRequestUninstall, + }), + ); + const row = container.querySelector('[data-plugin-id="community-thing"]')!; + expect(normalizedText(row.querySelector(".plugins-state"))).toBe("Disabled"); + menuItem(row, "Enable")?.click(); + expect(onSetEnabled).toHaveBeenCalledWith("community-thing", true, removableKey); + menuItem(row, "Remove")?.click(); + expect(onRequestUninstall).toHaveBeenCalledWith(removableKey); + + // Bundled plugins expose no Remove item, only enable/disable and details. + const bundledMenu = mount( + createProps({ result: createResult(plugins), openMenuKey: pluginRowKey("workboard") }), + ); + const bundledRow = bundledMenu.querySelector('[data-plugin-id="workboard"]')!; + expect(menuItem(bundledRow, "Remove")).toBeNull(); + expect(menuItem(bundledRow, "Enable")).not.toBeNull(); + expect(menuItem(bundledRow, "View details")).not.toBeNull(); + }); + + it("confirms removal before uninstalling", () => { + const onUninstall = vi.fn(); + const onCancelUninstall = vi.fn(); + const rowKey = pluginRowKey("community-thing"); + const plugins = [ + createPlugin({ + id: "community-thing", + name: "Community Thing", + origin: "global", + removable: true, + featured: false, + }), + ]; + const container = mount( + createProps({ + result: createResult(plugins), + pendingRemoval: { [rowKey]: true }, + onUninstall, + onCancelUninstall, + }), + ); + + const confirm = container.querySelector(".plugins-remove-confirm"); + expect(normalizedText(confirm)).toContain("Remove this plugin?"); + confirm?.querySelector(".btn.danger")?.click(); + expect(onUninstall).toHaveBeenCalledWith("community-thing", rowKey); + confirm?.querySelectorAll("button")[1]?.click(); + expect(onCancelUninstall).toHaveBeenCalledWith(rowKey); + }); + + it("opens the detail overlay from a row and renders actions and metadata", () => { + const onShowDetails = vi.fn(); + const clickable = mount(createProps({ onShowDetails })); + clickable.querySelector('[data-plugin-id="workboard"]')?.click(); + expect(onShowDetails).toHaveBeenCalledWith("workboard"); + + const onSetEnabled = vi.fn(); + const container = mount( + createProps({ + detailPluginId: "workboard", + onShowDetails, + onSetEnabled, + }), + ); + const detail = container.querySelector(".plugins-detail")!; + expect(detail.getAttribute("role")).toBe("dialog"); + expect(normalizedText(detail.querySelector(".plugins-detail__title"))).toContain("Workboard"); + expect(normalizedText(detail.querySelector(".plugins-detail__meta"))).toContain("workboard"); + detail.querySelectorAll(".plugins-detail__actions button")[0]?.click(); + expect(onSetEnabled).toHaveBeenCalledWith("workboard", true, pluginRowKey("workboard")); + detail.querySelector(".plugins-detail__close")?.click(); + expect(onShowDetails).toHaveBeenCalledWith(null); + }); + + it("lists MCP servers with menu-driven toggle and remove plus the add form", () => { + const onMcpToggle = vi.fn(); + const onMcpRemove = vi.fn(); + const onMcpAdd = vi.fn(); + const container = mount( + createProps({ + mcpFormOpen: true, + openMenuKey: "mcp:github", + mcpServers: [ + { + name: "github", + enabled: true, + transport: "http", + target: "https://api.githubcopilot.com/mcp/", + auth: "oauth", + }, + ], + onMcpToggle, + onMcpRemove, + onMcpAdd, + }), + ); + + const row = container.querySelector('[data-mcp-name="github"]')!; + expect(normalizedText(row)).toContain("github"); + expect(normalizedText(row)).toContain("OAuth"); + menuItem(row, "Disable")?.click(); + expect(onMcpToggle).toHaveBeenCalledWith("github", false); + menuItem(row, "Remove")?.click(); + expect(onMcpRemove).toHaveBeenCalledWith("github"); + + const form = container.querySelector(".plugins-mcp-form")!; + form.querySelector('[name="mcp-name"]')!.value = "context7"; + form.querySelector('[name="mcp-target"]')!.value = + "https://mcp.context7.com/mcp"; + form.dispatchEvent(new Event("submit", { bubbles: true, cancelable: true })); + expect(onMcpAdd).toHaveBeenCalledWith({ + name: "context7", + target: "https://mcp.context7.com/mcp", + }); + }); + + it("splits discover shelves into featured, official, and connectors", () => { + const plugins = [ + createPlugin(), + createPlugin({ + id: "tavily", + name: "Tavily", + origin: "official", + installed: false, + enabled: false, + state: "not-installed", + featured: false, + install: { source: "official", pluginId: "tavily" }, + }), + ]; + const shelves = discoverShelves(plugins); + expect(shelves.featured.map((plugin) => plugin.id)).toEqual(["workboard"]); + expect(shelves.official.map((plugin) => plugin.id)).toEqual(["tavily"]); + expect(shelves.connectors.length).toBeGreaterThan(0); + + const onInstall = vi.fn(); + const container = mount( + createProps({ activeTab: "discover", result: createResult(plugins), onInstall }), + ); + expect( + normalizedText( + container.querySelector("#plugins-shelf-featured")?.closest(".plugins-group__heading") ?? + null, + ), + ).toBe("Featured 1"); + container + .querySelector('[data-plugin-id="tavily"] .plugins-install') + ?.click(); + expect(onInstall).toHaveBeenCalledWith(pluginRowKey("tavily"), { + source: "official", + pluginId: "tavily", + }); + }); + + it("adds MCP connectors and routes ClawHub connector searches", () => { + const onAddConnector = vi.fn(); + const onSearchClawHub = vi.fn(); + const container = mount( + createProps({ activeTab: "discover", onAddConnector, onSearchClawHub }), + ); + + const github = container.querySelector('[data-connector-id="github"]'); + expect(normalizedText(github)).toContain("MCP"); + github?.querySelector(".plugins-card__footer button")?.click(); + expect(onAddConnector).toHaveBeenCalledWith( + CONNECTOR_SUGGESTIONS.find((connector) => connector.id === "github"), + ); + + const spotify = container.querySelector('[data-connector-id="spotify"]'); + spotify?.querySelector(".plugins-card__footer button")?.click(); + expect(onSearchClawHub).toHaveBeenCalledWith("spotify"); + }); + + it("marks already-added MCP connectors instead of offering Add", () => { + const container = mount( + createProps({ + activeTab: "discover", + mcpServers: [ + { name: "github", enabled: true, transport: "http", target: "https://x", auth: "oauth" }, + ], + }), + ); + + const github = container.querySelector('[data-connector-id="github"]'); + expect(normalizedText(github)).toContain("Added"); + expect(github?.querySelector(".plugins-card__footer button")).toBeNull(); + }); + + it("appends live ClawHub results below the discover shelves while searching", () => { + const onQueryChange = vi.fn(); + const onInstall = vi.fn(); + const container = mount( + createProps({ + activeTab: "discover", + query: "calendar", + searchResults: [ + { + score: 0.9, + package: { + name: "@openclaw/calendar-plus", + displayName: "Calendar Plus", + family: "code-plugin", + channel: "official", + isOfficial: true, + summary: "Plan and coordinate work.", + latestVersion: "2.0.0", + downloads: 149263, + verificationTier: "source-linked", + }, + }, + ], + onQueryChange, + onInstall, + }), + ); + + const search = container.querySelector('[type="search"]'); + search!.value = "work"; + search!.dispatchEvent(new Event("input", { bubbles: true })); + expect(onQueryChange).toHaveBeenCalledWith("work"); + + const heading = container.querySelector("#plugins-shelf-clawhub"); + expect(normalizedText(heading)).toBe("From ClawHub"); + const link = container + .querySelector("#plugins-shelf-clawhub") + ?.closest(".plugins-group") + ?.querySelector(".plugins-group__link"); + expect(link?.href).toBe("https://clawhub.ai/plugins"); + expect(link?.target).toBe("_blank"); + + const result = container.querySelector( + '[data-package-name="@openclaw/calendar-plus"]', + ); + expect(result?.dataset.pluginSource).toBe("clawhub"); + expect(normalizedText(result)).toContain("Official"); + expect(normalizedText(result)).toContain("Verified source"); + expect(normalizedText(result)).toContain("149.3K"); + expect(normalizedText(result)).toContain("Code plugin"); + result?.querySelector('[aria-label="Install Calendar Plus"]')?.click(); + expect(onInstall).toHaveBeenCalledWith(clawHubRowKey("@openclaw/calendar-plus"), { + source: "clawhub", + packageName: "@openclaw/calendar-plus", + }); + }); + + it("keeps discovery available while disabling all read-only mutations", () => { + const onInstall = vi.fn(); + const onSetEnabled = vi.fn(); + const available = createPlugin({ + id: "lobster", + name: "Lobster", + installed: false, + enabled: false, + state: "not-installed", + install: { source: "official", pluginId: "lobster" }, + }); + const container = mount( + createProps({ + activeTab: "discover", + result: createResult([createPlugin(), available]), + canMutate: false, + mutationBlockedReason: "Browsing only. Plugin changes require operator.admin access.", + openMenuKey: pluginRowKey("workboard"), + onInstall, + onSetEnabled, + }), + ); + + expect(container.querySelector(".plugins-readonly")?.textContent).toContain("operator.admin"); + expect( + container.querySelector('[aria-label="Install Lobster"]')?.disabled, + ).toBe(true); + const workboardRow = container.querySelector('[data-plugin-id="workboard"]')!; + const enableItem = menuItem(workboardRow, "Enable"); + expect(enableItem?.disabled).toBe(true); + enableItem?.click(); + expect(onInstall).not.toHaveBeenCalled(); + expect(onSetEnabled).not.toHaveBeenCalled(); + }); + + it("renders row-local risk acknowledgement and busy state", () => { + const packageName = "@openclaw/calendar-plus"; + const key = clawHubRowKey(packageName); + const onInstall = vi.fn(); + const container = mount( + createProps({ + activeTab: "discover", + query: "calendar", + searchResults: [ + { + score: 0.9, + package: { + name: packageName, + displayName: "Calendar Plus", + family: "bundle-plugin", + channel: "community", + isOfficial: false, + }, + }, + ], + busy: {}, + messages: { + [key]: { + kind: "error", + text: "Review required.", + acknowledge: { packageName, version: "2.0.0" }, + }, + }, + onInstall, + }), + ); + + const row = container.querySelector(`[data-package-name="${packageName}"]`); + expect(row?.getAttribute("aria-busy")).toBe("false"); + expect(row?.querySelector('[role="alert"]')?.textContent).toContain("Review required."); + row?.querySelector(".plugins-row-message button")?.click(); + expect(onInstall).toHaveBeenCalledWith(key, { + source: "clawhub", + packageName, + version: "2.0.0", + acknowledgeClawHubRisk: true, + }); + }); + + it("correlates installed ClawHub packages without a search runtime id", () => { + const packageName = "@community/calendar-plus"; + const installed = createPlugin({ + id: "calendar-runtime", + name: "Calendar Plus", + packageName, + origin: "global", + installed: true, + enabled: true, + state: "enabled", + featured: false, + install: undefined, + }); + const onSetEnabled = vi.fn(); + const container = mount( + createProps({ + activeTab: "discover", + query: "calendar", + result: createResult([installed]), + openMenuKey: clawHubRowKey(packageName), + searchResults: [ + { + score: 0.9, + package: { + name: packageName, + displayName: "Calendar Plus", + family: "code-plugin", + channel: "community", + isOfficial: false, + }, + }, + ], + onSetEnabled, + }), + ); + + const row = container.querySelector(`[data-package-name="${packageName}"]`)!; + expect(row.querySelector("h3")?.textContent).toBe("Calendar Plus"); + expect(row.querySelector(".plugins-install")).toBeNull(); + expect(normalizedText(row.querySelector(".plugins-state"))).toBe("Enabled"); + menuItem(row, "Disable")?.click(); + expect(onSetEnabled).toHaveBeenCalledWith( + "calendar-runtime", + false, + clawHubRowKey(packageName), + ); + }); + + it("uses roving focus and arrow-key activation for the catalog tabs", () => { + const onTabChange = vi.fn(); + const container = mount(createProps({ activeTab: "installed", onTabChange })); + const installed = container.querySelector("#plugins-tab-installed")!; + const discover = container.querySelector("#plugins-tab-discover")!; + + expect([installed.tabIndex, discover.tabIndex]).toEqual([0, -1]); + installed.focus(); + installed.dispatchEvent(new KeyboardEvent("keydown", { key: "ArrowRight", bubbles: true })); + expect(onTabChange).toHaveBeenLastCalledWith("discover"); + expect(document.activeElement).toBe(discover); + + discover.dispatchEvent(new KeyboardEvent("keydown", { key: "Home", bubbles: true })); + expect(onTabChange).toHaveBeenLastCalledWith("installed"); + expect(document.activeElement).toBe(installed); + }); + + it("does not present an empty catalog alongside an initial list failure", () => { + const container = mount(createProps({ result: null, error: "Plugin inventory unavailable" })); + + expect(container.querySelector('[role="alert"]')?.textContent).toContain( + "Plugin inventory unavailable", + ); + expect(container.textContent).not.toContain("No optional plugins installed"); + }); + + it("renders bundled cover art in discover and gradient fallbacks elsewhere", () => { + const plugins = [ + createPlugin(), + createPlugin({ + id: "totally-unknown", + name: "Totally Unknown", + featured: true, + origin: "official", + installed: false, + state: "not-installed", + }), + ]; + const container = mount(createProps({ activeTab: "discover", result: createResult(plugins) })); + + const art = container.querySelector( + '[data-plugin-id="workboard"] .plugins-cover img', + ); + expect(art?.src).toContain("plugin-art/workboard.webp"); + + const fallback = container.querySelector( + '[data-plugin-id="totally-unknown"] .plugins-cover--fallback', + ); + expect(fallback?.getAttribute("style")).toContain("--plugins-art-a"); + expect(normalizedText(fallback)).toBe("TU"); + }); +}); diff --git a/ui/src/pages/plugins/view.ts b/ui/src/pages/plugins/view.ts new file mode 100644 index 000000000000..089efda07bf9 --- /dev/null +++ b/ui/src/pages/plugins/view.ts @@ -0,0 +1,1464 @@ +// Control UI plugins page: installed inventory, discover store with inline +// ClawHub search, plugin detail overlay, and MCP server management. +import { html, nothing, type TemplateResult } from "lit"; +import { live } from "lit/directives/live.js"; +import { repeat } from "lit/directives/repeat.js"; +import { icons } from "../../components/icons.ts"; +import { t } from "../../i18n/index.ts"; +import { EXTERNAL_LINK_TARGET, buildExternalLinkRel } from "../../lib/external-link.ts"; +import { + CLAWHUB_BROWSE_URL, + type PluginCatalogItem, + type PluginInstallRequest, + type PluginListResult, + type PluginSearchResult, +} from "../../lib/plugins/index.ts"; +import { + CONNECTOR_GROUP_ORDER, + CONNECTOR_SUGGESTIONS, + PLUGIN_CATEGORY_ORDER, + pluginArtPath, + pluginCategoryLabel, + pluginFallbackGradient, + pluginMonogram, + type ConnectorGroup, + type ConnectorSuggestion, +} from "./presentation.ts"; + +export type PluginsTab = "installed" | "discover"; + +export type InstalledFilter = "all" | "enabled" | "disabled" | "issues"; + +export type PluginRowMessage = { + kind: "success" | "error"; + text: string; + acknowledge?: { packageName: string; version?: string }; +}; + +export type McpServerSummary = { + name: string; + enabled: boolean; + transport: "stdio" | "http" | "invalid"; + target: string; + auth: string | null; +}; + +export type McpServerForm = { + name: string; + target: string; +}; + +export type PluginsViewProps = { + connected: boolean; + loading: boolean; + result: PluginListResult | null; + error: string | null; + activeTab: PluginsTab; + query: string; + installedFilter: InstalledFilter; + searchResults: PluginSearchResult[] | null; + searchLoading: boolean; + searchError: string | null; + busy: Readonly>; + messages: Readonly>; + pendingRemoval: Readonly>; + openMenuKey: string | null; + detailPluginId: string | null; + canMutate: boolean; + mutationBlockedReason: string | null; + pageNotice: PluginRowMessage | null; + mcpSettingsHref: string; + mcpServers: McpServerSummary[] | null; + mcpMessage: PluginRowMessage | null; + mcpBusy: boolean; + mcpFormOpen: boolean; + onTabChange: (tab: PluginsTab) => void; + onQueryChange: (query: string) => void; + onFilterChange: (filter: InstalledFilter) => void; + onRefresh: () => void; + onToggleMenu: (key: string | null) => void; + onShowDetails: (pluginId: string | null) => void; + onSetEnabled: (pluginId: string, enabled: boolean, rowKey: string) => void; + onInstall: (rowKey: string, request: PluginInstallRequest) => void; + onRequestUninstall: (rowKey: string) => void; + onCancelUninstall: (rowKey: string) => void; + onUninstall: (pluginId: string, rowKey: string) => void; + onAddConnector: (suggestion: ConnectorSuggestion) => void; + onSearchClawHub: (query: string) => void; + onMcpToggle: (name: string, enabled: boolean) => void; + onMcpRemove: (name: string) => void; + onMcpFormToggle: (open: boolean) => void; + onMcpAdd: (form: McpServerForm) => void; +}; + +const PLUGIN_TABS: readonly PluginsTab[] = ["installed", "discover"]; + +const INSTALLED_FILTERS: readonly InstalledFilter[] = ["all", "enabled", "disabled", "issues"]; + +function tabLabel(tab: PluginsTab): string { + switch (tab) { + case "installed": + return t("pluginsPage.installedTab"); + case "discover": + return t("pluginsPage.discoverTab"); + default: + return tab satisfies never; + } +} + +function filterLabel(filter: InstalledFilter): string { + switch (filter) { + case "all": + return t("pluginsPage.filterAll"); + case "enabled": + return t("pluginsPage.enabled"); + case "disabled": + return t("pluginsPage.disabled"); + case "issues": + return t("pluginsPage.filterIssues"); + default: + return filter satisfies never; + } +} + +function connectorGroupLabel(group: ConnectorGroup): string { + switch (group) { + case "work": + return t("pluginsPage.connectorGroupWork"); + case "dev": + return t("pluginsPage.connectorGroupDev"); + case "home": + return t("pluginsPage.connectorGroupHome"); + case "life": + return t("pluginsPage.connectorGroupLife"); + default: + return group satisfies never; + } +} + +function handleTabKeydown( + event: KeyboardEvent, + tab: PluginsTab, + onTabChange: PluginsViewProps["onTabChange"], +) { + const currentIndex = PLUGIN_TABS.indexOf(tab); + let nextIndex: number; + switch (event.key) { + case "ArrowRight": + nextIndex = (currentIndex + 1) % PLUGIN_TABS.length; + break; + case "ArrowLeft": + nextIndex = (currentIndex - 1 + PLUGIN_TABS.length) % PLUGIN_TABS.length; + break; + case "Home": + nextIndex = 0; + break; + case "End": + nextIndex = PLUGIN_TABS.length - 1; + break; + default: + return; + } + event.preventDefault(); + const nextTab = PLUGIN_TABS[nextIndex]; + if (!nextTab) { + return; + } + onTabChange(nextTab); + const tablist = (event.currentTarget as HTMLElement).closest('[role="tablist"]'); + tablist?.querySelector(`#plugins-tab-${nextTab}`)?.focus(); +} + +export function pluginRowKey(pluginId: string): string { + return `plugin:${pluginId}`; +} + +export function clawHubRowKey(packageName: string): string { + return `clawhub:${packageName}`; +} + +export function connectorRowKey(connectorId: string): string { + return `connector:${connectorId}`; +} + +function normalizedQuery(query: string): string { + return query.trim().toLocaleLowerCase(); +} + +function matchesPlugin(plugin: PluginCatalogItem, query: string): boolean { + const needle = normalizedQuery(query); + if (!needle) { + return true; + } + return [ + plugin.name, + plugin.id, + plugin.description, + plugin.origin, + plugin.category, + ...(plugin.kind ?? []), + ].some((value) => value?.toLocaleLowerCase().includes(needle)); +} + +function matchesConnector(connector: ConnectorSuggestion, query: string): boolean { + const needle = normalizedQuery(query); + if (!needle) { + return true; + } + return [connector.id, connector.name, connector.description].some((value) => + value.toLocaleLowerCase().includes(needle), + ); +} + +function sortCatalogPlugins(plugins: readonly PluginCatalogItem[]): PluginCatalogItem[] { + return plugins.toSorted( + (left, right) => + (left.order ?? Number.MAX_SAFE_INTEGER) - (right.order ?? Number.MAX_SAFE_INTEGER) || + left.name.localeCompare(right.name), + ); +} + +export function installedPlugins( + plugins: readonly PluginCatalogItem[], + query = "", + filter: InstalledFilter = "all", +): PluginCatalogItem[] { + return sortCatalogPlugins( + plugins.filter((plugin) => { + if (!plugin.installed || !matchesPlugin(plugin, query)) { + return false; + } + switch (filter) { + case "enabled": + return plugin.enabled && plugin.state !== "error"; + case "disabled": + return !plugin.enabled && plugin.state !== "error"; + case "issues": + return plugin.state === "error"; + default: + return true; + } + }), + ); +} + +export type InstalledCategoryGroup = { + category: string; + label: string; + plugins: PluginCatalogItem[]; +}; + +export function groupInstalledByCategory( + plugins: readonly PluginCatalogItem[], +): InstalledCategoryGroup[] { + const groups = new Map(); + for (const plugin of plugins) { + const category = plugin.category ?? "other"; + const group = groups.get(category) ?? []; + group.push(plugin); + groups.set(category, group); + } + const rank = (category: string) => { + const index = PLUGIN_CATEGORY_ORDER.indexOf(category); + return index === -1 ? PLUGIN_CATEGORY_ORDER.length : index; + }; + return [...groups.entries()] + .map(([category, entries]) => ({ + category, + label: pluginCategoryLabel(category), + plugins: entries, + })) + .toSorted((left, right) => rank(left.category) - rank(right.category)); +} + +export type DiscoverShelves = { + featured: PluginCatalogItem[]; + official: PluginCatalogItem[]; + connectors: ConnectorSuggestion[]; +}; + +export function discoverShelves( + plugins: readonly PluginCatalogItem[], + query = "", +): DiscoverShelves { + const featured = sortCatalogPlugins( + plugins.filter((plugin) => plugin.featured && matchesPlugin(plugin, query)), + ); + const featuredIds = new Set(featured.map((plugin) => plugin.id)); + const official = sortCatalogPlugins( + plugins.filter( + (plugin) => + !featuredIds.has(plugin.id) && + plugin.origin === "official" && + !plugin.installed && + matchesPlugin(plugin, query), + ), + ); + const connectors = CONNECTOR_SUGGESTIONS.filter((connector) => + matchesConnector(connector, query), + ); + return { featured, official, connectors }; +} + +const compactNumber = new Intl.NumberFormat(undefined, { + notation: "compact", + maximumFractionDigits: 1, +}); + +function renderArtTile(slug: string, name: string, variant: "tile" | "cover"): TemplateResult { + const art = pluginArtPath(slug); + if (art) { + return html` + + `; + } + const [from, to] = pluginFallbackGradient(slug); + const monogram = pluginMonogram(name); + return html``; +} + +function stateLabel(plugin: PluginCatalogItem): string { + switch (plugin.state) { + case "enabled": + return t("pluginsPage.enabled"); + case "disabled": + return t("pluginsPage.disabled"); + case "error": + return t("pluginsPage.needsAttention"); + case "not-installed": + return t("pluginsPage.available"); + default: + return plugin.state satisfies never; + } +} + +function originLabel(origin: string): string { + switch (origin) { + case "bundled": + return t("pluginsPage.included"); + case "global": + return t("pluginsPage.global"); + case "workspace": + return t("pluginsPage.workspace"); + case "config": + return t("pluginsPage.config"); + case "official": + return t("pluginsPage.official"); + default: + return origin; + } +} + +function renderRowMessage( + key: string, + message: PluginRowMessage | undefined, + busy: boolean, + props: PluginsViewProps, +) { + if (!message) { + return nothing; + } + const role = message.kind === "error" ? "alert" : "status"; + return html` +
+ ${message.text} + ${message.acknowledge + ? html` + + ` + : nothing} +
+ `; +} + +/** Ignore activations bubbling from interactive children so rows stay clickable. */ +function fromInteractiveChild(event: Event): boolean { + return Boolean( + (event.target as HTMLElement | null)?.closest("button, a, input, label, form, [role='menu']"), + ); +} + +function stateChip(plugin: PluginCatalogItem) { + return html`${stateLabel(plugin)}`; +} + +type PluginMenuItem = { + key: string; + label: string; + icon: TemplateResult; + danger?: boolean; + disabled?: boolean; + onSelect: () => void; +}; + +function renderActionsMenu( + menuKey: string, + label: string, + items: readonly PluginMenuItem[], + props: PluginsViewProps, +) { + const open = props.openMenuKey === menuKey; + return html` + + + ${open + ? html` + + ` + : nothing} + + `; +} + +function pluginMenuItems( + plugin: PluginCatalogItem, + props: PluginsViewProps, + rowKey: string, + options: { details: boolean }, +): PluginMenuItem[] { + const blocked = !props.canMutate || props.busy[rowKey]; + const items: PluginMenuItem[] = []; + if (options.details) { + items.push({ + key: "details", + label: t("pluginsPage.menuDetails"), + icon: icons.eye, + onSelect: () => props.onShowDetails(plugin.id), + }); + } + items.push({ + key: "toggle", + label: plugin.enabled ? t("pluginsPage.disableAction") : t("pluginsPage.enableAction"), + icon: plugin.enabled ? circleIcon() : icons.check, + disabled: blocked, + onSelect: () => props.onSetEnabled(plugin.id, !plugin.enabled, rowKey), + }); + if (plugin.removable) { + items.push({ + key: "remove", + label: t("pluginsPage.remove"), + icon: icons.trash, + danger: true, + disabled: blocked, + onSelect: () => props.onRequestUninstall(rowKey), + }); + } + return items; +} + +function circleIcon(): TemplateResult { + return icons.circle; +} + +function renderInstallButton( + props: PluginsViewProps, + busy: boolean, + key: string, + name: string, + request: PluginInstallRequest, +) { + return html` + + `; +} + +function renderRemoveConfirm( + plugin: PluginCatalogItem, + props: PluginsViewProps, + busy: boolean, + rowKey: string, +) { + return html` + + ${t("pluginsPage.removeConfirm")} + + + + `; +} + +function renderCatalogActions( + plugin: PluginCatalogItem, + props: PluginsViewProps, + busy: boolean, + rowKey: string, + options: { details: boolean }, +) { + if (props.pendingRemoval[rowKey]) { + return renderRemoveConfirm(plugin, props, busy, rowKey); + } + if (!plugin.installed) { + const install = plugin.install; + return install + ? renderInstallButton(props, busy, rowKey, plugin.name, install) + : html`${t("pluginsPage.unavailable")}`; + } + return html` + ${stateChip(plugin)} + ${renderActionsMenu( + rowKey, + t("pluginsPage.menuLabel", { name: plugin.name }), + pluginMenuItems(plugin, props, rowKey, options), + props, + )} + `; +} + +/* ---------------------------------- installed tab ---------------------------------- */ + +/** + * One compact strip instead of stat cards: a segmented distribution meter and + * filter chips that double as the legend and the counts. + */ +function renderInventoryPulse(props: PluginsViewProps) { + const installed = (props.result?.plugins ?? []).filter((plugin) => plugin.installed); + const issues = installed.filter((plugin) => plugin.state === "error").length; + const enabled = installed.filter((plugin) => plugin.enabled && plugin.state !== "error").length; + const disabled = installed.length - enabled - issues; + const counts: Record = { + all: installed.length, + enabled, + disabled, + issues, + }; + const segments = ( + [ + ["enabled", enabled], + ["disabled", disabled], + ["issues", issues], + ] as const + ).filter(([, value]) => value > 0); + return html` +
+ ${segments.length > 0 + ? html` + + ` + : nothing} +
+ ${INSTALLED_FILTERS.map( + (filter) => html` + + `, + )} +
+
+ `; +} + +function renderInstalledRow(plugin: PluginCatalogItem, props: PluginsViewProps): TemplateResult { + const key = pluginRowKey(plugin.id); + const busy = props.busy[key]; + return html` +
{ + if (!fromInteractiveChild(event)) { + props.onShowDetails(plugin.id); + } + }} + > + ${renderArtTile(plugin.id, plugin.name, "tile")} +
+
+

${plugin.name}

+ ${plugin.version + ? html`v${plugin.version}` + : nothing} + ${plugin.state === "error" + ? html`${stateLabel(plugin)}` + : nothing} +
+

${plugin.description || t("pluginsPage.optionalCapability")}

+
+ ${plugin.origin ? html`${originLabel(plugin.origin)}` : nothing} + ${plugin.packageName + ? html`${plugin.packageName}` + : nothing} +
+
+
+ ${renderCatalogActions(plugin, props, busy, key, { details: true })} +
+ ${plugin.error + ? html`` + : nothing} + ${renderRowMessage(key, props.messages[key], busy, props)} +
+ `; +} + +function mcpMenuItems(server: McpServerSummary, props: PluginsViewProps): PluginMenuItem[] { + const blocked = !props.canMutate || props.mcpBusy; + return [ + { + key: "toggle", + label: server.enabled ? t("pluginsPage.disableAction") : t("pluginsPage.enableAction"), + icon: server.enabled ? circleIcon() : icons.check, + disabled: blocked, + onSelect: () => props.onMcpToggle(server.name, !server.enabled), + }, + { + key: "remove", + label: t("pluginsPage.remove"), + icon: icons.trash, + danger: true, + disabled: blocked, + onSelect: () => props.onMcpRemove(server.name), + }, + ]; +} + +function renderMcpSection(props: PluginsViewProps) { + const needle = normalizedQuery(props.query); + const servers = props.mcpServers?.filter( + (server) => + !needle || + server.name.toLocaleLowerCase().includes(needle) || + server.target.toLocaleLowerCase().includes(needle), + ); + if (needle && servers && servers.length === 0) { + return nothing; + } + return html` +
+
+

${t("pluginsPage.mcpServersGroup")}

+ ${servers ? html`${servers.length}` : nothing} +
+ ${t("pluginsPage.mcpSettingsLink")} + +
+
+

${t("pluginsPage.mcpHint")}

+ ${props.mcpFormOpen ? renderMcpForm(props) : nothing} + ${props.mcpMessage + ? html`
+ ${props.mcpMessage.text} +
` + : nothing} + ${!servers + ? html`
${t("pluginsPage.loading")}
` + : servers.length === 0 + ? html`
${t("pluginsPage.mcpEmpty")}
` + : html`
+ ${repeat( + servers, + (server) => server.name, + (server) => renderMcpRow(server, props), + )} +
`} +
+ `; +} + +function renderMcpRow(server: McpServerSummary, props: PluginsViewProps): TemplateResult { + return html` +
+ ${renderArtTile(server.name, server.name, "tile")} +
+
+

${server.name}

+ MCP + ${server.auth === "oauth" ? html`OAuth` : nothing} +
+

${server.target}

+
${server.transport}
+
+
+ ${server.enabled ? t("pluginsPage.enabled") : t("pluginsPage.disabled")} + ${renderActionsMenu( + `mcp:${server.name}`, + t("pluginsPage.menuLabel", { name: server.name }), + mcpMenuItems(server, props), + props, + )} +
+
+ `; +} + +function renderMcpForm(props: PluginsViewProps) { + const submit = (event: Event) => { + event.preventDefault(); + const form = event.currentTarget as HTMLFormElement; + const data = new FormData(form); + const name = data.get("mcp-name"); + const target = data.get("mcp-target"); + props.onMcpAdd({ + name: typeof name === "string" ? name.trim() : "", + target: typeof target === "string" ? target.trim() : "", + }); + }; + return html` +
+ + +
+ + +
+
+ `; +} + +function renderInstalled(props: PluginsViewProps) { + const plugins = installedPlugins(props.result?.plugins ?? [], props.query, props.installedFilter); + const groups = groupInstalledByCategory(plugins); + return html` + ${renderInventoryPulse(props)} + ${groups.length === 0 + ? renderEmpty( + props.query || props.installedFilter !== "all" + ? t("pluginsPage.noInstalledMatchTitle") + : t("pluginsPage.noInstalledTitle"), + props.query || props.installedFilter !== "all" + ? t("pluginsPage.noMatchBody") + : t("pluginsPage.noInstalledBody"), + ) + : html` +
+ ${groups.map( + (group) => html` +
+
+

${group.label}

+ ${group.plugins.length} +
+
+ ${repeat( + group.plugins, + (plugin) => plugin.id, + (plugin) => renderInstalledRow(plugin, props), + )} +
+
+ `, + )} +
+ `} + ${renderMcpSection(props)} + `; +} + +/* ---------------------------------- discover tab ---------------------------------- */ + +function renderCatalogCard(plugin: PluginCatalogItem, props: PluginsViewProps): TemplateResult { + const key = pluginRowKey(plugin.id); + const busy = props.busy[key]; + return html` +
{ + if (!fromInteractiveChild(event)) { + props.onShowDetails(plugin.id); + } + }} + > + ${renderArtTile(plugin.id, plugin.name, "cover")} +
+
+

${plugin.name}

+ ${plugin.version + ? html`v${plugin.version}` + : nothing} +
+

${plugin.description || t("pluginsPage.optionalCapability")}

+
+ ${plugin.origin ? html`${originLabel(plugin.origin)}` : nothing} +
+
+ + ${plugin.error + ? html`` + : nothing} + ${renderRowMessage(key, props.messages[key], busy, props)} +
+ `; +} + +function renderConnectorCard( + connector: ConnectorSuggestion, + props: PluginsViewProps, +): TemplateResult { + const key = connectorRowKey(connector.id); + const busy = props.busy[key]; + const isMcp = connector.action.kind === "mcp"; + const installed = + isMcp && + Boolean( + props.mcpServers?.some( + (server) => + connector.action.kind === "mcp" && server.name === connector.action.mcp.serverName, + ), + ); + return html` +
+ ${renderArtTile(connector.id, connector.name, "cover")} +
+
+

${connector.name}

+
+

${connector.description}

+
+ ${isMcp + ? html`MCP + ${t("pluginsPage.connectorMcpNote")}` + : html`${t("pluginsPage.connectorClawHubNote")}`} +
+
+ + ${renderRowMessage(key, props.messages[key], busy, props)} +
+ `; +} + +function renderShelf( + id: string, + label: string, + hint: string | null, + cards: readonly TemplateResult[], +) { + if (cards.length === 0) { + return nothing; + } + return html` +
+
+

${label}

+ ${cards.length} +
+ ${hint ? html`

${hint}

` : nothing} +
${cards}
+
+ `; +} + +function findInstalledSearchPlugin( + item: PluginSearchResult, + plugins: readonly PluginCatalogItem[], +): PluginCatalogItem | undefined { + return plugins.find( + (plugin) => + plugin.installed && + (plugin.id === item.package.runtimeId || + plugin.packageName === item.package.name || + (plugin.install?.source === "clawhub" && plugin.install.packageName === item.package.name)), + ); +} + +function verificationLabel(tier: string): string { + return tier === "source-linked" ? t("pluginsPage.verifiedSource") : tier; +} + +function renderClawHubResult(item: PluginSearchResult, props: PluginsViewProps): TemplateResult { + const pkg = item.package; + const installed = findInstalledSearchPlugin(item, props.result?.plugins ?? []); + const key = clawHubRowKey(pkg.name); + const busy = props.busy[key]; + const artSlug = pkg.runtimeId ?? pkg.name; + return html` +
{ + if (installed && !fromInteractiveChild(event)) { + props.onShowDetails(installed.id); + } + }} + > + ${renderArtTile(artSlug, pkg.displayName, "tile")} +
+
+

${pkg.displayName}

+ ${pkg.latestVersion + ? html`v${pkg.latestVersion}` + : nothing} +
+

${pkg.summary || pkg.name}

+
+ ${pkg.isOfficial + ? html`${t("pluginsPage.official")}` + : nothing} + ${pkg.verificationTier + ? html` + + ${verificationLabel(pkg.verificationTier)} + ` + : nothing} + ${typeof pkg.downloads === "number" + ? html` + + ${compactNumber.format(pkg.downloads)} + ` + : nothing} + ${pkg.family === "bundle-plugin" + ? t("pluginsPage.bundlePlugin") + : t("pluginsPage.codePlugin")} +
+
+
+ ${installed + ? renderCatalogActions(installed, props, busy, key, { details: true }) + : renderInstallButton(props, busy, key, pkg.displayName, { + source: "clawhub", + packageName: pkg.name, + })} +
+ ${renderRowMessage(key, props.messages[key], busy, props)} +
+ `; +} + +/** Live registry results appended below the curated shelves while searching. */ +function renderClawHubGroup(props: PluginsViewProps) { + const query = props.query.trim(); + if (query.length < 2) { + return nothing; + } + let body: TemplateResult; + if (props.searchLoading || (!props.searchResults && !props.searchError)) { + body = html`
+ ${t("pluginsPage.searching")} +
`; + } else if (props.searchError) { + body = html``; + } else if (props.searchResults && props.searchResults.length === 0) { + body = html`
+ ${t("pluginsPage.noClawHubResultsBody", { query })} +
`; + } else { + body = html` +
+ ${repeat( + props.searchResults ?? [], + (item) => item.package.name, + (item) => renderClawHubResult(item, props), + )} +
+ `; + } + return html` +
+
+

${t("pluginsPage.fromClawHub")}

+ ${props.searchResults ? html`${props.searchResults.length}` : nothing} + +
+ ${body} +
+ `; +} + +function renderDiscover(props: PluginsViewProps) { + const shelves = discoverShelves(props.result?.plugins ?? [], props.query); + const featuredCards = shelves.featured.map((plugin) => renderCatalogCard(plugin, props)); + const officialCards = shelves.official.map((plugin) => renderCatalogCard(plugin, props)); + const clawHub = renderClawHubGroup(props); + if (!featuredCards.length && !officialCards.length && !shelves.connectors.length) { + return html` + ${clawHub === nothing + ? renderEmpty(t("pluginsPage.noDiscoverMatchTitle"), t("pluginsPage.noMatchBody")) + : nothing} + ${clawHub} + `; + } + return html` +
+ ${renderShelf("featured", t("pluginsPage.featuredGroup"), null, featuredCards)} + ${renderShelf("official", t("pluginsPage.officialGroup"), null, officialCards)} + ${renderConnectorShelves(shelves.connectors, props)} ${clawHub} +
+ `; +} + +/** Connectors shelve by use case, mirroring how people group their tools. */ +function renderConnectorShelves( + connectors: readonly ConnectorSuggestion[], + props: PluginsViewProps, +) { + if (connectors.length === 0) { + return nothing; + } + const groups = CONNECTOR_GROUP_ORDER.map((group) => ({ + group, + entries: connectors.filter((connector) => connector.group === group), + })).filter((entry) => entry.entries.length > 0); + return html` +
+
+

${t("pluginsPage.connectorsGroup")}

+ ${connectors.length} +
+

${t("pluginsPage.connectorsHint")}

+ ${groups.map( + (entry) => html` +
+

${connectorGroupLabel(entry.group)}

+
+ ${entry.entries.map((connector) => renderConnectorCard(connector, props))} +
+
+ `, + )} +
+ `; +} + +/* ---------------------------------- detail overlay ---------------------------------- */ + +function detailMetaRow(label: string, value: string | TemplateResult) { + return html` +
+ ${label} + ${value} +
+ `; +} + +function renderDetailOverlay(props: PluginsViewProps) { + const plugin = props.detailPluginId + ? props.result?.plugins.find((entry) => entry.id === props.detailPluginId) + : undefined; + if (!plugin) { + return nothing; + } + const key = pluginRowKey(plugin.id); + const busy = props.busy[key]; + return html` +
{ + if (event.target === event.currentTarget) { + props.onShowDetails(null); + } + }} + > + +
+ `; +} + +/* ---------------------------------- page shell ---------------------------------- */ + +function renderEmpty(title: string, body: string) { + return html` +
+ +

${title}

+

${body}

+
+ `; +} + +function renderActivePanel(props: PluginsViewProps) { + switch (props.activeTab) { + case "installed": + return renderInstalled(props); + case "discover": + return renderDiscover(props); + default: + return props.activeTab satisfies never; + } +} + +export function renderPlugins(props: PluginsViewProps) { + const installedCount = props.result?.plugins.filter((plugin) => plugin.installed).length ?? 0; + const canShowCatalog = Boolean(props.result); + return html` +
+
+ + +
+ + ${props.mutationBlockedReason + ? html`
+ + ${props.mutationBlockedReason} +
` + : nothing} + +
+ ${PLUGIN_TABS.map((tab) => { + const selected = props.activeTab === tab; + const count = tab === "installed" ? installedCount : null; + return html` + + `; + })} +
+ + ${props.error + ? html`` + : nothing} + ${props.pageNotice + ? html`
+ ${props.pageNotice.text} +
` + : nothing} + +
+ ${props.loading && !canShowCatalog + ? html`
${t("pluginsPage.loading")}
` + : props.error && !canShowCatalog + ? nothing + : !props.connected && !canShowCatalog + ? renderEmpty(t("pluginsPage.offlineTitle"), t("pluginsPage.offlineBody")) + : renderActivePanel(props)} +
+ ${renderDetailOverlay(props)} +
+ `; +} diff --git a/ui/src/pages/route-provenance.test.ts b/ui/src/pages/route-provenance.test.ts index b424dec8503e..2d84d64c470c 100644 --- a/ui/src/pages/route-provenance.test.ts +++ b/ui/src/pages/route-provenance.test.ts @@ -8,6 +8,8 @@ import type { DreamsRouteData } from "./dreams/dreams-page.ts"; import { page as dreamsPage } from "./dreams/route.ts"; import type { NodesRouteData } from "./nodes/nodes-page.ts"; import { page as nodesPage } from "./nodes/route.ts"; +import type { PluginsRouteData } from "./plugins/plugins-page.ts"; +import { page as pluginsPage } from "./plugins/route.ts"; import { page as sessionsPage } from "./sessions/route.ts"; import type { SessionsRouteData } from "./sessions/sessions-page.ts"; import { page as skillsPage } from "./skills/route.ts"; @@ -155,6 +157,41 @@ describe("route preload gateway provenance", () => { expect(data.agents).toBe(agents); }); + it("keeps plugins provenance from before its async preload", async () => { + const result = { plugins: [], diagnostics: [], mutationAllowed: true }; + const response = deferred(); + const requestMethod = vi.fn(() => response.promise); + const client = { request: requestMethod } as unknown as GatewayBrowserClient; + const originalSnapshot = snapshot(client, true); + const mutable = mutableGateway(originalSnapshot); + const request = loadRoute(pluginsPage, { + gateway: mutable.gateway, + } as unknown as ApplicationContext); + + mutable.replaceSnapshot(snapshot(client, false)); + response.resolve(result); + const data = await request; + + expect(requestMethod).toHaveBeenCalledWith("plugins.list", {}); + expect(data.gateway).toBe(mutable.gateway); + expect(data.gatewaySnapshot).toBe(originalSnapshot); + expect(data.result).toEqual(result); + }); + + it("does not request plugins while disconnected", async () => { + const requestMethod = vi.fn(); + const client = { request: requestMethod } as unknown as GatewayBrowserClient; + const mutable = mutableGateway(snapshot(client, false)); + + const data = await loadRoute(pluginsPage, { + gateway: mutable.gateway, + } as unknown as ApplicationContext); + + expect(requestMethod).not.toHaveBeenCalled(); + expect(data.result).toBeNull(); + expect(data.error).toBeNull(); + }); + it("keeps dreams provenance from before capability warmup", async () => { const client = {} as GatewayBrowserClient; const originalSnapshot = snapshot(client, false); diff --git a/ui/src/styles.css b/ui/src/styles.css index beb7d1730240..2ba13018ecd7 100644 --- a/ui/src/styles.css +++ b/ui/src/styles.css @@ -17,6 +17,7 @@ @import "./styles/dreams.css"; @import "./styles/lobster-pet.css"; @import "./styles/workboard.css"; +@import "./styles/plugins.css"; @import "./styles/skill-workshop.css"; @import "@create-markdown/preview/themes/system.css"; diff --git a/ui/src/styles/plugins.css b/ui/src/styles/plugins.css new file mode 100644 index 000000000000..b4bfb4a21e34 --- /dev/null +++ b/ui/src/styles/plugins.css @@ -0,0 +1,1182 @@ +/* Plugins manager: inventory rows, cover-art store shelves, and MCP connectors. */ +.plugins-workspace { + width: 100%; + max-width: 1480px; + margin: 0 auto; + padding: 4px 8px 56px; +} + +.plugins-content-header .page-title { + margin: 0; +} + +.plugins-toolbar { + display: flex; + align-items: center; + gap: 12px; +} + +.plugins-search { + position: relative; + display: flex; + flex: 1 1 440px; + align-items: center; + min-width: 220px; +} + +.plugins-search__label { + position: absolute; + width: 1px; + height: 1px; + margin: -1px; + padding: 0; + overflow: hidden; + clip: rect(0 0 0 0); + clip-path: inset(50%); + white-space: nowrap; +} + +.plugins-search__icon { + position: absolute; + left: 15px; + z-index: 1; + width: 18px; + height: 18px; + color: var(--muted); + pointer-events: none; +} + +.plugins-search__icon svg, +.plugins-empty__icon svg, +.plugins-readonly svg, +.plugins-refresh svg, +.plugins-menu__icon svg, +.plugins-kebab svg, +.plugins-downloads svg, +.plugins-badge svg, +.plugins-group__actions svg, +.plugins-group__link svg, +.plugins-detail__close svg, +.plugins-detail__remove svg, +.plugins-action-note svg { + width: 100%; + height: 100%; + fill: none; + stroke: currentColor; + stroke-width: 1.7px; + stroke-linecap: round; + stroke-linejoin: round; +} + +.plugins-search input { + width: 100%; + height: 44px; + border: 1px solid var(--border-strong); + border-radius: var(--radius-full); + padding: 0 18px 0 44px; + background: var(--card); + color: var(--text-strong); + font-size: var(--control-ui-input-text-size); + box-shadow: inset 0 1px 0 var(--card-highlight); + transition: + border-color var(--duration-fast) var(--ease-out), + box-shadow var(--duration-fast) var(--ease-out), + background var(--duration-fast) var(--ease-out); +} + +.plugins-search input:hover { + border-color: var(--border-hover); +} + +.plugins-search input:focus-visible { + border-color: var(--ring); + outline: none; + box-shadow: var(--focus-ring); +} + +.plugins-toolbar__actions { + display: flex; + flex: 0 0 auto; + align-items: center; + gap: 8px; +} + +.plugins-refresh { + width: 44px; + height: 44px; + flex: 0 0 auto; +} + +.plugins-refresh span { + width: 16px; + height: 16px; +} + +.plugins-readonly { + display: flex; + align-items: center; + gap: 9px; + margin-top: 12px; + padding: 9px 12px; + border: 1px solid color-mix(in srgb, var(--warn) 28%, var(--border)); + border-radius: var(--radius-md); + background: var(--warn-subtle); + color: var(--warn); + font-size: var(--control-ui-text-sm); + line-height: 1.45; +} + +.plugins-readonly > span:first-child { + width: 16px; + height: 16px; + flex: 0 0 auto; +} + +.plugins-tabs { + display: flex; + align-items: center; + gap: 4px; + margin-top: 18px; + padding-bottom: 10px; + border-bottom: 1px solid var(--border); + overflow-x: auto; + scrollbar-width: none; +} + +.plugins-tabs::-webkit-scrollbar { + display: none; +} + +.plugins-tabs button { + position: relative; + display: inline-flex; + align-items: center; + gap: 7px; + min-height: 36px; + border: 0; + border-radius: var(--radius-md); + padding: 0 13px; + background: transparent; + color: var(--muted); + font-size: var(--control-ui-text-sm); + font-weight: 560; + cursor: pointer; + transition: + color var(--duration-fast) var(--ease-out), + background var(--duration-fast) var(--ease-out); +} + +.plugins-tabs button:hover { + background: var(--bg-hover); + color: var(--text-strong); +} + +.plugins-tabs button.active { + background: var(--accent-subtle); + color: var(--text-strong); +} + +.plugins-tabs button > span { + min-width: 20px; + border-radius: var(--radius-full); + padding: 2px 6px; + background: color-mix(in srgb, currentColor 11%, transparent); + color: inherit; + font-size: var(--control-ui-text-xs); + line-height: 1.2; + text-align: center; +} + +.plugins-panel { + min-height: 280px; + padding-top: 20px; +} + +.plugins-page-notice { + margin-top: 14px; +} + +/* ---------- inventory pulse ---------- */ + +.plugins-pulse { + display: grid; + gap: 10px; + margin-bottom: 18px; +} + +.plugins-pulse__meter { + display: flex; + height: 6px; + gap: 3px; + overflow: hidden; + border-radius: var(--radius-full); +} + +.plugins-pulse__segment { + min-width: 6px; + border-radius: var(--radius-full); + transition: flex-grow var(--duration-slow) var(--ease-out); +} + +.plugins-pulse__segment--enabled { + background: var(--ok); +} + +.plugins-pulse__segment--disabled { + background: var(--border-strong); +} + +.plugins-pulse__segment--issues { + background: var(--danger); +} + +/* ---------- filter chips ---------- */ + +.plugins-filters { + display: flex; + flex-wrap: wrap; + gap: 6px; +} + +.plugins-filters button { + display: inline-flex; + align-items: center; + gap: 6px; + border: 1px solid var(--border); + border-radius: var(--radius-full); + padding: 5px 12px; + background: transparent; + color: var(--muted); + font-size: var(--control-ui-text-xs); + font-weight: 580; + cursor: pointer; + transition: + color var(--duration-fast) var(--ease-out), + background var(--duration-fast) var(--ease-out), + border-color var(--duration-fast) var(--ease-out); +} + +.plugins-filters button:hover { + border-color: var(--border-hover); + color: var(--text-strong); +} + +.plugins-filters button.active { + border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); + background: var(--accent-subtle); + color: var(--text-strong); +} + +.plugins-filters__dot { + width: 7px; + height: 7px; + flex: 0 0 auto; + border-radius: 50%; +} + +.plugins-filters__dot--enabled { + background: var(--ok); +} + +.plugins-filters__dot--disabled { + background: var(--border-strong); +} + +.plugins-filters__dot--issues { + background: var(--danger); +} + +.plugins-filters__count { + color: var(--muted); + font-variant-numeric: tabular-nums; +} + +.plugins-filters button.active .plugins-filters__count { + color: var(--text-strong); +} + +/* ---------- groups / shelves ---------- */ + +.plugins-groups { + display: grid; + gap: 28px; +} + +/* The MCP section renders as a direct panel child after the grouped inventory. */ +.plugins-panel > .plugins-group { + margin-top: 28px; +} + +.plugins-group__heading { + display: flex; + align-items: baseline; + gap: 8px; + margin-bottom: 11px; + padding: 0 2px; +} + +.plugins-group__heading :is(h2, h3) { + margin: 0; + color: var(--text-strong); + font-size: var(--control-ui-text-md); + font-weight: 650; + letter-spacing: -0.01em; +} + +.plugins-group__heading > span { + color: var(--muted); + font-size: var(--control-ui-text-xs); +} + +.plugins-group__actions { + display: inline-flex; + align-items: center; + gap: 10px; + margin-left: auto; +} + +.plugins-group__actions .btn span { + width: 14px; + height: 14px; +} + +.plugins-group__link { + color: var(--muted); + font-size: var(--control-ui-text-xs); + text-decoration: none; +} + +.plugins-group__link:hover { + color: var(--text-strong); + text-decoration: underline; +} + +.plugins-group__link-icon { + display: inline-flex; + width: 11px; + height: 11px; + margin-left: 3px; + vertical-align: -1px; +} + +.plugins-group__hint { + margin: -4px 2px 12px; + color: var(--muted); + font-size: var(--control-ui-text-xs); + line-height: 1.5; +} + +/* ---------- art tiles + covers ---------- */ + +.plugins-tile { + display: grid; + width: 44px; + height: 44px; + flex: 0 0 44px; + place-items: center; + overflow: hidden; + border: 1px solid var(--border); + border-radius: 12px; + background: var(--bg-elevated); + box-shadow: var(--shadow-sm); +} + +.plugins-tile img { + width: 100%; + height: 100%; + object-fit: cover; +} + +.plugins-tile--fallback { + background: linear-gradient(135deg, var(--plugins-art-a), var(--plugins-art-b)); + border-color: transparent; + color: rgb(255 255 255 / 92%); + font-family: var(--mono); + font-size: var(--control-ui-text-sm); + font-weight: 700; + letter-spacing: -0.04em; + text-shadow: 0 1px 2px rgb(0 0 0 / 25%); +} + +.plugins-tile--fallback svg, +.plugins-cover--fallback svg { + width: 21px; + height: 21px; + fill: none; + stroke: currentColor; + stroke-width: 1.6px; + stroke-linecap: round; + stroke-linejoin: round; +} + +.plugins-cover { + display: grid; + width: 100%; + aspect-ratio: 16 / 9; + place-items: center; + overflow: hidden; + border-radius: calc(var(--radius-lg) - 4px); + background: var(--bg-elevated); +} + +.plugins-cover img { + width: 100%; + height: 100%; + object-fit: cover; + transition: transform var(--duration-slow) var(--ease-out); +} + +@media (hover: hover) { + .plugins-card:hover .plugins-cover img { + transform: scale(1.03); + } +} + +.plugins-cover--fallback { + background: linear-gradient(135deg, var(--plugins-art-a), var(--plugins-art-b)); + color: rgb(255 255 255 / 92%); + font-family: var(--mono); + font-size: 22px; + font-weight: 700; + letter-spacing: -0.03em; + text-shadow: 0 1px 3px rgb(0 0 0 / 25%); +} + +/* ---------- store cards ---------- */ + +.plugins-grid { + display: grid; + grid-template-columns: repeat(auto-fill, minmax(min(230px, 100%), 1fr)); + gap: 12px; +} + +.plugins-grid--featured { + grid-template-columns: repeat(auto-fill, minmax(min(264px, 100%), 1fr)); +} + +.plugins-card { + display: flex; + flex-direction: column; + gap: 12px; + min-width: 0; + border: 1px solid var(--border); + border-radius: var(--radius-lg); + padding: 10px 10px 12px; + background: linear-gradient(135deg, var(--card-highlight), transparent 42%), var(--card); + box-shadow: var(--shadow-sm); + transition: + border-color var(--duration-normal) var(--ease-out), + transform var(--duration-normal) var(--ease-out), + box-shadow var(--duration-normal) var(--ease-out); +} + +@media (hover: hover) { + .plugins-card:hover { + border-color: var(--border-strong); + box-shadow: var(--shadow-md); + transform: translateY(-1px); + } +} + +.plugins-card__body { + display: grid; + flex: 1 1 auto; + gap: 4px; + min-width: 0; + padding: 0 4px; +} + +.plugins-card__title-row { + display: flex; + align-items: baseline; + gap: 7px; + min-width: 0; +} + +.plugins-card__title-row :is(h2, h3) { + min-width: 0; + margin: 0; + overflow: hidden; + color: var(--text-strong); + font-size: var(--control-ui-text-md); + font-weight: 650; + letter-spacing: -0.015em; + line-height: 1.35; + text-overflow: ellipsis; + white-space: nowrap; +} + +.plugins-version { + flex: 0 0 auto; + color: var(--muted); + font-family: var(--mono); + font-size: var(--control-ui-text-xs); +} + +.plugins-card__body p { + display: -webkit-box; + margin: 0; + overflow: hidden; + color: var(--muted); + font-size: var(--control-ui-text-sm); + line-height: 1.45; + -webkit-box-orient: vertical; + -webkit-line-clamp: 2; +} + +.plugins-card__meta { + display: flex; + align-items: center; + gap: 6px; + margin-top: 4px; + overflow: hidden; + color: var(--muted); + font-size: var(--control-ui-text-xs); + white-space: nowrap; +} + +.plugins-card__meta > span:not(.plugins-state, .plugins-badge)::before { + content: "·"; + margin-right: 6px; + color: var(--border-hover); +} + +.plugins-card__meta > span:first-child::before { + content: none; +} + +.plugins-card__footer { + display: flex; + align-items: center; + justify-content: flex-end; + padding: 0 4px; +} + +/* ---------- inventory rows ---------- */ + +.plugins-rows { + display: grid; + gap: 8px; + /* Two columns as soon as the panel can fit them; single column below. */ + grid-template-columns: repeat(auto-fill, minmax(min(520px, 100%), 1fr)); +} + +.plugins-row { + display: grid; + grid-template-columns: auto minmax(0, 1fr) auto; + align-items: center; + gap: 12px; + min-width: 0; + border: 1px solid var(--border); + border-radius: var(--radius-lg); + padding: 10px 12px; + background: linear-gradient(135deg, var(--card-highlight), transparent 42%), var(--card); + transition: border-color var(--duration-normal) var(--ease-out); +} + +.plugins-row--clickable, +.plugins-card--clickable { + cursor: pointer; +} + +@media (hover: hover) { + .plugins-row:hover { + border-color: var(--border-strong); + } +} + +.plugins-row--error { + border-color: color-mix(in srgb, var(--danger) 45%, var(--border)); +} + +.plugins-row__copy { + min-width: 0; +} + +.plugins-row__title { + display: flex; + align-items: baseline; + gap: 7px; + min-width: 0; +} + +.plugins-row__title h3 { + min-width: 0; + margin: 0; + overflow: hidden; + color: var(--text-strong); + font-size: var(--control-ui-text-sm); + font-weight: 640; + letter-spacing: -0.01em; + line-height: 1.35; + text-overflow: ellipsis; + white-space: nowrap; +} + +.plugins-row__copy p { + margin: 2px 0 0; + overflow: hidden; + color: var(--muted); + font-size: var(--control-ui-text-xs); + line-height: 1.45; + text-overflow: ellipsis; + white-space: nowrap; +} + +.plugins-row__target { + font-family: var(--mono); +} + +.plugins-row__meta { + display: flex; + align-items: center; + gap: 6px; + margin-top: 4px; + overflow: hidden; + color: var(--muted); + font-size: var(--control-ui-text-xs); + white-space: nowrap; +} + +.plugins-row__meta > span:not(:first-child)::before { + content: "·"; + margin-right: 6px; + color: var(--border-hover); +} + +.plugins-row__package { + overflow: hidden; + font-family: var(--mono); + text-overflow: ellipsis; +} + +.plugins-row__actions { + display: flex; + align-items: center; + gap: 10px; + justify-self: end; +} + +.plugins-remove-confirm { + display: inline-flex; + align-items: center; + gap: 8px; + color: var(--danger); + font-size: var(--control-ui-text-xs); + white-space: nowrap; +} + +.plugins-remove-confirm .btn.danger { + border-color: color-mix(in srgb, var(--danger) 55%, var(--border)); + background: var(--danger-subtle); + color: var(--danger); +} + +/* ---------- badges + state ---------- */ + +.plugins-state, +.plugins-badge { + display: inline-flex; + align-items: center; + gap: 4px; + border-radius: var(--radius-full); + padding: 3px 7px; + background: var(--bg-muted); + color: var(--text-strong); + font-size: var(--control-ui-text-xs); + font-weight: 620; + line-height: 1.1; +} + +.plugins-state--enabled { + background: var(--ok-subtle); + color: var(--ok); +} + +.plugins-state--error { + background: var(--danger-subtle); + color: var(--danger); +} + +.plugins-badge { + background: var(--accent-2-subtle); +} + +.plugins-badge--mcp { + background: var(--accent-subtle); + color: var(--accent); +} + +.plugins-badge--verified { + background: var(--ok-subtle); + color: var(--ok); +} + +.plugins-badge svg { + width: 11px; + height: 11px; +} + +.plugins-downloads { + display: inline-flex; + align-items: center; + gap: 4px; +} + +.plugins-downloads svg { + width: 12px; + height: 12px; +} + +.plugins-install { + min-width: 78px; +} + +.plugins-action-note { + color: var(--muted); + font-size: var(--control-ui-text-xs); +} + +.plugins-action-note--ok { + display: inline-flex; + align-items: center; + gap: 5px; + color: var(--ok); + font-weight: 620; +} + +.plugins-action-note--ok svg { + width: 13px; + height: 13px; +} + +/* ---------- actions menu ---------- */ + +.plugins-actions-menu { + position: relative; + display: inline-flex; +} + +.plugins-kebab { + width: 30px; + height: 30px; + padding: 6px; + color: var(--muted); +} + +.plugins-kebab[aria-expanded="true"] { + background: var(--bg-hover); + color: var(--text-strong); +} + +.plugins-menu { + position: absolute; + top: calc(100% + 4px); + right: 0; + z-index: 30; + display: grid; + min-width: 168px; + gap: 2px; + border: 1px solid var(--border-strong); + border-radius: var(--radius-md); + padding: 4px; + background: var(--popover); + box-shadow: var(--shadow-lg); + animation: scale-in var(--duration-fast) var(--ease-out); +} + +.plugins-menu__item { + display: flex; + align-items: center; + gap: 9px; + min-height: 32px; + border: 0; + border-radius: var(--radius-sm); + padding: 0 10px; + background: transparent; + color: var(--text-strong); + font-size: var(--control-ui-text-sm); + text-align: left; + cursor: pointer; + white-space: nowrap; +} + +.plugins-menu__item:hover:not(:disabled), +.plugins-menu__item:focus-visible { + background: var(--bg-hover); + outline: none; +} + +.plugins-menu__item:disabled { + color: var(--muted); + cursor: not-allowed; + opacity: 0.55; +} + +.plugins-menu__item--danger { + color: var(--danger); +} + +.plugins-menu__item--danger:hover:not(:disabled) { + background: var(--danger-subtle); +} + +.plugins-menu__icon { + display: inline-flex; + width: 14px; + height: 14px; + flex: 0 0 auto; +} + +/* ---------- detail overlay ---------- */ + +.plugins-detail-backdrop { + position: fixed; + inset: 0; + z-index: 60; + display: grid; + place-items: center; + padding: 24px; + background: color-mix(in srgb, var(--bg) 62%, transparent); + backdrop-filter: blur(6px); + animation: fade-in var(--duration-fast) var(--ease-out); +} + +.plugins-detail { + position: relative; + display: flex; + flex-direction: column; + width: min(680px, 100%); + max-height: min(85vh, 860px); + overflow-y: auto; + border: 1px solid var(--border-strong); + border-radius: var(--radius-xl); + background: var(--popover); + box-shadow: var(--shadow-xl); + animation: scale-in var(--duration-normal) var(--ease-out); +} + +.plugins-detail .plugins-cover { + border-radius: 0; + flex: 0 0 auto; +} + +.plugins-detail__close { + position: absolute; + top: 12px; + right: 12px; + z-index: 2; + width: 32px; + height: 32px; + padding: 7px; + background: color-mix(in srgb, var(--bg) 55%, transparent); + backdrop-filter: blur(4px); +} + +.plugins-detail__body { + display: grid; + gap: 14px; + padding: 18px 20px 22px; +} + +.plugins-detail__title { + display: flex; + align-items: baseline; + flex-wrap: wrap; + gap: 9px; +} + +.plugins-detail__title h2 { + margin: 0; + color: var(--text-strong); + font-size: 20px; + font-weight: 680; + letter-spacing: -0.02em; +} + +.plugins-detail__description { + margin: 0; + color: var(--text); + font-size: var(--control-ui-text-sm); + line-height: 1.6; +} + +.plugins-detail__actions { + display: flex; + align-items: center; + flex-wrap: wrap; + gap: 8px; +} + +.plugins-detail__remove { + display: inline-flex; + align-items: center; + gap: 7px; + color: var(--danger); +} + +.plugins-detail__remove span { + width: 14px; + height: 14px; +} + +.plugins-detail__remove:hover:not(:disabled) { + border-color: color-mix(in srgb, var(--danger) 45%, var(--border)); + background: var(--danger-subtle); +} + +.plugins-detail__meta { + display: grid; + gap: 0; + border-top: 1px solid var(--border); +} + +.plugins-detail__meta-row { + display: grid; + grid-template-columns: 130px minmax(0, 1fr); + gap: 12px; + border-bottom: 1px solid var(--border); + padding: 9px 2px; +} + +.plugins-detail__meta-label { + color: var(--muted); + font-size: var(--control-ui-text-sm); +} + +.plugins-detail__meta-value { + min-width: 0; + overflow: hidden; + color: var(--text-strong); + font-size: var(--control-ui-text-sm); + text-overflow: ellipsis; +} + +.plugins-detail__meta-value code { + font-family: var(--mono); + font-size: var(--control-ui-text-xs); +} + +/* ---------- MCP form ---------- */ + +.plugins-mcp-form { + display: grid; + grid-template-columns: minmax(140px, 220px) minmax(0, 1fr) auto; + gap: 10px; + align-items: end; + margin-bottom: 12px; + border: 1px solid var(--border); + border-radius: var(--radius-lg); + padding: 12px; + background: var(--bg-elevated); +} + +.plugins-mcp-form label { + display: grid; + gap: 5px; + min-width: 0; +} + +.plugins-mcp-form label span { + color: var(--muted); + font-size: var(--control-ui-text-xs); + font-weight: 580; +} + +.plugins-mcp-form input { + min-width: 0; + height: 36px; + border: 1px solid var(--border-strong); + border-radius: var(--radius-md); + padding: 0 10px; + background: var(--card); + color: var(--text-strong); + font-size: var(--control-ui-text-sm); +} + +.plugins-mcp-form input:focus-visible { + border-color: var(--ring); + outline: none; + box-shadow: var(--focus-ring); +} + +.plugins-mcp-form__actions { + display: flex; + gap: 8px; +} + +.plugins-mcp-empty { + border: 1px dashed var(--border); + border-radius: var(--radius-lg); + padding: 18px; + color: var(--muted); + font-size: var(--control-ui-text-sm); + text-align: center; +} + +/* ---------- messages / empty / errors ---------- */ + +.plugins-row-message { + grid-column: 1 / -1; + display: flex; + align-items: center; + justify-content: space-between; + gap: 12px; + border-radius: var(--radius-md); + padding: 8px 10px; + background: var(--ok-subtle); + color: var(--ok); + font-size: var(--control-ui-text-xs); + line-height: 1.45; + white-space: pre-wrap; +} + +.plugins-row-message--error { + background: var(--danger-subtle); + color: var(--danger); +} + +.plugins-row-message .btn { + flex: 0 0 auto; + color: var(--text-strong); +} + +.plugins-empty, +.plugins-search-state { + display: grid; + min-height: 260px; + place-items: center; + align-content: center; + padding: 32px; + color: var(--muted); + text-align: center; +} + +.plugins-empty__icon { + width: 32px; + height: 32px; + margin-bottom: 12px; + color: var(--border-hover); +} + +.plugins-empty h2 { + margin: 0; + color: var(--text-strong); + font-size: var(--control-ui-text-lg); + font-weight: 620; +} + +.plugins-empty p { + max-width: 420px; + margin: 6px 0 0; + font-size: var(--control-ui-text-sm); + line-height: 1.55; +} + +.plugins-search-state { + font-size: var(--control-ui-text-sm); +} + +.plugins-search-state--error { + color: var(--danger); +} + +.plugins-page-error { + display: flex; + align-items: center; + justify-content: space-between; + gap: 12px; + margin-top: 14px; + border: 1px solid color-mix(in srgb, var(--danger) 32%, var(--border)); + border-radius: var(--radius-md); + padding: 10px 12px; + background: var(--danger-subtle); + color: var(--danger); + font-size: var(--control-ui-text-sm); +} + +/* ---------- responsive ---------- */ + +@media (max-width: 768px) { + .plugins-content-header { + display: flex; + } + + .plugins-workspace { + padding: 2px 0 40px; + } + + .plugins-toolbar { + align-items: stretch; + flex-direction: column; + } + + .plugins-search { + flex-basis: auto; + min-width: 0; + } + + .plugins-toolbar__actions { + justify-content: space-between; + } + + .plugins-mcp-form { + grid-template-columns: minmax(0, 1fr); + align-items: stretch; + } +} + +@media (max-width: 560px) { + .plugins-detail-backdrop { + padding: 10px; + } + + .plugins-row { + grid-template-columns: auto minmax(0, 1fr); + } + + .plugins-row__actions { + grid-column: 1 / -1; + justify-content: space-between; + justify-self: stretch; + width: 100%; + } + + .plugins-remove-confirm { + flex-wrap: wrap; + white-space: normal; + } + + .plugins-row-message { + align-items: stretch; + flex-direction: column; + } + + .plugins-row-message .btn { + width: 100%; + min-height: 40px; + } + + .plugins-card__footer .plugins-install { + width: 100%; + min-height: 40px; + } +} + +/* ---------- connector use-case subgroups ---------- */ + +.plugins-subgroup { + margin-top: 6px; +} + +.plugins-subgroup + .plugins-subgroup { + margin-top: 18px; +} + +.plugins-subgroup__heading { + margin: 0 2px 9px; + color: var(--muted-strong); + font-size: var(--control-ui-text-sm); + font-weight: 620; + letter-spacing: -0.005em; +}